-
Notifications
You must be signed in to change notification settings - Fork 0
/
context.json
4655 lines (4655 loc) · 422 KB
/
context.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"@context":
{
"": "https://w3id.org/emmo/domain/battery/battery-inferred#",
"brick": "https://brickschema.org/schema/Brick#",
"csvw": "http://www.w3.org/ns/csvw#",
"dc": "http://purl.org/dc/elements/1.1/",
"dcam": "http://purl.org/dc/dcam/",
"dcat": "http://www.w3.org/ns/dcat#",
"dcmitype": "http://purl.org/dc/dcmitype/",
"dcterms": "http://purl.org/dc/terms/",
"doap": "http://usefulinc.com/ns/doap#",
"foaf": "http://xmlns.com/foaf/0.1/",
"geo": "http://www.opengis.net/ont/geosparql#",
"odrl": "http://www.w3.org/ns/odrl/2/",
"org": "http://www.w3.org/ns/org#",
"owl": "http://www.w3.org/2002/07/owl#",
"prof": "http://www.w3.org/ns/dx/prof/",
"prov": "http://www.w3.org/ns/prov#",
"qb": "http://purl.org/linked-data/cube#",
"rdf": "http://www.w3.org/1999/02/22-rdf-syntax-ns#",
"rdfs": "http://www.w3.org/2000/01/rdf-schema#",
"schema": "https://schema.org/",
"sh": "http://www.w3.org/ns/shacl#",
"skos": "http://www.w3.org/2004/02/skos/core#",
"sosa": "http://www.w3.org/ns/sosa/",
"ssn": "http://www.w3.org/ns/ssn/",
"time": "http://www.w3.org/2006/time#",
"vann": "http://purl.org/vocab/vann/",
"void": "http://rdfs.org/ns/void#",
"wgs": "https://www.w3.org/2003/01/geo/wgs84_pos#",
"xml": "http://www.w3.org/XML/1998/namespace",
"xsd": "http://www.w3.org/2001/XMLSchema#",
"EMMORelation": {
"@id": "https://w3id.org/emmo#EMMO_ec2472ae_cf4a_46a5_8555_1556f5a6c3c5",
"@type": "@id"
},
"causal": {
"@id": "https://w3id.org/emmo#EMMO_ad0e72fc_dcaa_490d_8371_b4d814dcda2c",
"@type": "@id"
},
"characterisationProcedureHasSubProcedure": {
"@id": "https://w3id.org/emmo/domain/chameo#characterisationProcedureHasSubProcedure",
"@type": "@id"
},
"contacts": {
"@id": "https://w3id.org/emmo#EMMO_8785be5a_2493_4b12_8f39_31907ab11748",
"@type": "@id"
},
"equalsTo": {
"@id": "https://w3id.org/emmo#EMMO_6835537c_d294_4005_a770_ec9621f29ed1",
"@type": "@id"
},
"hasAccessConditions": {
"@id": "https://w3id.org/emmo/domain/chameo#hasAccessConditions",
"@type": "@id"
},
"hasActiveMaterial": {
"@id": "https://w3id.org/emmo/domain/electrochemistry#electrochemistry_860aa941_5ff9_4452_8a16_7856fad07bee",
"@type": "@id"
},
"hasAgent": {
"@id": "https://w3id.org/emmo#EMMO_cd24eb82_a11c_4a31_96ea_32f870c5580a",
"@type": "@id"
},
"hasAnolyte": {
"@id": "https://w3id.org/emmo/domain/electrochemistry#electrochemistry_0ac306fd_e98b_4af9_8cd6_5ed34f7f7d8a",
"@type": "@id"
},
"hasBeginTask": {
"@id": "https://w3id.org/emmo#EMMO_4ab7fb52_cec3_4c00_90c0_5648f01e3296",
"@type": "@id"
},
"hasBeginTile": {
"@id": "https://w3id.org/emmo#EMMO_fe63194f_7c04_4dbd_a244_524b38b6699b",
"@type": "@id"
},
"hasBehaviour": {
"@id": "https://w3id.org/emmo#EMMO_ebc8c324_8e7a_4b09_bcb5_306e0c461d24",
"@type": "@id"
},
"hasCase": {
"@id": "https://w3id.org/emmo/domain/electrochemistry#electrochemistry_3dcfe33d_6825_43c0_a798_68e871a68d39",
"@type": "@id"
},
"hasCatholyte": {
"@id": "https://w3id.org/emmo/domain/electrochemistry#electrochemistry_b62a6b15_236a_48bf_a323_ccbfc295f934",
"@type": "@id"
},
"hasCharacterisationEnvironment": {
"@id": "https://w3id.org/emmo/domain/chameo#hasCharacterisationEnvironment",
"@type": "@id"
},
"hasCharacterisationEnvironmentProperty": {
"@id": "https://w3id.org/emmo/domain/chameo#hasCharacterisationEnvironmentProperty",
"@type": "@id"
},
"hasCharacterisationProcedureValidation": {
"@id": "https://w3id.org/emmo/domain/chameo#hasCharacterisationProcedureValidation",
"@type": "@id"
},
"hasCharacterisationProperty": {
"@id": "https://w3id.org/emmo/domain/chameo#hasCharacterisationProperty",
"@type": "@id"
},
"hasCharacterisationSoftware": {
"@id": "https://w3id.org/emmo/domain/chameo#hasCharacterisationSoftware",
"@type": "@id"
},
"hasCharacterised": {
"@id": "https://w3id.org/emmo#EMMO_d271f202_4c1a_4d74_b86a_387c82034eb7",
"@type": "@id"
},
"hasCharacteriser": {
"@id": "https://w3id.org/emmo#EMMO_eeb8118c_b290_4f57_b0f8_bd65bb6d77ad",
"@type": "@id"
},
"hasChemicalSymbol": {
"@id": "https://w3id.org/emmo#EMMO_79c0edfa_06f9_5149_b754_28c589035b8a",
"@type": "@id"
},
"hasCoating": {
"@id": "https://w3id.org/emmo/domain/electrochemistry#electrochemistry_4df9926d_d4f2_4955_93f3_a03c5edc5383",
"@type": "@id"
},
"hasCognised": {
"@id": "https://w3id.org/emmo#EMMO_51e72e5c_ab21_4d0e_ad9f_b168eca89cf4",
"@type": "@id"
},
"hasCogniser": {
"@id": "https://w3id.org/emmo#EMMO_5369d256_5866_4729_adc2_1498ee9a4959",
"@type": "@id"
},
"hasCollaborationWith": {
"@id": "https://w3id.org/emmo#EMMO_dbe39465_6cf4_4592_b0c5_b7446789a37b",
"@type": "@id"
},
"hasComponent": {
"@id": "https://w3id.org/emmo#EMMO_3c7f239f_e833_4a2b_98a1_c88831770c1b",
"@type": "@id"
},
"hasConnectedPortion": {
"@id": "https://w3id.org/emmo#EMMO_a32021dc_58d8_454b_915d_3951b413b8b7",
"@type": "@id"
},
"hasConstituent": {
"@id": "https://w3id.org/emmo#EMMO_dba27ca1_33c9_4443_a912_1519ce4c39ec",
"@type": "@id"
},
"hasConstitutiveProcess": {
"@id": "https://w3id.org/emmo#EMMO_e3850f08_8e79_454b_9d83_c517cab42857",
"@type": "@id"
},
"hasConvention": {
"@id": "https://w3id.org/emmo#EMMO_eb3518bf_f799_4f9e_8c3e_ce59af11453b",
"@type": "@id"
},
"hasConventionalProperty": {
"@id": "https://w3id.org/emmo#EMMO_16b510a6_0584_4134_bdb6_3bc185c17860",
"@type": "@id"
},
"hasCurrentCollector": {
"@id": "https://w3id.org/emmo/domain/electrochemistry#electrochemistry_cc8c2c5d_cf3d_444d_a7e8_44ec4c06a88e",
"@type": "@id"
},
"hasDataAcquisitionRate": {
"@id": "https://w3id.org/emmo/domain/chameo#hasDataAcquisitionRate",
"@type": "@id"
},
"hasDataProcessingThroughCalibration": {
"@id": "https://w3id.org/emmo/domain/chameo#hasDataProcessingThroughCalibration",
"@type": "@id"
},
"hasDataQuality": {
"@id": "https://w3id.org/emmo/domain/chameo#hasDataQuality",
"@type": "@id"
},
"hasDataset": {
"@id": "https://w3id.org/emmo/domain/chameo#hasDataset",
"@type": "@id"
},
"hasDatum": {
"@id": "https://w3id.org/emmo#EMMO_b19aacfc_5f73_4c33_9456_469c1e89a53e",
"@type": "@id"
},
"hasDeclared": {
"@id": "https://w3id.org/emmo#EMMO_0d829933_29e3_4e61_b3d3_88e6b9d0d0ce",
"@type": "@id"
},
"hasDeclarer": {
"@id": "https://w3id.org/emmo#EMMO_cc823237_398d_4c9a_b8fa_aa157ee3e3a5",
"@type": "@id"
},
"hasDeduced": {
"@id": "https://w3id.org/emmo#EMMO_a0a2ded8_54e8_408d_a6b0_7fd1b4d7d16d",
"@type": "@id"
},
"hasDeducer": {
"@id": "https://w3id.org/emmo#EMMO_057d0573_6ac0_4c27_9e3f_3c29205fd104",
"@type": "@id"
},
"hasDescription": {
"@id": "https://w3id.org/emmo#EMMO_c58c799e_cc6c_4310_a3f1_78da70705b2a",
"@type": "@id"
},
"hasDirectPart": {
"@id": "https://w3id.org/emmo#EMMO_74a75cf1_3418_4244_b43c_b5db94635d42",
"@type": "@id"
},
"hasElectrode": {
"@id": "https://w3id.org/emmo/domain/electrochemistry#electrochemistry_578c41e9_ee01_4840_9c8c_04ab6e4e6241",
"@type": "@id"
},
"hasElectrolyte": {
"@id": "https://w3id.org/emmo/domain/electrochemistry#electrochemistry_3bd08946_4e81_455d_9fca_dc7a5ead9315",
"@type": "@id"
},
"hasEndTask": {
"@id": "https://w3id.org/emmo#EMMO_92227f7f_22e9_4b19_a011_920eac3c7b75",
"@type": "@id"
},
"hasEndTile": {
"@id": "https://w3id.org/emmo#EMMO_c0f48dc6_4a32_4d9a_a956_d68415954a8e",
"@type": "@id"
},
"hasFormFactor": {
"@id": "https://w3id.org/emmo/domain/electrochemistry#electrochemistry_c17b514b_57f2_4f72_9b95_c2950dd2aa7f",
"@type": "@id"
},
"hasFractionalCollection": {
"@id": "https://w3id.org/emmo#EMMO_e1805abe_f5b7_4c40_810a_1a01950546be",
"@type": "@id"
},
"hasFractionalMember": {
"@id": "https://w3id.org/emmo#EMMO_0558e802_46a4_45de_af85_47aff4dc427e",
"@type": "@id"
},
"hasGatheredPart": {
"@id": "https://w3id.org/emmo#EMMO_c37d451b_e245_439f_bd94_9050e04ec9f7",
"@type": "@id"
},
"hasHardwareSpecification": {
"@id": "https://w3id.org/emmo/domain/chameo#hasHardwareSpecification",
"@type": "@id"
},
"hasHazard": {
"@id": "https://w3id.org/emmo/domain/chameo#hasHazard",
"@type": "@id"
},
"hasHeterogeneousPart": {
"@id": "https://w3id.org/emmo#EMMO_0eb37d3d_b633_4ea4_a863_8b7a27c6fdb4",
"@type": "@id"
},
"hasHolder": {
"@id": "https://w3id.org/emmo/domain/chameo#hasHolder",
"@type": "@id"
},
"hasHolisticNonTemporalPart": {
"@id": "https://w3id.org/emmo#EMMO_5ceab41b_2aea_4041_9e9c_a243f7562cee",
"@type": "@id"
},
"hasHolisticOverlap": {
"@id": "https://w3id.org/emmo#EMMO_53e5b1e1_6026_4ddc_8a4a_3aaaa5fdbdb7",
"@type": "@id"
},
"hasHolisticPart": {
"@id": "https://w3id.org/emmo#EMMO_8e52c42b_e879_4473_9fa1_4b23428b392b",
"@type": "@id"
},
"hasHolisticRelation": {
"@id": "https://w3id.org/emmo#EMMO_646cdc47_f955_4da3_9398_9aac0edf48a6",
"@type": "@id"
},
"hasHolisticTemporalPart": {
"@id": "https://w3id.org/emmo#EMMO_9ee42d6b_7242_4a8d_967e_79f8f1c7fe29",
"@type": "@id"
},
"hasIcon": {
"@id": "https://w3id.org/emmo#EMMO_39c3815d_8cae_4c8f_b2ff_eeba24bec455",
"@type": "@id"
},
"hasIndex": {
"@id": "https://w3id.org/emmo#EMMO_297999d6_c9e4_4262_9536_bd524d1c6e21",
"@type": "@id"
},
"hasInput": {
"@id": "https://w3id.org/emmo#EMMO_36e69413_8c59_4799_946c_10b05d266e22",
"@type": "@id"
},
"hasInteractionVolume": {
"@id": "https://w3id.org/emmo/domain/chameo#hasInteractionVolume",
"@type": "@id"
},
"hasInteractionWithProbe": {
"@id": "https://w3id.org/emmo/domain/chameo#hasInteractionWithProbe",
"@type": "@id"
},
"hasInteractionWithSample": {
"@id": "https://w3id.org/emmo/domain/chameo#hasInteractionWithSample",
"@type": "@id"
},
"hasInterpretant": {
"@id": "https://w3id.org/emmo#EMMO_7fb7fe7e_bdf9_4eeb_adad_e384dd5285c6",
"@type": "@id"
},
"hasInterpreter": {
"@id": "https://w3id.org/emmo#EMMO_4832e353_6a2d_4deb_9a5b_96989afaff2d",
"@type": "@id"
},
"hasInterval": {
"@id": "https://w3id.org/emmo#EMMO_2eb10b5b_900b_44d7_af85_4de9a3729474",
"@type": "@id"
},
"hasItemPart": {
"@id": "https://w3id.org/emmo#EMMO_8e742d6f_7fbb_40cf_949b_6806ab0d801f",
"@type": "@id"
},
"hasJunctionPart": {
"@id": "https://w3id.org/emmo#EMMO_408a46b2_3930_46da_b936_e9ce72ffdde9",
"@type": "@id"
},
"hasJunctionTile": {
"@id": "https://w3id.org/emmo#EMMO_663859e5_add3_4c9e_96fb_c99399de278d",
"@type": "@id"
},
"hasLab": {
"@id": "https://w3id.org/emmo/domain/chameo#hasLab",
"@type": "@id"
},
"hasLevelOfAutomation": {
"@id": "https://w3id.org/emmo/domain/chameo#hasLevelOfAutomation",
"@type": "@id"
},
"hasManufacturedOutput": {
"@id": "https://w3id.org/emmo#EMMO_0e86a108_9d4d_4582_8126_f0c527d81901",
"@type": "@id"
},
"hasMaximalCollection": {
"@id": "https://w3id.org/emmo#EMMO_0528e41d_edd2_49f9_bd2a_aeabdc215515",
"@type": "@id"
},
"hasMaximalPart": {
"@id": "https://w3id.org/emmo#EMMO_33fd15ab_7662_4cc6_8bf6_988422efc631",
"@type": "@id"
},
"hasMeasuredProperty": {
"@id": "https://w3id.org/emmo#EMMO_fd689787_31b0_41cf_bf03_0d69af76469d",
"@type": "@id"
},
"hasMeasurementDetector": {
"@id": "https://w3id.org/emmo/domain/chameo#hasMeasurementDetector",
"@type": "@id"
},
"hasMeasurementParameter": {
"@id": "https://w3id.org/emmo/domain/chameo#hasMeasurementParameter",
"@type": "@id"
},
"hasMeasurementProbe": {
"@id": "https://w3id.org/emmo/domain/chameo#hasMeasurementProbe",
"@type": "@id"
},
"hasMeasurementSample": {
"@id": "https://w3id.org/emmo/domain/chameo#hasMeasurementSample",
"@type": "@id"
},
"hasMeasurementTime": {
"@id": "https://w3id.org/emmo/domain/chameo#hasMeasurementTime",
"@type": "@id"
},
"hasMeasurementUnit": {
"@id": "https://w3id.org/emmo#EMMO_bed1d005_b04e_4a90_94cf_02bc678a8569",
"@type": "@id"
},
"hasMember": {
"@id": "https://w3id.org/emmo#EMMO_6b7276a4_4b9d_440a_b577_0277539c0fc4",
"@type": "@id"
},
"hasMetricPrefix": {
"@id": "https://w3id.org/emmo#EMMO_4be0acad_af05_426f_aa6d_fe7531072564",
"@type": "@id"
},
"hasMetrologicalReference": {
"@id": "https://w3id.org/emmo#EMMO_67fc0a36_8dcb_4ffa_9a43_31074efa3296",
"@type": "@id"
},
"hasMetrologicalUncertainty": {
"@id": "https://w3id.org/emmo#EMMO_662c64e7_fc72_49b3_a161_f50fd42deafa",
"@type": "@id"
},
"hasModel": {
"@id": "https://w3id.org/emmo#EMMO_24c71baf_6db6_48b9_86c8_8c70cf36db0c",
"@type": "@id"
},
"hasModelledProperty": {
"@id": "https://w3id.org/emmo#EMMO_b8f79e53_2ad4_441d_87ff_284a5c419e46",
"@type": "@id"
},
"hasNegativeElectrode": {
"@id": "https://w3id.org/emmo/domain/electrochemistry#electrochemistry_5d299271_3f68_494f_ab96_3db9acdd3138",
"@type": "@id"
},
"hasNext": {
"@id": "https://w3id.org/emmo#EMMO_499e24a5_5072_4c83_8625_fe3f96ae4a8d",
"@type": "@id"
},
"hasNonMaximalPart": {
"@id": "https://w3id.org/emmo#EMMO_76413949_896c_4363_a955_de4722c6e149",
"@type": "@id"
},
"hasNonTemporalPart": {
"@id": "https://w3id.org/emmo#EMMO_9a50a0ae_841a_46fe_8b23_3df319b60611",
"@type": "@id"
},
"hasNumericalPart": {
"@id": "https://w3id.org/emmo#EMMO_8ef3cd6d_ae58_4a8d_9fc0_ad8f49015cd0",
"@type": "@id"
},
"hasObjectiveProperty": {
"@id": "https://w3id.org/emmo#EMMO_0aa934ee_1ad4_4345_8a7f_bc73ec67c7e5",
"@type": "@id"
},
"hasOperator": {
"@id": "https://w3id.org/emmo/domain/chameo#hasOperator",
"@type": "@id"
},
"hasOutcome": {
"@id": "https://w3id.org/emmo#EMMO_0b1502e2_d12f_4ff3_83b1_eeedf9382954",
"@type": "@id"
},
"hasOutput": {
"@id": "https://w3id.org/emmo#EMMO_c4bace1d_4db0_4cd3_87e9_18122bae2840",
"@type": "@id"
},
"hasPart": {
"@id": "https://w3id.org/emmo#EMMO_17e27c22_37e1_468c_9dd7_95e137f73e7f",
"@type": "@id"
},
"hasParticipant": {
"@id": "https://w3id.org/emmo#EMMO_ae2d1a96_bfa1_409a_a7d2_03d69e8a125a",
"@type": "@id"
},
"hasPeerReviewedArticle": {
"@id": "https://w3id.org/emmo/domain/chameo#hasPeerReviewedArticle",
"@type": "@id"
},
"hasPhysicsOfInteraction": {
"@id": "https://w3id.org/emmo/domain/chameo#hasPhysicsOfInteraction",
"@type": "@id"
},
"hasPortion": {
"@id": "https://w3id.org/emmo#EMMO_b1daa610_64c6_4935_94b8_a19db586a2f6",
"@type": "@id"
},
"hasPortionPart": {
"@id": "https://w3id.org/emmo#EMMO_55354438_7000_4284_b1b9_59d60c2261b9",
"@type": "@id"
},
"hasPositiveElectrode": {
"@id": "https://w3id.org/emmo/domain/electrochemistry#electrochemistry_8e9cf965_9f92_46e8_b678_b50410ce3616",
"@type": "@id"
},
"hasPostProcessingModel": {
"@id": "https://w3id.org/emmo/domain/chameo#hasPostProcessingModel",
"@type": "@id"
},
"hasProcessingReproducibility": {
"@id": "https://w3id.org/emmo/domain/chameo#hasProcessingReproducibility",
"@type": "@id"
},
"hasProductOutput": {
"@id": "https://w3id.org/emmo#EMMO_0ee9e6a2_9240_4b1d_ac9a_f72416c7dc70",
"@type": "@id"
},
"hasProperPart": {
"@id": "https://w3id.org/emmo#EMMO_9380ab64_0363_4804_b13f_3a8a94119a76",
"@type": "@id"
},
"hasProperty": {
"@id": "https://w3id.org/emmo#EMMO_e1097637_70d2_4895_973f_2396f04fa204",
"@type": "@id"
},
"hasQuantity": {
"@id": "https://w3id.org/emmo#EMMO_5d73661e_e710_4844_ab9b_a85b7e68576a",
"@type": "@id"
},
"hasRedundantPart": {
"@id": "https://w3id.org/emmo#EMMO_6786b336_e982_4759_8dee_1905a4106591",
"@type": "@id"
},
"hasReferenceElectrode": {
"@id": "https://w3id.org/emmo/domain/electrochemistry#electrochemistry_5eb197ea_0c3e_4ea2_8392_81152ee91515",
"@type": "@id"
},
"hasReferencePart": {
"@id": "https://w3id.org/emmo#EMMO_eeb06032_dd4f_476e_9da6_aa24302b7588",
"@type": "@id"
},
"hasReferent": {
"@id": "https://w3id.org/emmo#EMMO_f2fc1ce9_cc3b_4eb5_a112_3c85d1b1374a",
"@type": "@id"
},
"hasResourceIdentifier": {
"@id": "https://w3id.org/emmo#EMMO_a592c856_4103_43cf_8635_1982a1e5d5de",
"@type": "@id"
},
"hasSampleBeforeSamplePreparation": {
"@id": "https://w3id.org/emmo/domain/chameo#hasSampleBeforeSamplePreparation",
"@type": "@id"
},
"hasSamplePreparationHardware": {
"@id": "https://w3id.org/emmo/domain/chameo#hasSamplePreparationHardware",
"@type": "@id"
},
"hasSamplePreparationInput": {
"@id": "https://w3id.org/emmo/domain/chameo#hasSamplePreparationInput",
"@type": "@id"
},
"hasSamplePreparationOutput": {
"@id": "https://w3id.org/emmo/domain/chameo#hasSamplePreparationOutput",
"@type": "@id"
},
"hasSamplePreparationParameter": {
"@id": "https://w3id.org/emmo/domain/chameo#hasSamplePreparationParameter",
"@type": "@id"
},
"hasSampledSample": {
"@id": "https://w3id.org/emmo/domain/chameo#hasSampledSample",
"@type": "@id"
},
"hasScatteredPart": {
"@id": "https://w3id.org/emmo#EMMO_cc0df52b_6211_4167_9e22_5cc3ba201bd9",
"@type": "@id"
},
"hasScatteredPortion": {
"@id": "https://w3id.org/emmo#EMMO_5fa16188_d95b_4dd2_ac63_eae63fe01504",
"@type": "@id"
},
"hasServiceOutput": {
"@id": "https://w3id.org/emmo#EMMO_44d5f29a_6a9b_4f5d_9405_20ca553cd4d3",
"@type": "@id"
},
"hasSign": {
"@id": "https://w3id.org/emmo#EMMO_60577dea_9019_4537_ac41_80b0fb563d41",
"@type": "@id"
},
"hasSpatialPart": {
"@id": "https://w3id.org/emmo#EMMO_dc57d998_23db_4d8e_b2cd_f346b195b846",
"@type": "@id"
},
"hasSpatialSection": {
"@id": "https://w3id.org/emmo#EMMO_6e046dd0_9634_4013_b2b1_9cc468087c83",
"@type": "@id"
},
"hasSpatialSlice": {
"@id": "https://w3id.org/emmo#EMMO_f68030be_94b8_4c61_a161_886468558054",
"@type": "@id"
},
"hasSpatialTile": {
"@id": "https://w3id.org/emmo#EMMO_b2282816_b7a3_44c6_b2cb_3feff1ceb7fe",
"@type": "@id"
},
"hasSpatioTemporalTile": {
"@id": "https://w3id.org/emmo#EMMO_7efab93d_c8fe_49c7_ba8e_d21d13b38c85",
"@type": "@id"
},
"hasStage": {
"@id": "https://w3id.org/emmo#EMMO_f22abf74_4538_4f50_ab85_09908cdda707",
"@type": "@id"
},
"hasStatus": {
"@id": "https://w3id.org/emmo#EMMO_1440d010_e4c5_4597_8858_1d58cb1fb28f",
"@type": "@id"
},
"hasSubCollection": {
"@id": "https://w3id.org/emmo#EMMO_49e17ba8_dd17_4c28_b8c8_c8c5d5a9aab9",
"@type": "@id"
},
"hasSubItem": {
"@id": "https://w3id.org/emmo#EMMO_3bd4339b_e01f_43e5_a011_74a4ef3ffa90",
"@type": "@id"
},
"hasSubObject": {
"@id": "https://w3id.org/emmo#EMMO_7329967c_3972_4c99_b478_84f66436620d",
"@type": "@id"
},
"hasSubProcess": {
"@id": "https://w3id.org/emmo#EMMO_d43af210_f854_4432_a891_ce3022e3b558",
"@type": "@id"
},
"hasTask": {
"@id": "https://w3id.org/emmo#EMMO_70da982d_1810_4b01_9630_a28e216ecd9a",
"@type": "@id"
},
"hasTemporalCollectionSlice": {
"@id": "https://w3id.org/emmo#EMMO_850b976f_0726_4408_b1b2_1f0ae367faf6",
"@type": "@id"
},
"hasTemporalItemSlice": {
"@id": "https://w3id.org/emmo#EMMO_5022e4cb_125f_429d_8556_c3e635c561f2",
"@type": "@id"
},
"hasTemporalPart": {
"@id": "https://w3id.org/emmo#EMMO_7afbed84_7593_4a23_bd88_9d9c6b04e8f6",
"@type": "@id"
},
"hasTemporalSection": {
"@id": "https://w3id.org/emmo#EMMO_aef8af39_0a22_4be8_a523_4e47ca36e035",
"@type": "@id"
},
"hasTemporalSlice": {
"@id": "https://w3id.org/emmo#EMMO_2a33ee61_8235_4da4_b9a1_ca62cb87a016",
"@type": "@id"
},
"hasTemporalTile": {
"@id": "https://w3id.org/emmo#EMMO_65a2c5b8_e4d8_4a51_b2f8_e55effc0547d",
"@type": "@id"
},
"hasTemporaryParticipant": {
"@id": "https://w3id.org/emmo#EMMO_35c29eb6_f57e_48d8_85af_854f9e926e77",
"@type": "@id"
},
"hasUnitNonPrefixPart": {
"@id": "https://w3id.org/emmo#EMMO_78c79b48_4b76_4cbe_812f_b32dbb04fd44",
"@type": "@id"
},
"hasUnitSymbol": {
"@id": "https://w3id.org/emmo#EMMO_d4e0a0ab_2f67_4f87_a0db_b544e6dceed4",
"@type": "@id"
},
"hasVariable": {
"@id": "https://w3id.org/emmo#EMMO_3446e167_c576_49d6_846c_215bb8878a55",
"@type": "@id"
},
"isCauseOf": {
"@id": "https://w3id.org/emmo#EMMO_d67ee67e_4fac_4676_82c9_aec361dba698",
"@type": "@id"
},
"isConcomitantWith": {
"@id": "https://w3id.org/emmo#EMMO_d01b3ee2_91a5_4ce2_95cd_f0d2c333c6d3",
"@type": "@id"
},
"isDirectCauseOf": {
"@id": "https://w3id.org/emmo#EMMO_555d0261_da5e_4301_b7f9_46f604a32e91",
"@type": "@id"
},
"isGatheredPartOf": {
"@id": "https://w3id.org/emmo#EMMO_176e3f78_c867_4eca_9794_a4822660d9dc",
"@type": "@id"
},
"isIndirectCauseOf": {
"@id": "https://w3id.org/emmo#EMMO_b85e4738_500c_4e1b_bbe8_9e84190485d6",
"@type": "@id"
},
"isNotCauseOf": {
"@id": "https://w3id.org/emmo#EMMO_01e5766d_dac3_4574_8a78_310de92a5c9d",
"@type": "@id"
},
"isOvercrossedBy": {
"@id": "https://w3id.org/emmo#EMMO_e4f66254_7312_4de5_a86a_6e0808baaaab",
"@type": "@id"
},
"isPartOf": {
"@id": "https://w3id.org/emmo#EMMO_a8bd7094_6b40_47af_b1f4_a69d81a3afbd",
"@type": "@id"
},
"isPortionPartOf": {
"@id": "https://w3id.org/emmo#EMMO_bb6febfa_5c6b_43c9_941a_4b6157b703be",
"@type": "@id"
},
"isPredecessorOf": {
"@id": "https://w3id.org/emmo#EMMO_3733bd38_ca2b_4264_a92a_3075a1715598",
"@type": "@id"
},
"isProperPartOf": {
"@id": "https://w3id.org/emmo#EMMO_559ab98c_1c7d_4794_996c_8c1d8d56381c",
"@type": "@id"
},
"isSpatiallyRelatedWith": {
"@id": "https://w3id.org/emmo#EMMO_54d0d0f4_d9fa_4179_a9b5_4110c49dafff",
"@type": "@id"
},
"isTemporallyBefore": {
"@id": "https://w3id.org/emmo#EMMO_ebc9e62c_5dc4_44db_9060_7923740bdf78",
"@type": "@id"
},
"mereological": {
"@id": "https://w3id.org/emmo#EMMO_3f2e4ac2_8ef3_4a14_b826_60d37f15f8ee",
"@type": "@id"
},
"notOverlaps": {
"@id": "https://w3id.org/emmo#EMMO_aa987900_caf1_4ce2_82fa_6b1d6fbd2ead",
"@type": "@id"
},
"overcrosses": {
"@id": "https://w3id.org/emmo#EMMO_9cb984ca_48ad_4864_b09e_50d3fff19420",
"@type": "@id"
},
"overlaps": {
"@id": "https://w3id.org/emmo#EMMO_d893d373_b579_4867_841e_1c2b31a8d2c6",
"@type": "@id"
},
"properOverlaps": {
"@id": "https://w3id.org/emmo#EMMO_b3c8ba10_6bee_45e7_9416_e9019aa9f023",
"@type": "@id"
},
"requiresLevelOfExpertise": {
"@id": "https://w3id.org/emmo/domain/chameo#requiresLevelOfExpertise",
"@type": "@id"
},
"semiotical": {
"@id": "https://w3id.org/emmo#EMMO_2337e25c_3c60_43fc_a8f9_b11a3f974291",
"@type": "@id"
},
"3DPrinting": "https://w3id.org/emmo#EMMO_253e1d54_69af_4931_90d0_5ccfd7e690ad",
"ACVoltammetry": "ACVoltammetry",
"ACVoltammetrySignal": "https://w3id.org/emmo/domain/electrochemistry#electrochemistry_58a20764_c339_4856_983a_05092b5282e8",
"Ablation": "https://w3id.org/emmo#EMMO_1a2cbca8_3d3b_4e2c_9a71_e39273937786",
"AbrasiveStrippingVoltammetry": "AbrasiveStrippingVoltammetry",
"AbsoluteActivity": "https://w3id.org/emmo#EMMO_2ae37adf_07f2_4920_8ec6_084c69761e34",
"AbsoluteHumidity": "https://w3id.org/emmo#EMMO_a13cff6e_41fd_48d5_82b6_3a9015f19001",
"AbsorbedDose": "https://w3id.org/emmo#EMMO_8e5dd473_808b_4a8a_b7cd_63068c12ff57",
"AbsorbedDoseRate": "https://w3id.org/emmo#EMMO_15d36b02_fbb4_4c35_bca9_38e9c573baee",
"AbsorbedDoseRateUnit": "https://w3id.org/emmo#EMMO_835f4e4e_680d_404c_8c73_92a6a570f6eb",
"AbsorbedDoseUnit": "https://w3id.org/emmo#EMMO_847f1d9f_205e_46c1_8cb6_a9e479421f88",
"Acceleration": "https://w3id.org/emmo#EMMO_e37ac288_aa60_415a_8cb7_c375724ac8e1",
"AccelerationUnit": "https://w3id.org/emmo#EMMO_2da7408f_d389_4245_887d_a1743b81a9b6",
"AcceptorDensity": "https://w3id.org/emmo#EMMO_8219a082_9443_4374_8038_6459d5cf4ce9",
"AccessConditions": "AccessConditions",
"AceticAcid": "https://w3id.org/emmo/domain/chemicalsubstance#substance_b0abf2a1_540e_42fc_b3cf_f5a8a43e591d",
"Acetone": "https://w3id.org/emmo/domain/chemicalsubstance#substance_a065f68b_99ed_4bdd_b568_13158ba1731f",
"Acetonitrile": "https://w3id.org/emmo/domain/chemicalsubstance#substance_b3708b26_f2dc_4a68_97c3_fced02c8d0e2",
"Acid": "https://w3id.org/emmo/domain/chemicalsubstance#substance_cc155ed5_c60c_4d9f_bfad_fbf6b7c77e57",
"AcidicElectrolyte": "https://w3id.org/emmo/domain/electrochemistry#electrochemistry_6592d8cc_4ce4_42ca_b010_6bfc4a8444d2",
"AcousticQuantity": "https://w3id.org/emmo#EMMO_50b91f00_d1b3_4638_ab1e_8f982a37621a",
"AcrylicAcid": "https://w3id.org/emmo/domain/chemicalsubstance#substance_0391f63f_9ab8_4b33_a4c5_47591a89de72",
"ActiniumAtom": "https://w3id.org/emmo#EMMO_380f1ba6_b4f3_51e2_a63f_ceeeca2ed2f4",
"ActiniumSymbol": "https://w3id.org/emmo#EMMO_3bf0809d_2f7c_5282_b7fd_2e5486f6dbd3",
"Action": "https://w3id.org/emmo#EMMO_fc1987b2_afff_4dc6_a102_bdd9f024b03b",
"ActivationOverpotential": "https://w3id.org/emmo/domain/electrochemistry#electrochemistry_7fa406b0_512a_4d59_9e0c_5d8aba0103ae",
"ActiveElectrode": "https://w3id.org/emmo/domain/electrochemistry#electrochemistry_9a823d64_9d10_4a29_9cbd_9bbdad7985bc",
"ActiveEnergy": "https://w3id.org/emmo#EMMO_621607ae_90ef_4f48_845e_3b53091a9340",
"ActiveMaterial": "https://w3id.org/emmo/domain/electrochemistry#electrochemistry_79d1b273_58cd_4be6_a250_434817f7c261",
"ActiveMaterialMix": "https://w3id.org/emmo/domain/electrochemistry#electrochemistry_81833d8a_b03d_4250_be84_6385415beb01",
"ActiveMaterialParticleCracking": "https://w3id.org/emmo/domain/electrochemistry#electrochemistry_f6341d7d_7620_48f5_97b2_99b55c349169",
"ActivePower": "https://w3id.org/emmo#EMMO_2c9f993c_5b30_40a5_a471_808f7eb719db",
"Activity": "https://w3id.org/emmo#EMMO_c20dd550_7241_4ca4_b5b1_0d300ab03b6c",
"ActivityCoefficient": "https://w3id.org/emmo#EMMO_3434b127_1820_43a7_9e13_b96f25e66ee8",
"ActivityDensity": "https://w3id.org/emmo#EMMO_f94fceab_966b_4ead_b615_f6b6b07dfd55",
"ActivityFactor": "https://w3id.org/emmo#EMMO_254ff869_7d28_42dd_aedc_adb4cc8ad0cb",
"ActivityOfSolute": "https://w3id.org/emmo#EMMO_125e8614_0dad_4c04_9ac9_03317e63beec",
"ActivityOfSolvent": "https://w3id.org/emmo#EMMO_2ed364b1_affe_4711_a83f_74bfd57b94ad",
"AdditiveManufacturing": "https://w3id.org/emmo#EMMO_03eb9b46_8ff0_4fcd_b1a0_73f65ae7434e",
"Admittance": "https://w3id.org/emmo#EMMO_4fb35ebc_0f3f_4cda_b181_a5334bc2b114",
"AdsorptionCurrent": "https://w3id.org/emmo/domain/electrochemistry#electrochemistry_214d925c_76c4_4f69_9afc_056a1ea82fc6",
"AdsorptiveStrippingVoltammetry": "AdsorptiveStrippingVoltammetry",
"Aerosol": "https://w3id.org/emmo#EMMO_560d833a_6184_410c_859a_05d982712fd7",
"AffinityOfAChemicalReaction": "https://w3id.org/emmo#EMMO_3a5b4cf3_08d7_4107_be20_cdd0ef7fc73c",
"Agent": "https://w3id.org/emmo#EMMO_2480b72b_db8d_460f_9a5f_c2912f979046",
"AirElectrode": "https://w3id.org/emmo/domain/electrochemistry#electrochemistry_8b40856f_1ca2_4137_9616_7fb624671909",
"Alcohol": "https://w3id.org/emmo/domain/chemicalsubstance#substance_961f7671_8708_4ce3_9c7d_79444adba9c0",
"AlgebricEquation": "https://w3id.org/emmo#EMMO_98d65021_4574_4890_b2fb_46430841077f",
"AlgebricExpression": "https://w3id.org/emmo#EMMO_1aed91a3_d00c_48af_8f43_a0c958b2512a",
"AlgebricOperator": "https://w3id.org/emmo#EMMO_3c424d37_cf62_41b1_ac9d_a316f8d113d6",
"AlkaliMetalElementalSubstance": "https://w3id.org/emmo/domain/chemicalsubstance#substance_68e4028b_0ec6_46da_8d1c_d00c644e8c82",
"AlkaliMetalSaltCompound": "https://w3id.org/emmo/domain/chemicalsubstance#substance_6c490298_2ce8_41e1_ac37_4b44faff2d44",
"Alkaline4SR44": "https://w3id.org/emmo/domain/battery#battery_2e47736e_285a_4215_9c7c_296ae6a45f20",
"AlkalineA23": "https://w3id.org/emmo/domain/battery#battery_3ec55c79_6421_4ca3_88c8_a6c98ec6fd0b",
"AlkalineA27": "https://w3id.org/emmo/domain/battery#battery_5ea1c25b_3b25_401c_b6be_76e9f7a4c4bd",
"AlkalineCell": "https://w3id.org/emmo/domain/battery#battery_50b911f7_c903_4700_9764_c308d8a95470",
"AlkalineEarthMetalElementalSubstance": "https://w3id.org/emmo/domain/chemicalsubstance#substance_a4a5b239_d88e_4e03_a763_0bf2a3dd0f47",
"AlkalineEarthMetalSaltCompound": "https://w3id.org/emmo/domain/chemicalsubstance#substance_fc93282d_cb35_4bab_81a8_78689ae59e5f",
"AlkalineElectrolyte": "https://w3id.org/emmo/domain/electrochemistry#electrochemistry_615cff2a_be95_4e65_9471_98db23f4c878",
"AlkalineLanternBattery": "https://w3id.org/emmo/domain/battery#battery_cbc032aa_657f_4dca_87f8_edaccc70348d",
"AlkalinePP3": "https://w3id.org/emmo/domain/battery#battery_6e8efa8d_ec92_40e7_8013_e5efb4bc654d",
"AlkalineZincAirBattery": "https://w3id.org/emmo/domain/battery#battery_b5910d2f_3114_4663_8d46_e418ff859251",
"AlkalineZincManganeseDioxideBattery": "https://w3id.org/emmo/domain/battery#battery_b572826a_b4e4_4986_b57d_f7b945061f8b",
"AlphaDisintegrationEnergy": "https://w3id.org/emmo#EMMO_260dfba7_f7ab_4e5d_99e5_137600778220",
"AlphaSpectrometry": "AlphaSpectrometry",
"AlternatingCurrent": "https://w3id.org/emmo/domain/electrochemistry#electrochemistry_a53d6dee_1547_4854_a311_805b4d557298",
"Aluminium": "https://w3id.org/emmo/domain/chemicalsubstance#substance_8f7dd877_5ad0_48f1_bbec_84153d8215f4",
"AluminiumAcetate": "https://w3id.org/emmo/domain/chemicalsubstance#substance_1b31f3bb_1c1b_40e2_8d0f_0e21abe237e7",
"AluminiumAirBattery": "https://w3id.org/emmo/domain/battery#battery_44cb1e3b_480c_4594_a79a_4e4f001050ea",
"AluminiumAtom": "https://w3id.org/emmo#EMMO_7e8f9419_0bda_5aa3_ba88_00b2be6ca69e",
"AluminiumBattery": "https://w3id.org/emmo/domain/battery#battery_3f08a520_6e46_47f3_a6c6_2ec54ed0a7c1",
"AluminiumBromide": "https://w3id.org/emmo/domain/chemicalsubstance#substance_fed5b5ee_de69_405d_9ce1_d6aaf89017db",
"AluminiumCarbonate": "https://w3id.org/emmo/domain/chemicalsubstance#substance_0470d73a_ea51_4505_b164_0c090bf0382b",
"AluminiumChlorate": "https://w3id.org/emmo/domain/chemicalsubstance#substance_0238c3cb_706f_4c5a_84e3_0738e16264bb",
"AluminiumChloride": "https://w3id.org/emmo/domain/chemicalsubstance#substance_89898e91_c4c7_4057_8040_965d1776d2ba",
"AluminiumElectrode": "https://w3id.org/emmo/domain/electrochemistry#electrochemistry_952c8c3a_df21_4dd1_8d8c_380e43dc8c78",
"AluminiumFluoride": "https://w3id.org/emmo/domain/chemicalsubstance#substance_6a2432b3_abf1_4eba_825f_f0022ccba884",
"AluminiumHydroxide": "https://w3id.org/emmo/domain/chemicalsubstance#substance_0e21b44e_5749_4b19_9d79_d8b70df1cdc6",
"AluminiumInsertionElectrode": "https://w3id.org/emmo/domain/electrochemistry#electrochemistry_1c6cef85_811f_45d0_a0fd_2bc2d9369ea4",
"AluminiumIodide": "https://w3id.org/emmo/domain/chemicalsubstance#substance_30960f1f_5af5_4700_8df8_428c994b5cb6",
"AluminiumNitrate": "https://w3id.org/emmo/domain/chemicalsubstance#substance_b6ec6818_6d76_41b7_83d4_92b8e2363b90",
"AluminiumOxide": "https://w3id.org/emmo/domain/chemicalsubstance#substance_a2b46543_4d0f_488a_b51a_7ed3a4149170",
"AluminiumOxideCompound": "https://w3id.org/emmo/domain/chemicalsubstance#substance_6411d319_81a0_40f3_8e4d_09784d1c7644",
"AluminiumPerchlorate": "https://w3id.org/emmo/domain/chemicalsubstance#substance_4c6265b5_d9e4_4493_b1e8_ae35f463ceeb",
"AluminiumPhosphate": "https://w3id.org/emmo/domain/chemicalsubstance#substance_89228db4_7491_40f1_bd25_c87e459a2d20",
"AluminiumSaltCompound": "https://w3id.org/emmo/domain/chemicalsubstance#substance_f313522b_e2c4_4251_ba7f_d6b9dc7db1d6",
"AluminiumShuttleBattery": "https://w3id.org/emmo/domain/battery#battery_7db1c7e9_5039_41f2_a5ef_b9e27d080050",
"AluminiumSulfate": "https://w3id.org/emmo/domain/chemicalsubstance#substance_e7a4f9ca_e221_4080_8281_304c3a8290f9",
"AluminiumSulfide": "https://w3id.org/emmo/domain/chemicalsubstance#substance_be34d464_0eb9_4861_8998_5cce0f1e2979",
"AluminiumSymbol": "https://w3id.org/emmo#EMMO_fc7ab7d2_d960_5ae8_b13b_a53dbc547cca",
"AluminiumTriflate": "https://w3id.org/emmo/domain/chemicalsubstance#substance_7fa9e820_f244_4929_a926_a6ebf85014ba",
"AmbientThermodynamicTemperature": "https://w3id.org/emmo/domain/electrochemistry#electrochemistry_39a44af0_0e1a_4859_b550_bdabad64386e",
"AmericiumAtom": "https://w3id.org/emmo#EMMO_f90da1f3_eb4c_54c4_b5d9_cf00fef180a1",
"AmericiumSymbol": "https://w3id.org/emmo#EMMO_f107c0e5_0b9f_566c_9cba_a3443c904f78",
"Ammonia": "https://w3id.org/emmo/domain/chemicalsubstance#substance_3dfd47ff_ed4b_4e83_85a0_02917b79fef9",
"AmmoniaSolution": "https://w3id.org/emmo/domain/electrochemistry#electrochemistry_f9e2e676_5cd1_4e22_a776_af45838d4027",
"AmmoniumBromide": "https://w3id.org/emmo/domain/chemicalsubstance#substance_54f744b3_1d02_4571_a303_a2a7dd8f0446",
"AmmoniumCarbonate": "https://w3id.org/emmo/domain/chemicalsubstance#substance_d9c342d8_497e_4378_96e2_3b9b2c42cf17",
"AmmoniumChlorate": "https://w3id.org/emmo/domain/chemicalsubstance#substance_2773ee9b_cee9_4367_8b81_4ce6265d411a",
"AmmoniumChloride": "https://w3id.org/emmo/domain/chemicalsubstance#substance_3016a276_0f17_4576_b8fd_200c07d71bfc",
"AmmoniumChlorideSolution": "https://w3id.org/emmo/domain/electrochemistry#electrochemistry_3f67016b_32b9_4419_a3f8_a5ffb5e92538",
"AmmoniumFluoride": "https://w3id.org/emmo/domain/chemicalsubstance#substance_9db045a6_0104_4b2d_85ce_9610e99c7fc4",
"AmmoniumIodide": "https://w3id.org/emmo/domain/chemicalsubstance#substance_e2764cfb_4fa6_4fe9_85e0_1dfe69a37ff1",
"AmmoniumNitrate": "https://w3id.org/emmo/domain/chemicalsubstance#substance_a8a48b58_d2ea_441c_b4ea_1b3ba65d9545",
"AmmoniumNitrite": "https://w3id.org/emmo/domain/chemicalsubstance#substance_d5bf1391_1bc2_472d_adc8_1b2407d2af70",
"AmmoniumPerchlorate": "https://w3id.org/emmo/domain/chemicalsubstance#substance_231feb61_4200_4bc7_b060_02b51ab13ee2",
"AmmoniumSaltCompound": "https://w3id.org/emmo/domain/chemicalsubstance#substance_aa92d6c6_2c46_4e7d_9b2c_c95b849041d4",
"AmmoniumSulfate": "https://w3id.org/emmo/domain/chemicalsubstance#substance_c3474f9a_87bd_4b73_9398_6e1ccbf133af",
"AmmoniumSulfide": "https://w3id.org/emmo/domain/chemicalsubstance#substance_8ab4c789_bad4_4b36_9f54_d8c6e9e7b5b2",
"AmmoniumSulfite": "https://w3id.org/emmo/domain/chemicalsubstance#substance_5414a9d0_6c2e_4d21_bfad_9a19fc8f62f9",
"AmorphousMaterial": "https://w3id.org/emmo#EMMO_0afc19b0_2d43_4b3d_8da0_9ffb63bc1492",
"AmountConcentration": "https://w3id.org/emmo#EMMO_d5be1faf_0c56_4f5a_9b78_581e6dee949f",
"AmountConcentrationUnit": "https://w3id.org/emmo#EMMO_e9348e5b_af4f_4898_bbfe_c4583cf44b80",
"AmountConductivityUnit": "https://w3id.org/emmo#EMMO_14235b93_650f_4452_8395_a23b8f645c9a",
"AmountFraction": "https://w3id.org/emmo#EMMO_04b3300c_98bd_42dc_a3b5_e6c29d69f1ac",
"AmountFractionUnit": "https://w3id.org/emmo#EMMO_f76f5a24_d703_4e8c_b368_f9a7777cb73a",
"AmountOfSubstance": "https://w3id.org/emmo#EMMO_8159c26a_494b_4fa0_9959_10888f152298",
"AmountPerAreaTimeUnit": "https://w3id.org/emmo#EMMO_a94aec97_71ff_4574_b111_a52d77d2c230",
"AmountPerAreaUnit": "https://w3id.org/emmo#EMMO_183f6fac_8543_44e0_bd59_434aa7054f4c",
"AmountPerMassPressureUnit": "https://w3id.org/emmo#EMMO_2d66cf6d_9396_40c8_bb82_324ab19067ce",
"AmountPerMassTimeUnit": "https://w3id.org/emmo#EMMO_5d2d48c4_4fb6_4f33_bfc0_273129429c30",
"AmountPerMassUnit": "https://w3id.org/emmo#EMMO_95971713_d589_4002_a5a7_affc5c74cfdb",
"AmountPerVolumeTimeUnit": "https://w3id.org/emmo#EMMO_c5ac5c53_14de_47ce_b424_2576d042d241",
"AmountSquareTimePerMassVolumeUnit": "https://w3id.org/emmo#EMMO_052e9796_1144_43ae_a798_c5755cd6cd81",
"AmountTemperatureUnit": "https://w3id.org/emmo#EMMO_3d254432_6f8f_4a6d_9eb3_4ab54388171b",
"AmountUnit": "https://w3id.org/emmo#EMMO_e501069c_34d3_4dc7_ac87_c90c7342192b",
"Ampere": "https://w3id.org/emmo#Ampere",
"AmpereHour": "https://w3id.org/emmo#AmpereHour",
"AmpereHourPerKilogram": "https://w3id.org/emmo#AmpereHourPerKilogram",
"AmpereHourPerLitre": "https://w3id.org/emmo#AmpereHourPerLitre",
"AmperePerCentiMetre": "https://w3id.org/emmo#AmperePerCentiMetre",
"AmperePerDegreeCelsius": "https://w3id.org/emmo#AmperePerDegreeCelsius",
"AmperePerGram": "https://w3id.org/emmo#AmperePerGram",
"AmperePerJoule": "https://w3id.org/emmo#AmperePerJoule",
"AmperePerMetre": "https://w3id.org/emmo#AmperePerMetre",
"AmperePerMilliMetre": "https://w3id.org/emmo#AmperePerMilliMetre",
"AmperePerRadian": "https://w3id.org/emmo#AmperePerRadian",
"AmperePerSquareCentiMetre": "https://w3id.org/emmo#AmperePerSquareCentiMetre",
"AmperePerSquareMetre": "https://w3id.org/emmo#AmperePerSquareMetre",
"AmperePerSquareMetreSquareKelvin": "https://w3id.org/emmo#AmperePerSquareMetreSquareKelvin",
"AmperePerSquareMilliMetre": "https://w3id.org/emmo#AmperePerSquareMilliMetre",
"AmpereSecond": "https://w3id.org/emmo#AmpereSecond",
"AmpereSquareMetre": "https://w3id.org/emmo#AmpereSquareMetre",
"AmpereSquareMetrePerJouleSecond": "https://w3id.org/emmo#AmpereSquareMetrePerJouleSecond",
"Amperometry": "Amperometry",
"AmphotericCompound": "https://w3id.org/emmo/domain/chemicalsubstance#substance_de038959_9251_48d1_a141_3684f14d957f",
"AmplitudeOfAlternatingCurrent": "https://w3id.org/emmo/domain/electrochemistry#electrochemistry_10eb778d_da60_4832_a355_4ee74baea650",
"AmplitudeOfAlternatingVoltage": "https://w3id.org/emmo/domain/electrochemistry#electrochemistry_f591a444_89d6_4093_836d_7d53895edce4",
"AnalogData": "https://w3id.org/emmo#EMMO_0d1c0018_42e2_4506_bc3d_f53c117c1ad3",
"AnalogicalIcon": "https://w3id.org/emmo#EMMO_4f2d1fcc_e20c_4479_9ad7_7a0480dd3e44",
"AnalyticalElectronMicroscopy": "AnalyticalElectronMicroscopy",
"Angle": "https://w3id.org/emmo#EMMO_f3dd74c0_f480_49e8_9764_33b78638c235",
"AngularAcceleration": "https://w3id.org/emmo#EMMO_77c53503_48b5_4811_a1a5_6bb4425e0bbf",
"AngularFrequency": "https://w3id.org/emmo#EMMO_f4a30d7e_8e8b_41e6_9695_d33a68f54f4b",
"AngularFrequencyUnit": "https://w3id.org/emmo#EMMO_78487bf1_c0bc_4db8_99dd_d8b7cc8b3bac",
"AngularMeasure": "https://w3id.org/emmo#EMMO_930ce8d9_6cde_4ef9_9cb2_a98a63852b96",
"AngularMomentum": "https://w3id.org/emmo#EMMO_66d01570_36dd_42fd_844d_29b81b029cd5",
"AngularMomentumUnit": "https://w3id.org/emmo#EMMO_501f9b3a_c469_48f7_9281_2e6a8d805d7a",
"AngularReciprocalLatticeVector": "https://w3id.org/emmo#EMMO_7254c8be_965d_4b3c_b3be_12c5578bee7c",
"AngularVelocity": "https://w3id.org/emmo#EMMO_bd325ef5_4127_420c_83d3_207b3e2184fd",
"AngularWaveNumber": "https://w3id.org/emmo#EMMO_e4791212_5a13_4aa6_aac2_08704550dcc3",
"AngularWavenumber": "https://w3id.org/emmo#EMMO_ba236f43_7f94_4386_9673_9122952e928b",
"Anion": "https://w3id.org/emmo/domain/chemicalsubstance#substance_5a5e8609_83bf_46d1_a1b0_eaafa27aaed4",
"Annealing": "https://w3id.org/emmo#EMMO_9900d51c_bdd3_40e8_aa82_ad1aa7092f71",
"AnnularWorkingElectrode": "https://w3id.org/emmo/domain/electrochemistry#electrochemistry_3a77b5e7_9646_4154_bf8f_5f798989e5f3",
"Anode": "https://w3id.org/emmo/domain/electrochemistry#electrochemistry_b6319c74_d2ce_48c0_a75a_63156776b302",
"AnodicOverpotential": "https://w3id.org/emmo/domain/electrochemistry#electrochemistry_565c0b10_70fe_441a_b76a_b9a8e08ca7b7",
"AnodicPolarisation": "https://w3id.org/emmo/domain/electrochemistry#electrochemistry_28213033_4c74_441c_81c4_a0cad05f9eb6",
"AnodicReaction": "https://w3id.org/emmo/domain/electrochemistry#electrochemistry_a0580fa9_5073_44af_b33e_7adbc83892d0",
"AnodicStrippingVoltammetry": "AnodicStrippingVoltammetry",
"Anolyte": "https://w3id.org/emmo/domain/electrochemistry#electrochemistry_865a40fc_2187_4549_a7e1_37aa2458448f",
"AnolyteTank": "https://w3id.org/emmo/domain/electrochemistry#electrochemistry_38755e67_9d3b_4a82_bd8d_ef40a70379c1",
"AntiElectronType": "https://w3id.org/emmo#EMMO_4e36a0b8_e6c7_456e_bef5_c830e3c0ed17",
"AntiLepton": "https://w3id.org/emmo#EMMO_716fadba_7ff8_4247_97fc_c6703437c018",
"AntiMatter": "https://w3id.org/emmo#EMMO_f13672a3_59cc_40ed_8def_65009a8f74e6",
"AntiMuon": "https://w3id.org/emmo#EMMO_29ce946a_f164_43ea_b9f8_0cb4f1022853",
"AntiNeutrinoType": "https://w3id.org/emmo#EMMO_edfa7d90_6b21_4669_b9b1_13c77de760eb",
"AntiQuark": "https://w3id.org/emmo#EMMO_cc741dde_2c7c_46ef_bb66_16a6d12c2a88",
"AntiTau": "https://w3id.org/emmo#EMMO_b4abf29e_aab7_4c2f_af0b_536a92ef327f",
"Antimony": "https://w3id.org/emmo/domain/chemicalsubstance#substance_e1d2936e_8382_463e_bd83_f7bac40c355b",
"AntimonyAtom": "https://w3id.org/emmo#EMMO_c32f8642_f1a1_5fae_8b4e_990b40f6eff8",
"AntimonySymbol": "https://w3id.org/emmo#EMMO_4ee57a22_0634_5889_a283_0b4f8e5023f6",
"ApparentPower": "https://w3id.org/emmo#EMMO_7b09c6b8_d120_4518_9b66_3b1139e0aa66",
"ApplicationProgram": "https://w3id.org/emmo#EMMO_3b031fa9_8623_4ea5_8b57_bcafb70c5c8b",
"ApplicationSpecificScript": "https://w3id.org/emmo#EMMO_3c5b33a1_4f28_41f9_b725_1994df79bf55",
"AproticSolventCompound": "https://w3id.org/emmo/domain/chemicalsubstance#substance_7fd3843d_f0b7_4490_bcf3_519fb9e2b150",
"AqueousElectrolyte": "https://w3id.org/emmo/domain/electrochemistry#electrochemistry_b812e9d0_7c58_4455_b3e7_6847f10c8e8a",
"AqueousMetallicFlowBattery": "https://w3id.org/emmo/domain/battery#battery_edc98332_248a_436a_a352_5a7897150c4f",
"AqueousOrganicFlowBattery": "https://w3id.org/emmo/domain/battery#battery_4a620a13_ef9f_40c7_8833_c6e0720ce3ca",
"AqueousSolution": "https://w3id.org/emmo#EMMO_5cb107ba_7daa_46dd_8f9f_da22a6eac676",
"Aquivion": "https://w3id.org/emmo/domain/chemicalsubstance#substance_7a757020_eecc_4dc1_afc7_55759911c772",
"ArchetypeJoin": "https://w3id.org/emmo#EMMO_22496460_c849_4bd7_8be0_9a1202506f18",
"ArchetypeManufacturing": "https://w3id.org/emmo#EMMO_e9244742_c185_4c50_b455_c57654852582",
"Area": "https://w3id.org/emmo#EMMO_96f39f77_44dc_491b_8fa7_30d887fe0890",
"AreaDensity": "https://w3id.org/emmo#EMMO_afea89af_ef16_4bdb_99d5_f3b2f4c85a6c",
"AreaDensityUnit": "https://w3id.org/emmo#EMMO_90798691_3b86_4d8c_910f_be2b39c98b39",
"AreaFractionUnit": "https://w3id.org/emmo#EMMO_6f4d704a_a7c6_4c07_b8a7_ea0bab04128f",
"AreaPerAmountUnit": "https://w3id.org/emmo#EMMO_973656ed_870e_40ba_8bc0_c879687a335a",
"AreaPerMassUnit": "https://w3id.org/emmo#EMMO_4817e479_e401_437e_a49b_54540b93d2a1",
"AreaPerQuarticTimeUnit": "https://w3id.org/emmo#EMMO_27c8e4db_eb18_402c_951e_6a38751cf1d0",
"AreaPerTemperatureUnit": "https://w3id.org/emmo#EMMO_002e4002_58c7_4aea_ac1f_bba5188818ff",
"AreaPerTimeUnit": "https://w3id.org/emmo#EMMO_10f703b5_8b2a_4c5a_a734_f0cfb29622ad",
"AreaSquareTimeUnit": "https://w3id.org/emmo#EMMO_7855043d_a466_4585_97a9_b9fe4ce0c12d",
"AreaTemperatureUnit": "https://w3id.org/emmo#EMMO_ceaa4c6b_f5b7_46f4_bfcd_16eb4afab945",
"AreaTimeTemperatureUnit": "https://w3id.org/emmo#EMMO_48a3c106_9d39_455e_a849_81ceff95bdea",
"AreaTimeUnit": "https://w3id.org/emmo#EMMO_959c9715_14fb_4ce8_a93b_79678b2959b9",
"AreaUnit": "https://w3id.org/emmo#EMMO_33433bb1_c68f_45ee_a466_f01e2c57b214",
"AreicCapacity": "https://w3id.org/emmo/domain/electrochemistry#electrochemistry_bcb33f7e_5573_4bc2_b636_4ea313a9dd3a",
"AreicSpeedUnit": "https://w3id.org/emmo#EMMO_b33cc5b5_a9dc_4082_b497_14d1654c5591",
"Argon": "https://w3id.org/emmo/domain/chemicalsubstance#substance_38178633_83fb_42ea_81a2_cd23e9db9b04",
"ArgonAtom": "https://w3id.org/emmo#EMMO_755d962f_c703_514f_8d90_ca4f55e331d4",
"ArgonSymbol": "https://w3id.org/emmo#EMMO_69e0ff08_9843_5ca2_b2bb_58467b07c4bb",
"ArithmeticEquation": "https://w3id.org/emmo#EMMO_a6138ba7_e365_4f2d_b6b4_fe5a5918d403",
"ArithmeticExpression": "https://w3id.org/emmo#EMMO_89083bab_f69c_4d06_bf6d_62973b56cdc7",
"ArithmeticOperator": "https://w3id.org/emmo#EMMO_707f0cd1_941c_4b57_9f20_d0ba30cd6ff3",
"Arrangement": "https://w3id.org/emmo#EMMO_36c79456_e29c_400d_8bd3_0eedddb82652",
"Array": "https://w3id.org/emmo#EMMO_28fbea28_2204_4613_87ff_6d877b855fcd",
"Array3D": "https://w3id.org/emmo#EMMO_20ff3b34_c864_4936_8955_9345fc0a3b3c",
"Arsenic": "https://w3id.org/emmo/domain/chemicalsubstance#substance_20319b23_0673_45de_9b12_794813d948a9",
"ArsenicAtom": "https://w3id.org/emmo#EMMO_41dba862_503f_57c2_86c7_bb40030481f0",
"ArsenicSymbol": "https://w3id.org/emmo#EMMO_0ba17fb4_6149_5332_b65f_0639ace42edf",
"Assembled": "https://w3id.org/emmo#EMMO_52bbaaee_1145_4be3_8a5c_b366851ea1b9",
"AssemblyLine": "https://w3id.org/emmo#EMMO_d64920b5_acd0_4e29_893e_ae03b3d7cdaf",
"Assemblying": "https://w3id.org/emmo#EMMO_912ac3a2_a124_4233_92dd_06c9aebea46c",
"Assigned": "https://w3id.org/emmo#EMMO_dabe353b_8bfc_4da7_8ac7_8f52786d16f8",
"Assigner": "https://w3id.org/emmo#EMMO_f273529f_9f2c_4877_a94b_5b47590353fc",
"Assignment": "https://w3id.org/emmo#EMMO_d5adc819_d4b2_4661_b429_1705b75d5053",
"AstatineAtom": "https://w3id.org/emmo#EMMO_186607c3_fe59_5731_983f_4374a1f8544b",
"AstatineSymbol": "https://w3id.org/emmo#EMMO_c7651944_e33f_56bc_8d83_f6de9760d661",
"AstronomicalUnit": "https://w3id.org/emmo#AstronomicalUnit",
"AsymmetricMembrane": "https://w3id.org/emmo/domain/electrochemistry#electrochemistry_b2d11f0d_c1b0_4476_8d17_03b73d31e01f",
"Atom": "https://w3id.org/emmo#EMMO_eb77076b_a104_42ac_a065_798b2d2809ad",
"AtomProbeTomography": "AtomProbeTomography",
"AtomicAndNuclearPhysicsQuantity": "https://w3id.org/emmo#EMMO_3b1b64d1_60c9_4689_a300_eb9cd56e368b",
"AtomicAttenuationCoefficient": "https://w3id.org/emmo#EMMO_21e69447_1d0c_4880_ab8c_6bfbcd83aab4",
"AtomicForceMicroscopy": "AtomicForceMicroscopy",
"AtomicMass": "https://w3id.org/emmo#EMMO_27367073_ed8a_481a_9b07_f836dfe31f7f",
"AtomicNumber": "https://w3id.org/emmo#EMMO_07de47e0_6bb6_45b9_b55a_4f238efbb105",
"AtomicPhysicsCrossSection": "https://w3id.org/emmo#EMMO_3d77504a_a1fe_485f_aabb_6750598fe1ea",
"AtomicScatteringFactor": "https://w3id.org/emmo#EMMO_0a982eeb_e5ef_4828_93bc_53ece1b3f171",
"AtomisticModel": "https://w3id.org/emmo#EMMO_84cadc45_6758_46f2_ba2a_5ead65c70213",
"Attenuation": "https://w3id.org/emmo#EMMO_ecf938f1_bc37_4897_841d_092cd37f74de",
"Atto": "https://w3id.org/emmo#EMMO_e9722f13_947c_444e_82ef_1ce045f6637c",
"AttoPrefixedUnit": "https://w3id.org/emmo#EMMO_42955b2d_b465_4666_86cc_ea3c2d685753",
"Auditory": "https://w3id.org/emmo#EMMO_4b3afb22_27cf_4ce3_88bc_492bfccb546b",
"AverageEnergyLossPerElementaryChargeProduced": "https://w3id.org/emmo#EMMO_dd92c2ae_3ca4_49bc_9147_d82b96f7505e",
"AverageLogarithmicEnergyDecrement": "https://w3id.org/emmo#EMMO_44afb828_82bf_4091_a7a0_7c80ec47281d",
"AvogadroConstant": "https://w3id.org/emmo#EMMO_176cae33_b83e_4cd2_a6bc_281f42f0ccc8",
"BPFPB": "https://w3id.org/emmo/domain/chemicalsubstance#substance_26452118_db69_4a2f_a862_2cebe1f6c85f",
"Barium": "https://w3id.org/emmo/domain/chemicalsubstance#substance_fc4220a5_3f91_4a60_83c3_4c1be988c2f1",
"BariumAcetate": "https://w3id.org/emmo/domain/chemicalsubstance#substance_ab34d4a3_a5c8_4318_9b7d_0608e2149398",
"BariumAtom": "https://w3id.org/emmo#EMMO_1b1aa658_a7d5_5bc6_9d78_37a901fd66dd",
"BariumBisfluorosulfonylimide": "https://w3id.org/emmo/domain/chemicalsubstance#substance_7cb7c122_995f_43d3_b419_b8a0d0fe8406",
"BariumBisoxalatoborate": "https://w3id.org/emmo/domain/chemicalsubstance#substance_ad1fe482_6d88_4207_b1e5_ef01b68bec97",
"BariumBisoxalatophosphate": "https://w3id.org/emmo/domain/chemicalsubstance#substance_55d2a257_feb3_4af1_bf8d_4b53bb73610c",
"BariumBistrifluoromethanesulfonylimide": "https://w3id.org/emmo/domain/chemicalsubstance#substance_05b11934_6a3e_4434_855b_111aced0a6be",
"BariumBromide": "https://w3id.org/emmo/domain/chemicalsubstance#substance_ff0f6cb9_d9e7_4a9e_848f_02200eed0cf7",
"BariumCarbonate": "https://w3id.org/emmo/domain/chemicalsubstance#substance_d459562f_94cb_4b2d_902f_788399c64cfc",
"BariumChlorate": "https://w3id.org/emmo/domain/chemicalsubstance#substance_8d866be8_fec3_4253_a388_ca6005fd9c85",
"BariumChloride": "https://w3id.org/emmo/domain/chemicalsubstance#substance_da1623c4_3d3b_4c9d_8601_ea055848df39",
"BariumDifluorooxalatoborate": "https://w3id.org/emmo/domain/chemicalsubstance#substance_a092c93d_1d03_4d74_b0d7_7ed51b0a3eca",
"BariumFluoride": "https://w3id.org/emmo/domain/chemicalsubstance#substance_af1422d5_f626_49e4_9302_cb94e6d5ff7b",
"BariumHexafluorophosphate": "https://w3id.org/emmo/domain/chemicalsubstance#substance_64bbeab1_1e9a_481e_8aaf_6fa629071818",
"BariumHydroxide": "https://w3id.org/emmo/domain/chemicalsubstance#substance_c9141094_0700_41ec_8373_4fc52b2f1615",
"BariumIodide": "https://w3id.org/emmo/domain/chemicalsubstance#substance_53c372d6_b1fa_4e53_93b3_0904c0580d28",
"BariumNitrate": "https://w3id.org/emmo/domain/chemicalsubstance#substance_e1de5285_dbc5_4845_9f8d_9821708681ca",
"BariumNitrite": "https://w3id.org/emmo/domain/chemicalsubstance#substance_e1569fd3_34ac_440c_845c_f7c85f59c88d",
"BariumPerchlorate": "https://w3id.org/emmo/domain/chemicalsubstance#substance_6e5726c5_0589_4a2a_bdf4_3bece3121df5",
"BariumPhosphate": "https://w3id.org/emmo/domain/chemicalsubstance#substance_8cbdf192_69bf_45cc_a570_95bf69fd8f91",
"BariumSaltCompound": "https://w3id.org/emmo/domain/chemicalsubstance#substance_7dd5ebb3_1084_485a_9fbf_05954cd2da84",
"BariumSulfate": "https://w3id.org/emmo/domain/chemicalsubstance#substance_d24edc6f_d03b_48ff_8a47_780ad7c2e2b2",
"BariumSulfide": "https://w3id.org/emmo/domain/chemicalsubstance#substance_7fdf54d6_5503_4f83_8627_537805542c5b",
"BariumSulfite": "https://w3id.org/emmo/domain/chemicalsubstance#substance_4e2e3adb_47cc_44d8_a3c3_28257dffcb28",
"BariumSymbol": "https://w3id.org/emmo#EMMO_d60619c8_1abe_52c0_9491_eb3086245e22",
"BariumTetrafluoroborate": "https://w3id.org/emmo/domain/chemicalsubstance#substance_16d7c7a6_56ef_429b_9ce8_cd911410d083",
"BariumTriflate": "https://w3id.org/emmo/domain/chemicalsubstance#substance_fcc8de17_cb4d_409e_93ef_4970df535743",
"BariumTrifluoromethanesulfonyloxalatoborate": "https://w3id.org/emmo/domain/chemicalsubstance#substance_4d6845ce_47c8_4c7d_b275_1d4494a0799b",
"Baryon": "https://w3id.org/emmo#EMMO_24dda193_ada8_433b_bb74_6ca4a0b89a20",
"Base": "https://w3id.org/emmo/domain/chemicalsubstance#substance_7beec353_bad9_46fc_a035_a76b131fb32b",
"BaseQuantity": "https://w3id.org/emmo#EMMO_acaaa124_3dde_48b6_86e6_6ec6f364f408",
"BaseUnit": "https://w3id.org/emmo#EMMO_db716151_6b73_45ff_910c_d182fdcbb4f5",
"BaselineCellVoltage": "https://w3id.org/emmo/domain/electrochemistry#electrochemistry_269ddd97_1437_4545_b272_0df75a12c68a",
"Battery": "https://w3id.org/emmo/domain/battery#battery_74ed2670_657d_4f0b_b0a6_3f13bc2e9c17",
"BatteryBase": "https://w3id.org/emmo/domain/battery#battery_4dfa5c98_e185_456b_9f06_89364ac637e5",
"BatteryCell": "https://w3id.org/emmo/domain/battery#battery_68ed592a_7924_45d0_a108_94d6275d57f0",
"BatteryContinuumModel": "https://w3id.org/emmo/domain/battery#battery_b1921f7b_afac_465a_a275_26f929f7f936",
"BatteryCrate": "https://w3id.org/emmo/domain/battery#battery_5029a2e2_3f59_4f28_a6c4_bc6a28e75a66",