-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathtest_generator.json
More file actions
1749 lines (1749 loc) · 424 KB
/
test_generator.json
File metadata and controls
1749 lines (1749 loc) · 424 KB
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
{"stoichiometric_species": ["Ag"], "prototype_label": "A_cF4_225_a", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "845748734030", "version": "000"}
{"stoichiometric_species": ["Ag"], "prototype_label": "A_hP2_194_c", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "402537409435", "version": "000"}
{"stoichiometric_species": ["Ag"], "prototype_label": "A_hP4_194_ac", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "638185261633", "version": "000"}
{"stoichiometric_species": ["Ag", "O"], "prototype_label": "A2B_cP6_224_b_a", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "640063411643", "version": "000"}
{"stoichiometric_species": ["Ag", "O"], "prototype_label": "A2B_hP3_164_d_a", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "763039476345", "version": "000"}
{"stoichiometric_species": ["Ag", "O"], "prototype_label": "A2B3_cP10_224_b_d", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "174855496662", "version": "000"}
{"stoichiometric_species": ["Ag", "O"], "prototype_label": "A2B3_oF40_43_b_ab", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "682621361482", "version": "000"}
{"stoichiometric_species": ["Ag", "O"], "prototype_label": "A3B_hP8_162_k_c", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "327421332390", "version": "000"}
{"stoichiometric_species": ["Ag", "O"], "prototype_label": "A3B4_mP14_14_ae_2e", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "803963905574", "version": "000"}
{"stoichiometric_species": ["Ag", "O"], "prototype_label": "AB_cF8_216_a_c", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "841732434688", "version": "000"}
{"stoichiometric_species": ["Ag", "O"], "prototype_label": "AB_mC8_15_a_e", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "517628589537", "version": "000"}
{"stoichiometric_species": ["Ag", "O"], "prototype_label": "AB_mP8_14_ad_e", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "302368111913", "version": "000"}
{"stoichiometric_species": ["Ag", "O"], "prototype_label": "AB_tI32_88_cd_f", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "291417830308", "version": "000"}
{"stoichiometric_species": ["Ag", "O", "Ta"], "prototype_label": "A2B11C4_hR34_167_c_cef_be", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "353064528743", "version": "000"}
{"stoichiometric_species": ["Ag", "O", "Ta"], "prototype_label": "AB3C_hR10_161_a_b_a", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "580110343936", "version": "000"}
{"stoichiometric_species": ["Ag", "O", "Ta"], "prototype_label": "AB3C_hR10_167_a_e_b", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "089708536877", "version": "000"}
{"stoichiometric_species": ["Ag", "Pt"], "prototype_label": "A3B_cP4_221_c_a", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "004482261953", "version": "000"}
{"stoichiometric_species": ["Ag", "Pt"], "prototype_label": "AB3_cP4_221_a_c", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "243298379056", "version": "000"}
{"stoichiometric_species": ["Ag", "Zr"], "prototype_label": "A2B_tI6_139_e_a", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "620184850262", "version": "000"}
{"stoichiometric_species": ["Ag", "Zr"], "prototype_label": "AB_tP4_129_c_c", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "661411034565", "version": "000"}
{"stoichiometric_species": ["Ag", "Zr"], "prototype_label": "AB2_tI6_139_a_e", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "774095914568", "version": "000"}
{"stoichiometric_species": ["Ag", "Zr"], "prototype_label": "AB3_cP4_221_a_c", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "226139910387", "version": "000"}
{"stoichiometric_species": ["Al"], "prototype_label": "A_cF4_225_a", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "473793429377", "version": "000"}
{"stoichiometric_species": ["Al"], "prototype_label": "A_cI2_229_a", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "548542233352", "version": "000"}
{"stoichiometric_species": ["Al", "Au"], "prototype_label": "A2B_cF12_225_c_a", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "188007076099", "version": "000"}
{"stoichiometric_species": ["Al", "Au"], "prototype_label": "A3B8_hR44_167_bce_2c2f", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "760658235135", "version": "000"}
{"stoichiometric_species": ["Al", "Au"], "prototype_label": "AB_cP2_221_a_b", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "508736477630", "version": "000"}
{"stoichiometric_species": ["Al", "Au"], "prototype_label": "AB_mP8_11_2e_2e", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "916181702609", "version": "000"}
{"stoichiometric_species": ["Al", "Au"], "prototype_label": "AB2_oP12_62_c_2c", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "316789512646", "version": "000"}
{"stoichiometric_species": ["Al", "Au"], "prototype_label": "AB2_oP30_58_a2g_5g", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "670237926358", "version": "000"}
{"stoichiometric_species": ["Al", "Au"], "prototype_label": "AB2_tI6_139_a_e", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "100162964968", "version": "000"}
{"stoichiometric_species": ["Al", "Au"], "prototype_label": "AB4_cP20_198_a_ab", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "695007987076", "version": "000"}
{"stoichiometric_species": ["Al", "C"], "prototype_label": "A4B3_hR7_166_2c_ac", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "440790363679", "version": "000"}
{"stoichiometric_species": ["Al", "C", "Ti"], "prototype_label": "A2B3C5_mC20_12_i_ai_c2i", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "510274291086", "version": "000"}
{"stoichiometric_species": ["Al", "C", "Ti"], "prototype_label": "AB2C3_hP12_194_b_f_af", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "729304812012", "version": "000"}
{"stoichiometric_species": ["Al", "C", "Ti"], "prototype_label": "ABC2_hP8_194_c_a_f", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "222104419369", "version": "000"}
{"stoichiometric_species": ["Al", "C", "Ti"], "prototype_label": "ABC3_cP5_221_a_b_c", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "701423313820", "version": "000"}
{"stoichiometric_species": ["Al", "Ca"], "prototype_label": "A14B13_mC54_12_gh3ij_a2i2j", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "617201802427", "version": "000"}
{"stoichiometric_species": ["Al", "Ca"], "prototype_label": "A2B_cF24_227_c_b", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "181398722097", "version": "000"}
{"stoichiometric_species": ["Al", "Ca"], "prototype_label": "A3B8_aP22_2_be2i_8i", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "820652725717", "version": "000"}
{"stoichiometric_species": ["Al", "Ca"], "prototype_label": "A4B_tI10_139_de_a", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "620028947414", "version": "000"}
{"stoichiometric_species": ["Al", "Ca", "O"], "prototype_label": "A12BC19_hP64_194_ab2fk_c_efh2k", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "947613080541", "version": "000"}
{"stoichiometric_species": ["Al", "Ca", "O"], "prototype_label": "A2B3C6_cP33_221_cd_ag_fh", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "294316581676", "version": "000"}
{"stoichiometric_species": ["Al", "Ca", "O"], "prototype_label": "A2BC4_hP42_173_2c_a2b_4c", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "782526947143", "version": "000"}
{"stoichiometric_species": ["Al", "Ca", "O"], "prototype_label": "A2BC4_mP14_11_2e_e_4e", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "055512446762", "version": "000"}
{"stoichiometric_species": ["Al", "Ca", "O"], "prototype_label": "A2BC4_mP56_14_4e_2e_8e", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "735051790697", "version": "000"}
{"stoichiometric_species": ["Al", "Ca", "O"], "prototype_label": "A4BC7_mC48_15_2f_e_e3f", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "211202242131", "version": "000"}
{"stoichiometric_species": ["Al", "Ca", "O"], "prototype_label": "A6B4C13_cI46_217_d_c_ag", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "268255025333", "version": "000"}
{"stoichiometric_species": ["Al", "Ca", "O"], "prototype_label": "A6B5C14_oC100_36_2a2b_a2b_4a5b", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "756538196405", "version": "000"}
{"stoichiometric_species": ["Al", "Ca", "O"], "prototype_label": "A7B6C16_cI116_220_ac_d_ce", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "993391635723", "version": "000"}
{"stoichiometric_species": ["Al", "Ca", "O", "Si"], "prototype_label": "A12BC27D4_hP44_147_2g_a_bd4g_2d", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "934911487701", "version": "000"}
{"stoichiometric_species": ["Al", "Ca", "O", "Si"], "prototype_label": "A2B2C7D_tP24_113_e_e_cef_a", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "486266650950", "version": "000"}
{"stoichiometric_species": ["Al", "Ca", "O", "Si"], "prototype_label": "A2B3C12D3_cI160_230_a_c_h_d", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "075506331278", "version": "000"}
{"stoichiometric_species": ["Al", "Ca", "O", "Si"], "prototype_label": "A2BC8D2_aP104_2_8i_4i_32i_8i", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "067855966003", "version": "000"}
{"stoichiometric_species": ["Al", "Ca", "Si"], "prototype_label": "A2B3C2_oI14_71_e_af_f", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "291802251601", "version": "000"}
{"stoichiometric_species": ["Al", "Ca", "Si"], "prototype_label": "A2BC2_hP5_164_d_a_d", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "883026397889", "version": "000"}
{"stoichiometric_species": ["Al", "Ca", "Si"], "prototype_label": "ABC_hP15_187_agh_f2i_cgh", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "989698908960", "version": "000"}
{"stoichiometric_species": ["Al", "Ca", "Si"], "prototype_label": "ABC_hP18_186_3b_3a_3b", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "890089156777", "version": "000"}
{"stoichiometric_species": ["Al", "Ca", "Si"], "prototype_label": "ABC_hP3_187_a_d_e", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "610597811505", "version": "000"}
{"stoichiometric_species": ["Al", "Co"], "prototype_label": "A13B4_oP102_31_17a11b_8a2b", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "233121506502", "version": "000"}
{"stoichiometric_species": ["Al", "Co"], "prototype_label": "A5B2_hP28_194_ahk_ch", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "383817086448", "version": "000"}
{"stoichiometric_species": ["Al", "Co"], "prototype_label": "A9B2_mP22_14_a4e_e", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "967611804419", "version": "000"}
{"stoichiometric_species": ["Al", "Co"], "prototype_label": "AB_cP2_221_a_b", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "880811981456", "version": "000"}
{"stoichiometric_species": ["Al", "Co"], "prototype_label": "AB3_cP4_221_a_c", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "589187007166", "version": "000"}
{"stoichiometric_species": ["Al", "Co"], "prototype_label": "AB3_hP8_194_c_h", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "965651168710", "version": "000"}
{"stoichiometric_species": ["Al", "Co", "Cr"], "prototype_label": "AB2C_cF16_225_a_c_b", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "460961236873", "version": "000"}
{"stoichiometric_species": ["Al", "Co", "Fe"], "prototype_label": "AB2C_cF16_225_a_c_b", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "684342181272", "version": "000"}
{"stoichiometric_species": ["Al", "Cr"], "prototype_label": "A45B7_mC104_12_a8i7j_cij", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "676767282023", "version": "000"}
{"stoichiometric_species": ["Al", "Cr"], "prototype_label": "A8B5_hR26_160_a3bc_a3b", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "560390645272", "version": "000"}
{"stoichiometric_species": ["Al", "Cr"], "prototype_label": "AB2_tI6_139_a_e", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "757564918758", "version": "000"}
{"stoichiometric_species": ["Al", "Cr", "Fe"], "prototype_label": "ABC2_cF16_225_a_b_c", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "236834505693", "version": "000"}
{"stoichiometric_species": ["Al", "Cr", "Ni"], "prototype_label": "ABC2_cF16_225_a_b_c", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "580753873825", "version": "000"}
{"stoichiometric_species": ["Al", "Cu"], "prototype_label": "A2B_tI12_140_h_a", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "830663218996", "version": "000"}
{"stoichiometric_species": ["Al", "Cu"], "prototype_label": "A2B_tP3_123_e_a", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "126006648620", "version": "000"}
{"stoichiometric_species": ["Al", "Cu"], "prototype_label": "A3B2_hP5_164_ad_d", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "670275762139", "version": "000"}
{"stoichiometric_species": ["Al", "Cu"], "prototype_label": "A4B9_cP52_215_ei_3efgi", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "733604106706", "version": "000"}
{"stoichiometric_species": ["Al", "Cu"], "prototype_label": "AB_mC20_12_a2i_c2i", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "452911268099", "version": "000"}
{"stoichiometric_species": ["Al", "Cu"], "prototype_label": "AB3_cF16_225_a_bc", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "772683200136", "version": "000"}
{"stoichiometric_species": ["Al", "Cu"], "prototype_label": "AB3_cP4_221_a_c", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "136429553629", "version": "000"}
{"stoichiometric_species": ["Al", "Cu"], "prototype_label": "AB3_oP12_47_al_ejoz", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "595152346080", "version": "000"}
{"stoichiometric_species": ["Al", "Cu", "Fe"], "prototype_label": "A7B2C_tP40_128_egi_h_e", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "845999183223", "version": "000"}
{"stoichiometric_species": ["Al", "Cu", "Mg"], "prototype_label": "A2BC_oC16_63_f_c_c", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "030368000818", "version": "000"}
{"stoichiometric_species": ["Al", "Cu", "Mg"], "prototype_label": "A5B6C2_cP39_200_bfi_ek_g", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "152040303008", "version": "000"}
{"stoichiometric_species": ["Al", "Cu", "Pt"], "prototype_label": "ABC2_tP4_123_a_c_e", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "944113509174", "version": "000"}
{"stoichiometric_species": ["Al", "Fe"], "prototype_label": "A6B_oC28_63_efg_c", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "794932917767", "version": "000"}
{"stoichiometric_species": ["Al", "Fe"], "prototype_label": "A8B5_cI52_217_cg_ce", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "488086327754", "version": "000"}
{"stoichiometric_species": ["Al", "Fe"], "prototype_label": "A9B2_aP22_1_18a_4a", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "070998708242", "version": "000"}
{"stoichiometric_species": ["Al", "Fe"], "prototype_label": "AB_cP2_221_a_b", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "706553464651", "version": "000"}
{"stoichiometric_species": ["Al", "Fe"], "prototype_label": "AB2_cF24_227_a_d", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "052347617269", "version": "000"}
{"stoichiometric_species": ["Al", "Fe"], "prototype_label": "AB3_cF16_225_a_bc", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "105159851741", "version": "000"}
{"stoichiometric_species": ["Al", "Fe", "Mg", "Si"], "prototype_label": "A8BC3D6_hP18_189_agh_b_f_i", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "647016547980", "version": "000"}
{"stoichiometric_species": ["Al", "Fe", "Mg", "Si"], "prototype_label": "A9BC3D5_hP18_189_fi_a_g_bh", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "200002389780", "version": "000"}
{"stoichiometric_species": ["Al", "Fe", "Ni"], "prototype_label": "AB2C_cF16_225_a_c_b", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "589368530863", "version": "000"}
{"stoichiometric_species": ["Al", "Fe", "Si"], "prototype_label": "A2B3C3_aP16_2_2i_3i_3i", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "460654258160", "version": "000"}
{"stoichiometric_species": ["Al", "Fe", "Si"], "prototype_label": "A2B3C4_oC36_63_f_cf_2cf", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "726915849119", "version": "000"}
{"stoichiometric_species": ["Al", "Fe", "Si"], "prototype_label": "A3B2C_cF96_227_f_e_c", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "780191970051", "version": "000"}
{"stoichiometric_species": ["Al", "Fe", "Si"], "prototype_label": "A3BC2_oP24_60_ad_c_d", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "176487223967", "version": "000"}
{"stoichiometric_species": ["Al", "H"], "prototype_label": "AB3_cF64_227_c_f", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "473160284590", "version": "000"}
{"stoichiometric_species": ["Al", "H"], "prototype_label": "AB3_hR8_167_b_e", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "284600929100", "version": "000"}
{"stoichiometric_species": ["Al", "H"], "prototype_label": "AB3_oC48_63_ad_cfgh", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "578715318646", "version": "000"}
{"stoichiometric_species": ["Al", "H"], "prototype_label": "AB3_oP24_58_ag_c2gh", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "907375731303", "version": "000"}
{"stoichiometric_species": ["Al", "Li"], "prototype_label": "A2B3_hR5_166_c_ac", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "376525171190", "version": "000"}
{"stoichiometric_species": ["Al", "Li"], "prototype_label": "A3B_cP4_221_c_a", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "545040220133", "version": "000"}
{"stoichiometric_species": ["Al", "Li"], "prototype_label": "A4B9_mC26_12_2i_a4i", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "906805911414", "version": "000"}
{"stoichiometric_species": ["Al", "Li"], "prototype_label": "AB_cF16_227_a_b", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "318993617885", "version": "000"}
{"stoichiometric_species": ["Al", "Li"], "prototype_label": "AB_hP8_194_bc_f", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "388145415389", "version": "000"}
{"stoichiometric_species": ["Al", "Li"], "prototype_label": "AB_oC48_64_fg_def", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "756697878370", "version": "000"}
{"stoichiometric_species": ["Al", "Li"], "prototype_label": "AB_tI8_141_a_b", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "541694828939", "version": "000"}
{"stoichiometric_species": ["Al", "Mg"], "prototype_label": "A12B17_cI58_217_g_acg", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "132614317250", "version": "000"}
{"stoichiometric_species": ["Al", "Mg"], "prototype_label": "A14B13_cI54_229_ef_ah", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "390542743509", "version": "000"}
{"stoichiometric_species": ["Al", "Mg"], "prototype_label": "A2B_tI24_141_2e_e", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "572458753022", "version": "000"}
{"stoichiometric_species": ["Al", "Mg"], "prototype_label": "A30B23_hR53_148_5f_a2c3f", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "176855571892", "version": "000"}
{"stoichiometric_species": ["Al", "Mg"], "prototype_label": "A67B41_cP108_221_aeh2il_cfgm", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "888513871703", "version": "000"}
{"stoichiometric_species": ["Al", "Mg", "Si"], "prototype_label": "A2BC2_hP5_164_d_a_d", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "873371981958", "version": "000"}
{"stoichiometric_species": ["Al", "Mg", "Si"], "prototype_label": "AB4C6_mC22_12_a_2i_3i", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "574647090643", "version": "000"}
{"stoichiometric_species": ["Al", "Mg", "Si"], "prototype_label": "ABC_oP12_62_c_c_c", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "044779164304", "version": "000"}
{"stoichiometric_species": ["Al", "Mg", "Zn"], "prototype_label": "A4B19C15_oC152_63_h_c3f2g2h_aefg2h", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "987944386082", "version": "000"}
{"stoichiometric_species": ["Al", "Mg", "Zn"], "prototype_label": "A4B2C3_hP18_194_ef_f_h", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "919051613723", "version": "000"}
{"stoichiometric_species": ["Al", "Mn"], "prototype_label": "A10B3_hP26_194_ahk_h", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "561585988233", "version": "000"}
{"stoichiometric_species": ["Al", "Mn"], "prototype_label": "A11B4_aP15_2_a5i_2i", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "143761126156", "version": "000"}
{"stoichiometric_species": ["Al", "Mn"], "prototype_label": "A12B_cI26_204_g_a", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "795319883614", "version": "000"}
{"stoichiometric_species": ["Al", "Mn"], "prototype_label": "A19B4_cP138_200_efh2j2k2l_jk", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "173422872824", "version": "000"}
{"stoichiometric_species": ["Al", "Mn"], "prototype_label": "A6B_oC28_63_efg_c", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "683644951375", "version": "000"}
{"stoichiometric_species": ["Al", "Mn"], "prototype_label": "AB_tP2_123_a_d", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "771218379521", "version": "000"}
{"stoichiometric_species": ["Al", "Mn"], "prototype_label": "AB3_cF16_225_a_bc", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "777829481442", "version": "000"}
{"stoichiometric_species": ["Al", "Mn", "Pd"], "prototype_label": "ABC2_cF16_225_a_b_c", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "111796329295", "version": "000"}
{"stoichiometric_species": ["Al", "N"], "prototype_label": "AB_cF8_216_a_c", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "951496602416", "version": "000"}
{"stoichiometric_species": ["Al", "N"], "prototype_label": "AB_cF8_225_a_b", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "602038421808", "version": "000"}
{"stoichiometric_species": ["Al", "N"], "prototype_label": "AB_hP4_186_b_b", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "636547676462", "version": "000"}
{"stoichiometric_species": ["Al", "N"], "prototype_label": "AB_hP4_194_c_d", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "920067949007", "version": "000"}
{"stoichiometric_species": ["Al", "N"], "prototype_label": "AB_oC8_63_c_c", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "277378122442", "version": "000"}
{"stoichiometric_species": ["Al", "N", "Ti"], "prototype_label": "AB3C4_hP16_194_c_af_ef", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "516651318962", "version": "000"}
{"stoichiometric_species": ["Al", "N", "Ti"], "prototype_label": "ABC2_hP8_194_c_a_f", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "412850433443", "version": "000"}
{"stoichiometric_species": ["Al", "N", "Ti"], "prototype_label": "ABC3_cP5_221_a_b_c", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "819991905510", "version": "000"}
{"stoichiometric_species": ["Al", "Nb"], "prototype_label": "A3B_tI8_139_ad_b", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "807947070083", "version": "000"}
{"stoichiometric_species": ["Al", "Nb"], "prototype_label": "AB2_tP30_136_ai_fij", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "565088243636", "version": "000"}
{"stoichiometric_species": ["Al", "Nb"], "prototype_label": "AB3_cP8_223_a_c", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "443090894785", "version": "000"}
{"stoichiometric_species": ["Al", "Ni"], "prototype_label": "A3B_oP16_62_cd_c", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "149388638667", "version": "000"}
{"stoichiometric_species": ["Al", "Ni"], "prototype_label": "A3B2_hP5_164_ad_d", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "966895341528", "version": "000"}
{"stoichiometric_species": ["Al", "Ni"], "prototype_label": "A3B5_oC16_65_ah_bej", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "866442590497", "version": "000"}
{"stoichiometric_species": ["Al", "Ni"], "prototype_label": "A4B3_cI112_230_af_g", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "546163335109", "version": "000"}
{"stoichiometric_species": ["Al", "Ni"], "prototype_label": "AB_cP2_221_a_b", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "856090214301", "version": "000"}
{"stoichiometric_species": ["Al", "Ni"], "prototype_label": "AB3_cF16_225_a_bc", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "079056225776", "version": "000"}
{"stoichiometric_species": ["Al", "Ni"], "prototype_label": "AB3_cP4_221_a_c", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "047250182071", "version": "000"}
{"stoichiometric_species": ["Al", "Ni"], "prototype_label": "AB3_tP4_123_a_ce", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "520598848641", "version": "000"}
{"stoichiometric_species": ["Al", "Ni", "Ti"], "prototype_label": "A16B7C6_cF116_225_2f_ad_e", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "229557166962", "version": "000"}
{"stoichiometric_species": ["Al", "Ni", "Ti"], "prototype_label": "AB2C_cF16_225_a_c_b", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "382452477250", "version": "000"}
{"stoichiometric_species": ["Al", "Ni", "Ti"], "prototype_label": "ABC2_cF16_216_a_c_bd", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "930176298683", "version": "000"}
{"stoichiometric_species": ["Al", "O"], "prototype_label": "A2B_cF12_225_c_a", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "973164422380", "version": "000"}
{"stoichiometric_species": ["Al", "O"], "prototype_label": "A2B3_hR10_167_c_e", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "658978377548", "version": "000"}
{"stoichiometric_species": ["Al", "O"], "prototype_label": "A2B3_mC10_12_i_ai", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "700309349273", "version": "000"}
{"stoichiometric_species": ["Al", "O"], "prototype_label": "A2B3_mC20_12_2i_3i", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "260659177918", "version": "000"}
{"stoichiometric_species": ["Al", "O"], "prototype_label": "A2B3_oC20_63_ac_cf", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "344547206888", "version": "000"}
{"stoichiometric_species": ["Al", "O"], "prototype_label": "A2B3_oP20_60_d_cd", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "857305429571", "version": "000"}
{"stoichiometric_species": ["Al", "O"], "prototype_label": "A2B3_oP40_33_4a_6a", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "084926724087", "version": "000"}
{"stoichiometric_species": ["Al", "O"], "prototype_label": "AB_cF8_225_a_b", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "908607406723", "version": "000"}
{"stoichiometric_species": ["Al", "O", "Si"], "prototype_label": "A2B5C_aP32_2_4i_10i_2i", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "644188399635", "version": "000"}
{"stoichiometric_species": ["Al", "O", "Si"], "prototype_label": "A2B5C_mC32_15_f_e2f_c", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "736049473473", "version": "000"}
{"stoichiometric_species": ["Al", "O", "Si"], "prototype_label": "A2B5C_oC32_63_f_c2f_c", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "630004985734", "version": "000"}
{"stoichiometric_species": ["Al", "O", "Si"], "prototype_label": "A2B5C_oP32_58_eg_3gh_g", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "565318073224", "version": "000"}
{"stoichiometric_species": ["Al", "Pd"], "prototype_label": "A21B8_tI116_88_a5f_2f", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "647592935993", "version": "000"}
{"stoichiometric_species": ["Al", "Pd"], "prototype_label": "A2B_cF12_225_c_a", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "789263689067", "version": "000"}
{"stoichiometric_species": ["Al", "Pd"], "prototype_label": "A3B2_hP5_164_ad_d", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "445160163021", "version": "000"}
{"stoichiometric_species": ["Al", "Pd"], "prototype_label": "A3B5_oP16_55_ah_cgh", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "626499378669", "version": "000"}
{"stoichiometric_species": ["Al", "Pd"], "prototype_label": "AB_cP2_221_a_b", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "332069339542", "version": "000"}
{"stoichiometric_species": ["Al", "Pd"], "prototype_label": "AB_cP8_198_a_a", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "770202882222", "version": "000"}
{"stoichiometric_species": ["Al", "Pd"], "prototype_label": "AB_hR26_148_a2f_b2f", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "962564783341", "version": "000"}
{"stoichiometric_species": ["Al", "Pd"], "prototype_label": "AB2_oP12_62_c_2c", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "301247181856", "version": "000"}
{"stoichiometric_species": ["Al", "Pd"], "prototype_label": "AB5_oP24_62_c_5c", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "874155861035", "version": "000"}
{"stoichiometric_species": ["Al", "Pt"], "prototype_label": "A21B8_tI116_88_a5f_2f", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "747687271205", "version": "000"}
{"stoichiometric_species": ["Al", "Pt"], "prototype_label": "A2B_cF12_225_c_a", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "963605345231", "version": "000"}
{"stoichiometric_species": ["Al", "Pt"], "prototype_label": "A3B2_hP10_164_abcd_2d", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "649240338403", "version": "000"}
{"stoichiometric_species": ["Al", "Pt"], "prototype_label": "A3B2_hP5_164_ad_d", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "756855783409", "version": "000"}
{"stoichiometric_species": ["Al", "Pt"], "prototype_label": "A3B5_oP16_55_ah_cgh", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "292410468304", "version": "000"}
{"stoichiometric_species": ["Al", "Pt"], "prototype_label": "AB_cP2_221_a_b", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "409168162666", "version": "000"}
{"stoichiometric_species": ["Al", "Pt"], "prototype_label": "AB_cP8_198_a_a", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "723405194233", "version": "000"}
{"stoichiometric_species": ["Al", "Pt"], "prototype_label": "AB2_oP12_62_c_2c", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "432003685042", "version": "000"}
{"stoichiometric_species": ["Al", "Pt"], "prototype_label": "AB2_oP24_51_afj_cf2ij", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "843335785711", "version": "000"}
{"stoichiometric_species": ["Al", "Pt"], "prototype_label": "AB3_cP4_221_a_c", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "525036160822", "version": "000"}
{"stoichiometric_species": ["Al", "Pt"], "prototype_label": "AB3_tP16_127_f_egh", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "078435308389", "version": "000"}
{"stoichiometric_species": ["Al", "Si"], "prototype_label": "A4B19_aP46_1_8a_38a", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "382756203557", "version": "000"}
{"stoichiometric_species": ["Al", "Sm"], "prototype_label": "A2B_cF24_227_c_b", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "273445919506", "version": "000"}
{"stoichiometric_species": ["Al", "Sm"], "prototype_label": "A4B_oI20_74_aeh_e", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "996060312655", "version": "000"}
{"stoichiometric_species": ["Al", "Sm"], "prototype_label": "A4B_tI10_139_de_a", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "728291161359", "version": "000"}
{"stoichiometric_species": ["Al", "Sm"], "prototype_label": "AB_cP2_221_a_b", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "946019647034", "version": "000"}
{"stoichiometric_species": ["Al", "Sm"], "prototype_label": "AB_oP16_57_cd_2d", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "551545870340", "version": "000"}
{"stoichiometric_species": ["Al", "Sm"], "prototype_label": "AB3_cP4_221_a_c", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "490601721913", "version": "000"}
{"stoichiometric_species": ["Al", "Ti"], "prototype_label": "A2B_oC12_65_acg_h", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "893447754614", "version": "000"}
{"stoichiometric_species": ["Al", "Ti"], "prototype_label": "A2B_tI24_141_2e_e", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "237565392959", "version": "000"}
{"stoichiometric_species": ["Al", "Ti"], "prototype_label": "A3B_cP4_221_c_a", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "177123483975", "version": "000"}
{"stoichiometric_species": ["Al", "Ti"], "prototype_label": "A3B_tI8_139_ad_b", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "652363026895", "version": "000"}
{"stoichiometric_species": ["Al", "Ti"], "prototype_label": "AB_tP2_123_a_d", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "566003517747", "version": "000"}
{"stoichiometric_species": ["Al", "Ti"], "prototype_label": "AB2_cF12_216_a_bc", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "913040752321", "version": "000"}
{"stoichiometric_species": ["Al", "Ti"], "prototype_label": "AB3_cF16_225_a_bc", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "977721001120", "version": "000"}
{"stoichiometric_species": ["Al", "Ti"], "prototype_label": "AB3_hP8_194_c_h", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "120217182567", "version": "000"}
{"stoichiometric_species": ["Al", "U"], "prototype_label": "A2B_cF24_227_c_b", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "136269339532", "version": "000"}
{"stoichiometric_species": ["Al", "U"], "prototype_label": "A2B_hP24_194_fgh_ef", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "380525905569", "version": "000"}
{"stoichiometric_species": ["Al", "U"], "prototype_label": "A3B_cP4_221_c_a", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "085255783159", "version": "000"}
{"stoichiometric_species": ["Al", "U"], "prototype_label": "A4B_oI20_74_aeh_e", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "751498693996", "version": "000"}
{"stoichiometric_species": ["Al", "V"], "prototype_label": "A10B_cF176_227_cfg_d", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "761769364938", "version": "000"}
{"stoichiometric_species": ["Al", "V"], "prototype_label": "A23B4_hP54_194_fh3k_ah", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "273273644263", "version": "000"}
{"stoichiometric_species": ["Al", "V"], "prototype_label": "A3B_cP4_221_c_a", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "459181778262", "version": "000"}
{"stoichiometric_species": ["Al", "V"], "prototype_label": "A3B_tI8_139_ad_b", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "271979277413", "version": "000"}
{"stoichiometric_species": ["Al", "V"], "prototype_label": "A45B7_mC104_12_a8i7j_cij", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "036182918614", "version": "000"}
{"stoichiometric_species": ["Al", "V"], "prototype_label": "AB3_cP8_223_a_c", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "501761506438", "version": "000"}
{"stoichiometric_species": ["Ar"], "prototype_label": "A_cF4_225_a", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "809825267609", "version": "000"}
{"stoichiometric_species": ["Ar"], "prototype_label": "A_hP2_194_c", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "993725078604", "version": "000"}
{"stoichiometric_species": ["As"], "prototype_label": "A_cP1_221_a", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "495597299090", "version": "000"}
{"stoichiometric_species": ["As"], "prototype_label": "A_hR2_166_c", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "216302030429", "version": "000"}
{"stoichiometric_species": ["As"], "prototype_label": "A_oC8_64_f", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "312973057921", "version": "000"}
{"stoichiometric_species": ["As"], "prototype_label": "A_tI4_139_e", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "218386249353", "version": "000"}
{"stoichiometric_species": ["As", "Ga"], "prototype_label": "AB_cF8_216_a_c", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "760136328299", "version": "000"}
{"stoichiometric_species": ["As", "Ga"], "prototype_label": "AB_cP16_205_c_c", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "840628061200", "version": "000"}
{"stoichiometric_species": ["As", "Ga"], "prototype_label": "AB_hP4_186_b_b", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "974768764221", "version": "000"}
{"stoichiometric_species": ["As", "Ga"], "prototype_label": "AB_oI4_44_a_b", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "329367079811", "version": "000"}
{"stoichiometric_species": ["As", "Ga"], "prototype_label": "AB_oP2_25_a_b", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "527720307443", "version": "000"}
{"stoichiometric_species": ["Au"], "prototype_label": "A_cF4_225_a", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "261672361410", "version": "000"}
{"stoichiometric_species": ["Au", "Cd"], "prototype_label": "A3B_cP4_221_c_a", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "623236126170", "version": "000"}
{"stoichiometric_species": ["Au", "Cd"], "prototype_label": "A3B5_tI32_140_ah_bk", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "176973482024", "version": "000"}
{"stoichiometric_species": ["Au", "Cd"], "prototype_label": "A5B8_cI52_217_ce_cg", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "100602529158", "version": "000"}
{"stoichiometric_species": ["Au", "Cd"], "prototype_label": "AB_cP2_221_a_b", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "438480613521", "version": "000"}
{"stoichiometric_species": ["Au", "Cd"], "prototype_label": "AB_hP18_157_ab2c_ab2c", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "209628809982", "version": "000"}
{"stoichiometric_species": ["Au", "Cd"], "prototype_label": "AB_oP4_51_e_f", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "087504029560", "version": "000"}
{"stoichiometric_species": ["Au", "Cd"], "prototype_label": "AB3_hP24_185_c_ab2c", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "746625363878", "version": "000"}
{"stoichiometric_species": ["Au", "Cu"], "prototype_label": "A3B_cP4_221_c_a", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "593384440156", "version": "000"}
{"stoichiometric_species": ["Au", "Cu"], "prototype_label": "AB_oI40_74_5e_5e", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "703859995346", "version": "000"}
{"stoichiometric_species": ["Au", "Cu"], "prototype_label": "AB_tP2_123_a_d", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "006941690774", "version": "000"}
{"stoichiometric_species": ["Au", "Cu"], "prototype_label": "AB3_cP4_221_a_c", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "479349173701", "version": "000"}
{"stoichiometric_species": ["Au", "O"], "prototype_label": "A2B3_oF40_43_b_ab", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "978886226120", "version": "000"}
{"stoichiometric_species": ["Au", "Pd"], "prototype_label": "A3B_cP4_221_c_a", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "420280639619", "version": "000"}
{"stoichiometric_species": ["Au", "Pd"], "prototype_label": "AB3_cP4_221_a_c", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "548131827680", "version": "000"}
{"stoichiometric_species": ["B"], "prototype_label": "A_hR105_166_ac9h4i", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "281952812781", "version": "000"}
{"stoichiometric_species": ["B"], "prototype_label": "A_hR12_166_2h", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "397982409305", "version": "000"}
{"stoichiometric_species": ["B"], "prototype_label": "A_hR15_166_ac2h", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "867989580071", "version": "000"}
{"stoichiometric_species": ["B"], "prototype_label": "A_oP28_58_3g2h", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "534689458822", "version": "000"}
{"stoichiometric_species": ["B"], "prototype_label": "A_tP48_134_2m2n", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "080931342108", "version": "000"}
{"stoichiometric_species": ["B"], "prototype_label": "A_tP50_134_a2m2n", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "848940252286", "version": "000"}
{"stoichiometric_species": ["B", "C"], "prototype_label": "A13B2_hR15_166_a2h_c", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "232917352992", "version": "000"}
{"stoichiometric_species": ["B", "C"], "prototype_label": "A4B_hR15_166_2h_ac", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "368542493884", "version": "000"}
{"stoichiometric_species": ["B", "C"], "prototype_label": "AB5_aP12_2_i_5i", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "025692333517", "version": "000"}
{"stoichiometric_species": ["B", "C"], "prototype_label": "AB5_hP6_156_a_a2b2c", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "019297619171", "version": "000"}
{"stoichiometric_species": ["B", "C"], "prototype_label": "AB5_oI12_44_a_b2c", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "049237794340", "version": "000"}
{"stoichiometric_species": ["B", "C"], "prototype_label": "AB5_tI24_141_a_b2e", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "172565001241", "version": "000"}
{"stoichiometric_species": ["B", "C"], "prototype_label": "AB7_cP8_215_a_ce", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "510692401452", "version": "000"}
{"stoichiometric_species": ["B", "C"], "prototype_label": "AB7_hP8_156_b_4ab2c", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "281956735636", "version": "000"}
{"stoichiometric_species": ["B", "C"], "prototype_label": "AB7_hR8_160_a_7a", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "729983952091", "version": "000"}
{"stoichiometric_species": ["B", "C"], "prototype_label": "AB7_oP8_25_a_bcdef", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "779179111402", "version": "000"}
{"stoichiometric_species": ["B", "C"], "prototype_label": "AB7_tP8_115_b_ce2g", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "867334340108", "version": "000"}
{"stoichiometric_species": ["B", "C", "N"], "prototype_label": "A2BC_hP4_156_ab_a_b", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "096599883432", "version": "000"}
{"stoichiometric_species": ["B", "C", "N"], "prototype_label": "A2BC_hR4_160_2a_a_a", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "154387282699", "version": "000"}
{"stoichiometric_species": ["B", "C", "N"], "prototype_label": "A2BC_oP8_25_2abd_cd_bc", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "619419540001", "version": "000"}
{"stoichiometric_species": ["B", "C", "N"], "prototype_label": "A2BC_oP8_51_ef_e_f", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "578443013625", "version": "000"}
{"stoichiometric_species": ["B", "C", "N"], "prototype_label": "A2BC_tP4_115_g_a_c", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "335189947304", "version": "000"}
{"stoichiometric_species": ["B", "C", "N"], "prototype_label": "A3B10C3_oP32_51_2ef_e3f3k_ek", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "609710263908", "version": "000"}
{"stoichiometric_species": ["B", "C", "N"], "prototype_label": "AB2C_oP4_25_a_bd_c", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "318697296135", "version": "000"}
{"stoichiometric_species": ["B", "C", "N"], "prototype_label": "AB2C_oP8_17_a_bd_c", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "194493148067", "version": "000"}
{"stoichiometric_species": ["B", "H"], "prototype_label": "A2B5_mP56_14_4e_10e", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "841450803757", "version": "000"}
{"stoichiometric_species": ["B", "H"], "prototype_label": "A3B5_oC64_36_2a2b_2a4b", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "434180691715", "version": "000"}
{"stoichiometric_species": ["B", "H"], "prototype_label": "A5B9_tI28_107_ad_acd", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "501426858047", "version": "000"}
{"stoichiometric_species": ["B", "H"], "prototype_label": "AB3_aP16_2_2i_6i", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "091300488457", "version": "000"}
{"stoichiometric_species": ["B", "H"], "prototype_label": "AB3_mP16_14_e_3e", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "838477203651", "version": "000"}
{"stoichiometric_species": ["B", "H", "N"], "prototype_label": "A2B8C_oP88_19_4a_16a_2a", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "258470829371", "version": "000"}
{"stoichiometric_species": ["B", "H", "N"], "prototype_label": "A3B12C_oC64_63_cf_2f2gh_c", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "057278669738", "version": "000"}
{"stoichiometric_species": ["B", "H", "N"], "prototype_label": "A6B10C_cF136_202_h_fh_c", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "787943033412", "version": "000"}
{"stoichiometric_species": ["B", "H", "N"], "prototype_label": "AB2C_tP48_96_ab_2a2b_ab", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "926399227512", "version": "000"}
{"stoichiometric_species": ["B", "H", "N"], "prototype_label": "AB6C_mP16_4_a_6a_a", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "916385708436", "version": "000"}
{"stoichiometric_species": ["B", "H", "N"], "prototype_label": "AB6C_mP32_4_2a_12a_2a", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "366106688552", "version": "000"}
{"stoichiometric_species": ["B", "H", "N"], "prototype_label": "AB6C_oC32_36_a_2a2b_a", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "832724393379", "version": "000"}
{"stoichiometric_species": ["B", "H", "N"], "prototype_label": "AB6C_oP16_31_a_2a2b_a", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "304972256003", "version": "000"}
{"stoichiometric_species": ["B", "H", "N"], "prototype_label": "AB6C_oP32_62_c_2c2d_c", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "104007313228", "version": "000"}
{"stoichiometric_species": ["B", "H", "N"], "prototype_label": "AB8C_oP20_28_c_2c3d_a", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "391453750374", "version": "000"}
{"stoichiometric_species": ["B", "H", "N", "O"], "prototype_label": "A5B12CD12_oC120_41_a2b_6b_a_6b", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "219820214920", "version": "000"}
{"stoichiometric_species": ["B", "H", "O"], "prototype_label": "AB3C3_aP28_2_2i_6i_6i", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "564366838673", "version": "000"}
{"stoichiometric_species": ["B", "H", "O"], "prototype_label": "AB3C3_hP42_145_2a_6a_6a", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "227841841203", "version": "000"}
{"stoichiometric_species": ["B", "H", "O"], "prototype_label": "ABC2_cP96_218_i_i_2i", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "426860540172", "version": "000"}
{"stoichiometric_species": ["B", "H", "O"], "prototype_label": "ABC2_mP48_14_3e_3e_6e", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "816784946920", "version": "000"}
{"stoichiometric_species": ["B", "Hf"], "prototype_label": "A12B_cF52_225_h_b", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "784230193707", "version": "000"}
{"stoichiometric_species": ["B", "Hf"], "prototype_label": "A2B_hP3_191_c_b", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "941838133612", "version": "000"}
{"stoichiometric_species": ["B", "Hf"], "prototype_label": "AB_cF8_225_a_b", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "675411739090", "version": "000"}
{"stoichiometric_species": ["B", "N"], "prototype_label": "A13B2_hR15_166_a2h_c", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "459757906259", "version": "000"}
{"stoichiometric_species": ["B", "N"], "prototype_label": "AB_cF8_216_a_c", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "440964624428", "version": "000"}
{"stoichiometric_species": ["B", "N"], "prototype_label": "AB_hP4_186_b_b", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "786643642991", "version": "000"}
{"stoichiometric_species": ["B", "N"], "prototype_label": "AB_hP4_187_ad_be", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "102735324145", "version": "000"}
{"stoichiometric_species": ["B", "N"], "prototype_label": "AB_hP4_194_b_c", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "575478147326", "version": "000"}
{"stoichiometric_species": ["B", "N"], "prototype_label": "AB_hP4_194_c_d", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "807202626656", "version": "000"}
{"stoichiometric_species": ["B", "N"], "prototype_label": "AB_hP4_194_c_b", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "771174489854", "version": "000"}
{"stoichiometric_species": ["B", "N"], "prototype_label": "AB_hR2_160_a_a", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "045730715095", "version": "000"}
{"stoichiometric_species": ["B", "N"], "prototype_label": "AB_mC16_8_4a_4a", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "621455297590", "version": "000"}
{"stoichiometric_species": ["B", "N"], "prototype_label": "AB_mC16_9_2a_2a", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "244626369677", "version": "000"}
{"stoichiometric_species": ["B", "N"], "prototype_label": "AB_oF32_70_e_f", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "344444603186", "version": "000"}
{"stoichiometric_species": ["B", "N"], "prototype_label": "AB_oP8_62_c_c", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "214395568665", "version": "000"}
{"stoichiometric_species": ["B", "N"], "prototype_label": "AB_tP8_131_j_l", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "215677771158", "version": "000"}
{"stoichiometric_species": ["B", "O"], "prototype_label": "A2B_mC12_12_2i_i", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "216692152654", "version": "000"}
{"stoichiometric_species": ["B", "O"], "prototype_label": "A2B3_hP15_144_2a_3a", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "604142331989", "version": "000"}
{"stoichiometric_species": ["B", "O"], "prototype_label": "A2B3_hP15_152_c_ac", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "054560301849", "version": "000"}
{"stoichiometric_species": ["B", "O"], "prototype_label": "A6B_hR14_166_2h_c", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "645957448878", "version": "000"}
{"stoichiometric_species": ["B", "Zr"], "prototype_label": "A12B_cF52_225_h_b", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "362508751320", "version": "000"}
{"stoichiometric_species": ["B", "Zr"], "prototype_label": "A2B_hP3_191_c_b", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "183902481767", "version": "000"}
{"stoichiometric_species": ["B", "Zr"], "prototype_label": "AB_cF8_225_a_b", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "810932674795", "version": "000"}
{"stoichiometric_species": ["Ba"], "prototype_label": "A_cF4_225_a", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "787557717320", "version": "000"}
{"stoichiometric_species": ["Ba"], "prototype_label": "A_cI2_229_a", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "729477589129", "version": "000"}
{"stoichiometric_species": ["Ba"], "prototype_label": "A_cP1_221_a", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "427170265340", "version": "000"}
{"stoichiometric_species": ["Ba"], "prototype_label": "A_hP1_191_a", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "737028738111", "version": "000"}
{"stoichiometric_species": ["Ba"], "prototype_label": "A_hP2_194_c", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "614974213445", "version": "000"}
{"stoichiometric_species": ["Ba"], "prototype_label": "A_oC4_63_c", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "276265547321", "version": "000"}
{"stoichiometric_species": ["Ba"], "prototype_label": "A_tI8_140_h", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "183665872938", "version": "000"}
{"stoichiometric_species": ["Be"], "prototype_label": "A_cI2_229_a", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "086955043597", "version": "000"}
{"stoichiometric_species": ["Be"], "prototype_label": "A_hP2_194_c", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "517220245948", "version": "000"}
{"stoichiometric_species": ["Be", "O"], "prototype_label": "AB_cF8_216_a_c", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "573661906041", "version": "000"}
{"stoichiometric_species": ["Be", "O"], "prototype_label": "AB_cF8_225_a_b", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "678321491569", "version": "000"}
{"stoichiometric_species": ["Be", "O"], "prototype_label": "AB_hP4_186_b_b", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "186644830133", "version": "000"}
{"stoichiometric_species": ["Be", "O"], "prototype_label": "AB_tP8_136_f_g", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "838119914540", "version": "000"}
{"stoichiometric_species": ["Bi"], "prototype_label": "A_cI2_229_a", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "682869131933", "version": "000"}
{"stoichiometric_species": ["Bi"], "prototype_label": "A_cP1_221_a", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "516210320280", "version": "000"}
{"stoichiometric_species": ["Bi"], "prototype_label": "A_hR2_166_c", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "758289562776", "version": "000"}
{"stoichiometric_species": ["Bi"], "prototype_label": "A_mC4_12_i", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "627696109750", "version": "000"}
{"stoichiometric_species": ["Bi"], "prototype_label": "A_mP2_10_m", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "360529204756", "version": "000"}
{"stoichiometric_species": ["Bi"], "prototype_label": "A_mP4_11_2e", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "792367242892", "version": "000"}
{"stoichiometric_species": ["Bi"], "prototype_label": "A_mP8_14_2e", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "885864142901", "version": "000"}
{"stoichiometric_species": ["Bi"], "prototype_label": "A_oC16_64_df", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "778213482610", "version": "000"}
{"stoichiometric_species": ["Bi"], "prototype_label": "A_tI2_139_a", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "672395723647", "version": "000"}
{"stoichiometric_species": ["Bi"], "prototype_label": "A_tI8_140_h", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "508335974888", "version": "000"}
{"stoichiometric_species": ["Br"], "prototype_label": "A_cF4_225_a", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "478152592036", "version": "000"}
{"stoichiometric_species": ["Br"], "prototype_label": "A_oC8_64_f", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "505602845665", "version": "000"}
{"stoichiometric_species": ["Br"], "prototype_label": "A_oI2_71_a", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "747434381948", "version": "000"}
{"stoichiometric_species": ["Br"], "prototype_label": "A_tI2_139_a", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "218565801269", "version": "000"}
{"stoichiometric_species": ["Br", "Cl"], "prototype_label": "AB_oC8_36_a_a", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "495562973776", "version": "000"}
{"stoichiometric_species": ["Br", "Cs"], "prototype_label": "AB_cF8_225_a_b", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "007017347980", "version": "000"}
{"stoichiometric_species": ["Br", "Cs"], "prototype_label": "AB_cP2_221_a_b", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "285134620052", "version": "000"}
{"stoichiometric_species": ["Br", "Cs", "F"], "prototype_label": "A2BC_tP4_123_g_c_a", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "605869443423", "version": "000"}
{"stoichiometric_species": ["Br", "Cs", "F"], "prototype_label": "ABC_tI12_139_e_e_e", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "957120153277", "version": "000"}
{"stoichiometric_species": ["Br", "Cs", "F"], "prototype_label": "ABC6_hR8_148_a_b_f", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "539456426591", "version": "000"}
{"stoichiometric_species": ["Br", "Cs", "Li"], "prototype_label": "A3BC2_oI12_71_af_b_e", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "395675953628", "version": "000"}
{"stoichiometric_species": ["Br", "Cs", "Li"], "prototype_label": "A4B3C_oC32_20_2ac_bc_b", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "101614858909", "version": "000"}
{"stoichiometric_species": ["Br", "F"], "prototype_label": "AB3_oC16_36_a_3a", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "728544037923", "version": "000"}
{"stoichiometric_species": ["Br", "F"], "prototype_label": "AB5_oC24_36_a_3ab", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "980226100531", "version": "000"}
{"stoichiometric_species": ["Br", "F", "K"], "prototype_label": "AB4C_tI24_140_b_l_c", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "795102988443", "version": "000"}
{"stoichiometric_species": ["Br", "F", "K"], "prototype_label": "AB4C_tI24_140_d_l_a", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "692652777022", "version": "000"}
{"stoichiometric_species": ["Br", "F", "Rb"], "prototype_label": "AB4C_tI24_140_d_l_c", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "926098713126", "version": "000"}
{"stoichiometric_species": ["Br", "K"], "prototype_label": "AB_cF8_225_a_b", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "352001605750", "version": "000"}
{"stoichiometric_species": ["Br", "K"], "prototype_label": "AB_cP2_221_a_b", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "877073185786", "version": "000"}
{"stoichiometric_species": ["Br", "Li"], "prototype_label": "AB_cF8_225_a_b", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "228148384058", "version": "000"}
{"stoichiometric_species": ["Br", "Na"], "prototype_label": "AB_cF8_225_a_b", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "811919462171", "version": "000"}
{"stoichiometric_species": ["Br", "Rb"], "prototype_label": "AB_cF8_225_a_b", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "671285389503", "version": "000"}
{"stoichiometric_species": ["Br", "Rb"], "prototype_label": "AB_cP2_221_a_b", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "315908972097", "version": "000"}
{"stoichiometric_species": ["C"], "prototype_label": "A_cF16_227_c", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "771768694773", "version": "000"}
{"stoichiometric_species": ["C"], "prototype_label": "A_cF240_202_h2i", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "917250642876", "version": "000"}
{"stoichiometric_species": ["C"], "prototype_label": "A_cF8_227_a", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "973717057660", "version": "000"}
{"stoichiometric_species": ["C"], "prototype_label": "A_cI16_206_c", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "257496143275", "version": "000"}
{"stoichiometric_species": ["C"], "prototype_label": "A_cI16_229_f", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "876082854023", "version": "000"}
{"stoichiometric_species": ["C"], "prototype_label": "A_cI8_214_a", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "921384765985", "version": "000"}
{"stoichiometric_species": ["C"], "prototype_label": "A_cP1_221_a", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "947898790084", "version": "000"}
{"stoichiometric_species": ["C"], "prototype_label": "A_cP20_221_gj", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "324434234632", "version": "000"}
{"stoichiometric_species": ["C"], "prototype_label": "A_hP12_194_bc2f", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "751326785102", "version": "000"}
{"stoichiometric_species": ["C"], "prototype_label": "A_hP12_194_e2f", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "954985080003", "version": "000"}
{"stoichiometric_species": ["C"], "prototype_label": "A_hP16_194_e3f", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "189060033912", "version": "000"}
{"stoichiometric_species": ["C"], "prototype_label": "A_hP2_191_c", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "766930982576", "version": "000"}
{"stoichiometric_species": ["C"], "prototype_label": "A_hP4_194_bc", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "021692929811", "version": "000"}
{"stoichiometric_species": ["C"], "prototype_label": "A_hP4_194_f", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "232142961727", "version": "000"}
{"stoichiometric_species": ["C"], "prototype_label": "A_hP8_194_ef", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "551511473870", "version": "000"}
{"stoichiometric_species": ["C"], "prototype_label": "A_hR10_166_5c", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "238763663648", "version": "000"}
{"stoichiometric_species": ["C"], "prototype_label": "A_hR14_166_7c", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "451796421784", "version": "000"}
{"stoichiometric_species": ["C"], "prototype_label": "A_hR2_166_c", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "683634328696", "version": "000"}
{"stoichiometric_species": ["C"], "prototype_label": "A_hR4_166_2c", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "997361970043", "version": "000"}
{"stoichiometric_species": ["C"], "prototype_label": "A_hR60_166_2h4i", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "319993784212", "version": "000"}
{"stoichiometric_species": ["C"], "prototype_label": "A_mC16_12_4i", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "804059181832", "version": "000"}
{"stoichiometric_species": ["C"], "prototype_label": "A_oC16_65_mn", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "827453384052", "version": "000"}
{"stoichiometric_species": ["C"], "prototype_label": "A_oC16_65_pq", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "695214623565", "version": "000"}
{"stoichiometric_species": ["C"], "prototype_label": "A_oC8_65_gh", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "778380796439", "version": "000"}
{"stoichiometric_species": ["C"], "prototype_label": "A_oC8_67_m", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "139987462044", "version": "000"}
{"stoichiometric_species": ["C"], "prototype_label": "A_oI120_71_lmn6o", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "300603968313", "version": "000"}
{"stoichiometric_species": ["C"], "prototype_label": "A_oP16_62_4c", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "205316178513", "version": "000"}
{"stoichiometric_species": ["C"], "prototype_label": "A_tI8_139_h", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "829128411805", "version": "000"}
{"stoichiometric_species": ["C", "F"], "prototype_label": "A11B7_mC72_12_5i3j_i3j", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "246693858124", "version": "000"}
{"stoichiometric_species": ["C", "F"], "prototype_label": "AB2_aP18_2_3i_6i", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "622590533398", "version": "000"}
{"stoichiometric_species": ["C", "F"], "prototype_label": "AB4_mC20_15_e_2f", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "644852711332", "version": "000"}
{"stoichiometric_species": ["C", "Fe"], "prototype_label": "A2B5_aP28_2_4i_10i", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "761733891963", "version": "000"}
{"stoichiometric_species": ["C", "Fe"], "prototype_label": "A2B5_mC28_15_f_e2f", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "210046850609", "version": "000"}
{"stoichiometric_species": ["C", "Fe"], "prototype_label": "A3B7_hP20_186_c_b2c", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "802065026431", "version": "000"}
{"stoichiometric_species": ["C", "Fe"], "prototype_label": "A6B23_cF116_225_e_acfh", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "194077558456", "version": "000"}
{"stoichiometric_species": ["C", "Fe"], "prototype_label": "AB2_hP3_191_a_c", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "037707217843", "version": "000"}
{"stoichiometric_species": ["C", "Fe"], "prototype_label": "AB2_oP12_62_c_2c", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "227144881784", "version": "000"}
{"stoichiometric_species": ["C", "Fe"], "prototype_label": "AB2_oP6_58_a_g", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "137300419546", "version": "000"}
{"stoichiometric_species": ["C", "Fe"], "prototype_label": "AB3_hP8_182_c_g", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "724620251276", "version": "000"}
{"stoichiometric_species": ["C", "Fe"], "prototype_label": "AB3_oP16_62_c_cd", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "329555851992", "version": "000"}
{"stoichiometric_species": ["C", "Fe"], "prototype_label": "AB3_tI32_82_g_3g", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "980512993172", "version": "000"}
{"stoichiometric_species": ["C", "Fe"], "prototype_label": "AB4_cP5_215_a_e", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "224340125285", "version": "000"}
{"stoichiometric_species": ["C", "Fe"], "prototype_label": "AB4_mP10_11_e_4e", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "177812695940", "version": "000"}
{"stoichiometric_species": ["C", "Fe"], "prototype_label": "AB4_tI10_87_a_h", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "095020391318", "version": "000"}
{"stoichiometric_species": ["C", "H"], "prototype_label": "A19B34_mP106_4_19a_34a", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "370953775559", "version": "000"}
{"stoichiometric_species": ["C", "H"], "prototype_label": "AB_cI16_199_a_a", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "312086887011", "version": "000"}
{"stoichiometric_species": ["C", "H", "N"], "prototype_label": "A2BC3_oC24_36_b_a_ab", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "722501253487", "version": "000"}
{"stoichiometric_species": ["C", "H", "N"], "prototype_label": "AB2C2_mP40_14_2e_4e_4e", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "602070193107", "version": "000"}
{"stoichiometric_species": ["C", "H", "N"], "prototype_label": "AB2C2_oP40_61_c_2c_2c", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "750392183976", "version": "000"}
{"stoichiometric_species": ["C", "H", "N"], "prototype_label": "AB5C3_oP36_19_a_5a_3a", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "584975099552", "version": "000"}
{"stoichiometric_species": ["C", "H", "N"], "prototype_label": "AB8C6_mP60_14_e_8e_6e", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "569492303773", "version": "000"}
{"stoichiometric_species": ["C", "H", "N"], "prototype_label": "AB9C9_aP38_2_i_9i_9i", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "021747584170", "version": "000"}
{"stoichiometric_species": ["C", "H", "N"], "prototype_label": "ABC_cP12_198_a_a_a", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "894797146918", "version": "000"}
{"stoichiometric_species": ["C", "H", "N"], "prototype_label": "ABC_mP48_14_4e_4e_4e", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "084256079937", "version": "000"}
{"stoichiometric_species": ["C", "H", "N"], "prototype_label": "ABC_oI6_44_a_a_a", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "614612352831", "version": "000"}
{"stoichiometric_species": ["C", "H", "N"], "prototype_label": "ABC_tI6_107_a_a_a", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "420844646818", "version": "000"}
{"stoichiometric_species": ["C", "H", "N", "O"], "prototype_label": "A2B10C2D5_oP38_18_c_5c_c_a2c", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "660081459368", "version": "000"}
{"stoichiometric_species": ["C", "H", "N", "O"], "prototype_label": "A2B12C14D_mP58_13_g_6g_7g_e", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "627783313848", "version": "000"}
{"stoichiometric_species": ["C", "H", "N", "O"], "prototype_label": "A2B2C2D_oP28_62_2c_2c_2c_c", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "137737212107", "version": "000"}
{"stoichiometric_species": ["C", "H", "N", "O"], "prototype_label": "A2B4CD2_mC36_12_2i_2j_g_j", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "335712824562", "version": "000"}
{"stoichiometric_species": ["C", "H", "N", "O"], "prototype_label": "A2B5CD_hR54_161_2b_5b_b_b", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "205377060407", "version": "000"}
{"stoichiometric_species": ["C", "H", "N", "O"], "prototype_label": "A2B5CD4_mP48_14_2e_5e_e_4e", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "960146026678", "version": "000"}
{"stoichiometric_species": ["C", "H", "N", "O"], "prototype_label": "A2B6C4D_mP52_14_2e_6e_4e_e", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "563532336573", "version": "000"}
{"stoichiometric_species": ["C", "H", "N", "O"], "prototype_label": "A2B6CD_oP40_59_ef_ef2g_ab_e", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "327323991745", "version": "000"}
{"stoichiometric_species": ["C", "H", "N", "O"], "prototype_label": "A2B7C7D6_aP44_2_2i_7i_7i_6i", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "695491454881", "version": "000"}
{"stoichiometric_species": ["C", "H", "N", "O"], "prototype_label": "A2B8C2D3_oP60_33_2a_8a_2a_3a", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "046337443095", "version": "000"}
{"stoichiometric_species": ["C", "H", "N", "O"], "prototype_label": "A2B8C6D3_mP76_14_2e_8e_6e_3e", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "241960687388", "version": "000"}
{"stoichiometric_species": ["C", "H", "N", "O"], "prototype_label": "A2B8C6D7_mC92_15_2e_4f_2e2f_e3f", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "482155339346", "version": "000"}
{"stoichiometric_species": ["C", "H", "N", "O"], "prototype_label": "A2B9C11D8_mC120_15_f_e4f_e5f_4f", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "957282825654", "version": "000"}
{"stoichiometric_species": ["C", "H", "N", "O"], "prototype_label": "A2B9C3D3_oP68_33_2a_9a_3a_3a", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "430859543393", "version": "000"}
{"stoichiometric_species": ["C", "H", "N", "O"], "prototype_label": "A2B9C7D6_oP96_29_2a_9a_7a_6a", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "260098247401", "version": "000"}
{"stoichiometric_species": ["C", "H", "N", "O"], "prototype_label": "A2B9C9D6_aP52_2_2i_9i_9i_6i", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "544320540153", "version": "000"}
{"stoichiometric_species": ["C", "H", "N", "O"], "prototype_label": "A3B20C4D10_oF148_42_ac_2c4e_e_2a4c", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "564474528125", "version": "000"}
{"stoichiometric_species": ["C", "H", "N", "O"], "prototype_label": "A3B5C5D_mP56_14_3e_5e_5e_e", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "720015788481", "version": "000"}
{"stoichiometric_species": ["C", "H", "N", "O"], "prototype_label": "A3B6C2D2_mP52_14_3e_6e_2e_2e", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "022344727818", "version": "000"}
{"stoichiometric_species": ["C", "H", "N", "O"], "prototype_label": "A3B6C4D3_mC128_15_3f_6f_4f_3f", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "570196864956", "version": "000"}
{"stoichiometric_species": ["C", "H", "N", "O"], "prototype_label": "A3B7C3D5_mC72_15_ef_e3f_ef_e2f", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "824984333183", "version": "000"}
{"stoichiometric_species": ["C", "H", "N", "O"], "prototype_label": "A3B8C2D_aP56_2_6i_16i_4i_2i", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "443243859072", "version": "000"}
{"stoichiometric_species": ["C", "H", "N", "O"], "prototype_label": "A3B8C3D3_mP68_14_3e_8e_3e_3e", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "470452103157", "version": "000"}
{"stoichiometric_species": ["C", "H", "N", "O"], "prototype_label": "A3B9C3D2_oP68_19_3a_9a_3a_2a", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "044250729022", "version": "000"}
{"stoichiometric_species": ["C", "H", "N", "O"], "prototype_label": "A4B11CD10_aP52_2_4i_11i_i_10i", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "031902323321", "version": "000"}
{"stoichiometric_species": ["C", "H", "N", "O"], "prototype_label": "A4B9CD4_mP72_14_4e_9e_e_4e", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "600845138068", "version": "000"}
{"stoichiometric_species": ["C", "H", "N", "O"], "prototype_label": "A5B12C2D_oP40_31_3ab_2a5b_2a_a", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "033620093840", "version": "000"}
{"stoichiometric_species": ["C", "H", "N", "O"], "prototype_label": "A5B14C2D2_mP92_14_5e_14e_2e_2e", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "741059850039", "version": "000"}
{"stoichiometric_species": ["C", "H", "N", "O"], "prototype_label": "A8B9CD9_mC216_15_8f_9f_f_9f", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "382694460137", "version": "000"}
{"stoichiometric_species": ["C", "H", "N", "O"], "prototype_label": "AB2C2D2_oP56_19_2a_4a_4a_4a", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "502339347387", "version": "000"}
{"stoichiometric_species": ["C", "H", "N", "O"], "prototype_label": "AB3C5D4_oP52_19_a_3a_5a_4a", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "282039586816", "version": "000"}
{"stoichiometric_species": ["C", "H", "N", "O"], "prototype_label": "AB4C2D_oC192_20_ab2c_12c_6c_ab2c", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "633628026088", "version": "000"}
{"stoichiometric_species": ["C", "H", "N", "O"], "prototype_label": "AB4C2D_tP16_113_c_2e_e_c", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "643910938929", "version": "000"}
{"stoichiometric_species": ["C", "H", "N", "O"], "prototype_label": "AB4C2D_tP16_129_c_i_ac_c", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "197701998246", "version": "000"}
{"stoichiometric_species": ["C", "H", "N", "O"], "prototype_label": "AB4C4D2_aP44_2_2i_8i_8i_4i", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "094378942381", "version": "000"}
{"stoichiometric_species": ["C", "H", "N", "O"], "prototype_label": "AB4C4D2_oF176_43_b_4b_4b_2b", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "255381061019", "version": "000"}
{"stoichiometric_species": ["C", "H", "N", "O"], "prototype_label": "AB5C3D4_mP52_14_e_5e_3e_4e", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "735514161041", "version": "000"}
{"stoichiometric_species": ["C", "H", "N", "O"], "prototype_label": "AB5CD2_aP18_1_2a_10a_2a_4a", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "976253875108", "version": "000"}
{"stoichiometric_species": ["C", "H", "N", "O"], "prototype_label": "AB5CD2_mP18_7_a_5a_a_2a", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "562651418866", "version": "000"}
{"stoichiometric_species": ["C", "H", "N", "O"], "prototype_label": "AB5CD3_oP80_56_e_5e_e_3e", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "950951409517", "version": "000"}
{"stoichiometric_species": ["C", "H", "N", "O"], "prototype_label": "AB6C2D2_oI88_72_j_2j2k_fj_2j", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "198281352245", "version": "000"}
{"stoichiometric_species": ["C", "H", "N", "O"], "prototype_label": "AB6C4D_mP48_14_e_6e_4e_e", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "429053690831", "version": "000"}
{"stoichiometric_species": ["C", "H", "N", "O"], "prototype_label": "AB6C6D4_aP68_2_2i_12i_12i_8i", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "119209954618", "version": "000"}
{"stoichiometric_species": ["C", "H", "N", "O"], "prototype_label": "AB7C3D3_mP56_14_e_7e_3e_3e", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "409549107347", "version": "000"}
{"stoichiometric_species": ["C", "H", "N", "O"], "prototype_label": "AB9C7D3_oP80_57_d_3d3e_7d_de", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "100815033314", "version": "000"}
{"stoichiometric_species": ["C", "H", "O"], "prototype_label": "A2BC2_mP20_11_4e_2e_4e", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "520325843176", "version": "000"}
{"stoichiometric_species": ["C", "H", "O"], "prototype_label": "A3B2C4_tP36_76_3a_2a_4a", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "825277472036", "version": "000"}
{"stoichiometric_species": ["C", "H", "O"], "prototype_label": "A3B8C2_mP52_14_3e_8e_2e", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "880438358477", "version": "000"}
{"stoichiometric_species": ["C", "H", "O"], "prototype_label": "AB2C_hR24_161_b_2b_b", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "148673116410", "version": "000"}
{"stoichiometric_species": ["C", "H", "O"], "prototype_label": "AB2C_oP80_60_c2d_5d_c2d", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "410090475749", "version": "000"}
{"stoichiometric_species": ["C", "H", "O"], "prototype_label": "AB2C2_oP20_33_a_2a_2a", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "429364679598", "version": "000"}
{"stoichiometric_species": ["C", "H", "O"], "prototype_label": "AB3C3_mP28_14_e_3e_3e", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "181831790921", "version": "000"}
{"stoichiometric_species": ["C", "H", "O", "P"], "prototype_label": "A4B12C3D2_mC84_15_2f_6f_ef_f", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "329263489510", "version": "000"}
{"stoichiometric_species": ["C", "H", "O", "V"], "prototype_label": "A2B10C10D_mP92_14_2e_10e_10e_e", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "147660732939", "version": "000"}
{"stoichiometric_species": ["C", "H", "O", "V"], "prototype_label": "A2B4C6D_oP52_54_f_2f_2c2f_c", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "114856748729", "version": "000"}
{"stoichiometric_species": ["C", "H", "P"], "prototype_label": "A3B9C_oP104_62_2c2d_2c8d_2c", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "242383286775", "version": "000"}
{"stoichiometric_species": ["C", "Mn"], "prototype_label": "A2B5_mC28_15_f_e2f", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "541128815110", "version": "000"}
{"stoichiometric_species": ["C", "Mn"], "prototype_label": "A6B23_cF116_225_e_acfh", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "583373571777", "version": "000"}
{"stoichiometric_species": ["C", "Mn"], "prototype_label": "AB3_oP16_62_c_cd", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "374257713038", "version": "000"}
{"stoichiometric_species": ["C", "Mn"], "prototype_label": "AB6_cF112_227_c_def", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "405008082087", "version": "000"}
{"stoichiometric_species": ["C", "N"], "prototype_label": "A11B4_oP15_16_abcjku_u", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "610123089562", "version": "000"}
{"stoichiometric_species": ["C", "N"], "prototype_label": "A11B4_tP15_111_abcmn_n", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "621760327538", "version": "000"}
{"stoichiometric_species": ["C", "N"], "prototype_label": "A2B_cP72_205_2d_d", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "207670531062", "version": "000"}
{"stoichiometric_species": ["C", "N"], "prototype_label": "A3B2_cP20_215_i_2e", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "399056344596", "version": "000"}
{"stoichiometric_species": ["C", "N"], "prototype_label": "A3B2_cP20_221_j_g", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "856240979012", "version": "000"}
{"stoichiometric_species": ["C", "N"], "prototype_label": "A3B4_cF56_227_ad_e", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "745046659100", "version": "000"}
{"stoichiometric_species": ["C", "N"], "prototype_label": "A3B4_cI28_220_a_c", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "653187401657", "version": "000"}
{"stoichiometric_species": ["C", "N"], "prototype_label": "A3B4_cP7_215_c_e", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "583255526839", "version": "000"}
{"stoichiometric_species": ["C", "N"], "prototype_label": "A3B4_hP14_176_h_ch", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "873242268632", "version": "000"}
{"stoichiometric_species": ["C", "N"], "prototype_label": "A3B4_hP14_187_jk_adjk", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "588512879895", "version": "000"}
{"stoichiometric_species": ["C", "N"], "prototype_label": "A3B4_hP28_159_2c_ab2c", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "117533799622", "version": "000"}
{"stoichiometric_species": ["C", "N"], "prototype_label": "A3B4_hR7_160_b_ab", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "520034455829", "version": "000"}
{"stoichiometric_species": ["C", "N"], "prototype_label": "A5B4_hR18_161_2ab_ab", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "017710466448", "version": "000"}
{"stoichiometric_species": ["C", "N"], "prototype_label": "AB_oP16_61_c_c", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "791752009766", "version": "000"}
{"stoichiometric_species": ["C", "N"], "prototype_label": "AB2_hP6_164_c_2d", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "823645218138", "version": "000"}
{"stoichiometric_species": ["C", "N"], "prototype_label": "AB2_oC12_36_a_2a", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "700544380265", "version": "000"}
{"stoichiometric_species": ["C", "N"], "prototype_label": "AB2_tI24_122_d_e", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "143814329913", "version": "000"}
{"stoichiometric_species": ["C", "N"], "prototype_label": "AB2_tI6_119_a_f", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "605318785017", "version": "000"}
{"stoichiometric_species": ["C", "N"], "prototype_label": "AB2_tP6_113_a_e", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "241755482836", "version": "000"}
{"stoichiometric_species": ["C", "N", "O"], "prototype_label": "AB6C_oP32_62_c_6c_c", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "538161687238", "version": "000"}
{"stoichiometric_species": ["C", "Nb"], "prototype_label": "A3B4_cP7_221_d_ac", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "179528692420", "version": "000"}
{"stoichiometric_species": ["C", "Nb"], "prototype_label": "A5B6_mC22_12_agh_ij", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "332827515252", "version": "000"}
{"stoichiometric_species": ["C", "Nb"], "prototype_label": "AB_cF8_216_a_c", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "333906406756", "version": "000"}
{"stoichiometric_species": ["C", "Nb"], "prototype_label": "AB_cF8_225_a_b", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "784033027103", "version": "000"}
{"stoichiometric_species": ["C", "Nb"], "prototype_label": "AB_cP2_221_a_b", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "660732098725", "version": "000"}
{"stoichiometric_species": ["C", "Nb"], "prototype_label": "AB_hP4_194_c_d", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "187712131442", "version": "000"}
{"stoichiometric_species": ["C", "Nb"], "prototype_label": "AB_hP4_194_c_a", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "091479605837", "version": "000"}
{"stoichiometric_species": ["C", "Nb"], "prototype_label": "AB2_hP3_164_a_d", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "746356621438", "version": "000"}
{"stoichiometric_species": ["C", "Nb"], "prototype_label": "AB2_oP12_62_c_2c", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "150952522202", "version": "000"}
{"stoichiometric_species": ["C", "O"], "prototype_label": "A3B2_oP40_62_a3cd_2cd", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "440659526137", "version": "000"}
{"stoichiometric_species": ["C", "O"], "prototype_label": "AB_cP8_198_a_a", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "435342527249", "version": "000"}
{"stoichiometric_species": ["C", "O"], "prototype_label": "AB_hR16_161_ab_ab", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "672397200923", "version": "000"}
{"stoichiometric_species": ["C", "O"], "prototype_label": "AB2_cP12_205_a_c", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "720018979612", "version": "000"}
{"stoichiometric_species": ["C", "O"], "prototype_label": "AB2_hR24_167_be_cf", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "576295722302", "version": "000"}
{"stoichiometric_species": ["C", "O"], "prototype_label": "AB2_oC12_64_a_f", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "588999641735", "version": "000"}
{"stoichiometric_species": ["C", "O"], "prototype_label": "AB2_oP12_60_c_d", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "917177303289", "version": "000"}
{"stoichiometric_species": ["C", "O"], "prototype_label": "AB2_oP24_19_2a_4a", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "008427194862", "version": "000"}
{"stoichiometric_species": ["C", "O"], "prototype_label": "AB2_oP6_58_a_g", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "493772029848", "version": "000"}
{"stoichiometric_species": ["C", "O"], "prototype_label": "AB2_tI12_122_a_d", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "264152894507", "version": "000"}
{"stoichiometric_species": ["C", "O"], "prototype_label": "AB2_tP12_92_a_b", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "487799134785", "version": "000"}
{"stoichiometric_species": ["C", "O"], "prototype_label": "AB2_tP6_136_a_f", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "797219624666", "version": "000"}
{"stoichiometric_species": ["C", "O", "V"], "prototype_label": "A6B6C_oP52_62_2c2d_2c2d_c", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "982339564029", "version": "000"}
{"stoichiometric_species": ["C", "Pd"], "prototype_label": "AB_cF8_216_a_c", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "656719492616", "version": "000"}
{"stoichiometric_species": ["C", "Pd"], "prototype_label": "AB_cF8_225_a_b", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "157800394891", "version": "000"}
{"stoichiometric_species": ["C", "Pt"], "prototype_label": "AB_cF8_216_a_c", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "917640788991", "version": "000"}
{"stoichiometric_species": ["C", "Pt"], "prototype_label": "AB_cF8_225_a_b", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "300741839358", "version": "000"}
{"stoichiometric_species": ["C", "Pt"], "prototype_label": "AB_cP2_221_a_b", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "631063917824", "version": "000"}
{"stoichiometric_species": ["C", "Pt"], "prototype_label": "AB_hP2_187_a_d", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "680042104619", "version": "000"}
{"stoichiometric_species": ["C", "Si"], "prototype_label": "A2B_cP12_205_c_a", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "252472917732", "version": "000"}
{"stoichiometric_species": ["C", "Si"], "prototype_label": "A2B_tP6_131_i_e", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "864293553159", "version": "000"}
{"stoichiometric_species": ["C", "Si"], "prototype_label": "AB_cF8_216_a_c", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "714176841133", "version": "000"}
{"stoichiometric_species": ["C", "Si"], "prototype_label": "AB_cF8_225_a_b", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "217580439520", "version": "000"}
{"stoichiometric_species": ["C", "Si"], "prototype_label": "AB_hP10_156_2a2bc_2a2bc", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "232846359996", "version": "000"}
{"stoichiometric_species": ["C", "Si"], "prototype_label": "AB_hP12_186_a2b_a2b", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "019555280579", "version": "000"}
{"stoichiometric_species": ["C", "Si"], "prototype_label": "AB_hP16_186_a3b_a3b", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "857407102436", "version": "000"}
{"stoichiometric_species": ["C", "Si"], "prototype_label": "AB_hP20_156_4a3b3c_4a3b3c", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "560986482900", "version": "000"}
{"stoichiometric_species": ["C", "Si"], "prototype_label": "AB_hP28_156_5a5b4c_5a5b4c", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "444113438276", "version": "000"}
{"stoichiometric_species": ["C", "Si"], "prototype_label": "AB_hP32_186_3a5b_3a5b", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "627453812544", "version": "000"}
{"stoichiometric_species": ["C", "Si"], "prototype_label": "AB_hP36_156_8a5b5c_8a5b5c", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "360095580201", "version": "000"}
{"stoichiometric_species": ["C", "Si"], "prototype_label": "AB_hP38_156_7a6b6c_7a6b6c", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "797045863586", "version": "000"}
{"stoichiometric_species": ["C", "Si"], "prototype_label": "AB_hP4_186_b_b", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "625254656402", "version": "000"}
{"stoichiometric_species": ["C", "Si"], "prototype_label": "AB_hP42_156_7a7b7c_7a7b7c", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "317376248784", "version": "000"}
{"stoichiometric_species": ["C", "Si"], "prototype_label": "AB_hP54_156_9a9b9c_9a9b9c", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "470149578605", "version": "000"}
{"stoichiometric_species": ["C", "Si"], "prototype_label": "AB_hP8_186_ab_ab", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "075027608938", "version": "000"}
{"stoichiometric_species": ["C", "Si"], "prototype_label": "AB_hR10_160_5a_5a", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "628444164231", "version": "000"}
{"stoichiometric_species": ["C", "Si"], "prototype_label": "AB_hR14_160_7a_7a", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "862979077254", "version": "000"}
{"stoichiometric_species": ["C", "Si"], "prototype_label": "AB_hR16_160_8a_8a", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "636674714631", "version": "000"}
{"stoichiometric_species": ["C", "Si"], "prototype_label": "AB_hR18_160_9a_9a", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "432023818730", "version": "000"}
{"stoichiometric_species": ["C", "Si"], "prototype_label": "AB_hR22_160_11a_11a", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "641169172015", "version": "000"}
{"stoichiometric_species": ["C", "Si", "Ti"], "prototype_label": "A2BC3_hP12_194_f_b_af", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "367125724854", "version": "000"}
{"stoichiometric_species": ["C", "Si", "Ti"], "prototype_label": "ABC2_hP8_194_a_c_f", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "066292702863", "version": "000"}
{"stoichiometric_species": ["C", "Ti"], "prototype_label": "A5B8_hR13_166_abd_ch", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "347808068275", "version": "000"}
{"stoichiometric_species": ["C", "Ti"], "prototype_label": "AB_cF8_225_a_b", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "000749100504", "version": "000"}
{"stoichiometric_species": ["C", "Ti"], "prototype_label": "AB2_cF48_227_c_e", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "798395522960", "version": "000"}
{"stoichiometric_species": ["C", "V"], "prototype_label": "A5B6_hP33_151_3a2b_3c", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "189897244044", "version": "000"}
{"stoichiometric_species": ["C", "V"], "prototype_label": "A7B8_cP60_212_a2d_ce", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "224344260501", "version": "000"}
{"stoichiometric_species": ["C", "V"], "prototype_label": "AB_cF8_225_a_b", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "142521385761", "version": "000"}
{"stoichiometric_species": ["C", "V"], "prototype_label": "AB2_oP12_60_c_d", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "841808918800", "version": "000"}
{"stoichiometric_species": ["Ca"], "prototype_label": "A_cF4_225_a", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "770500866738", "version": "000"}
{"stoichiometric_species": ["Ca"], "prototype_label": "A_cI2_229_a", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "664874245808", "version": "000"}
{"stoichiometric_species": ["Ca"], "prototype_label": "A_cP1_221_a", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "898035645262", "version": "000"}
{"stoichiometric_species": ["Ca"], "prototype_label": "A_hP1_191_a", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "790644209597", "version": "000"}
{"stoichiometric_species": ["Ca"], "prototype_label": "A_hP2_194_c", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "741539798804", "version": "000"}
{"stoichiometric_species": ["Ca"], "prototype_label": "A_oC2_65_a", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "523683422867", "version": "000"}
{"stoichiometric_species": ["Ca"], "prototype_label": "A_oF4_69_a", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "711916148257", "version": "000"}
{"stoichiometric_species": ["Ca"], "prototype_label": "A_tI2_139_a", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "620815007408", "version": "000"}
{"stoichiometric_species": ["Ca"], "prototype_label": "A_tI8_140_h", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "548434557462", "version": "000"}
{"stoichiometric_species": ["Ca", "Cd"], "prototype_label": "A3B2_tP20_136_dfg_j", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "827646266205", "version": "000"}
{"stoichiometric_species": ["Ca", "Cd"], "prototype_label": "AB_cP2_221_a_b", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "362002297847", "version": "000"}
{"stoichiometric_species": ["Ca", "Cd"], "prototype_label": "AB2_hP12_194_f_ah", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "642242513775", "version": "000"}
{"stoichiometric_species": ["Ca", "Cd"], "prototype_label": "AB2_oI12_74_e_h", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "164561180778", "version": "000"}
{"stoichiometric_species": ["Ca", "F"], "prototype_label": "AB2_cF12_225_a_c", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "169283263185", "version": "000"}
{"stoichiometric_species": ["Ca", "F"], "prototype_label": "AB2_hR3_166_a_c", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "437930668802", "version": "000"}
{"stoichiometric_species": ["Ca", "F"], "prototype_label": "AB2_oP12_62_c_2c", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "616681946717", "version": "000"}
{"stoichiometric_species": ["Ca", "F"], "prototype_label": "AB2_oP6_26_a_ab", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "638666214830", "version": "000"}
{"stoichiometric_species": ["Ca", "F"], "prototype_label": "AB2_tP3_123_a_e", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "788951460182", "version": "000"}
{"stoichiometric_species": ["Ca", "H"], "prototype_label": "AB2_hP6_194_c_ad", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "878694025807", "version": "000"}
{"stoichiometric_species": ["Ca", "H"], "prototype_label": "AB2_oP12_62_c_2c", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "384133995455", "version": "000"}
{"stoichiometric_species": ["Ca", "H", "O"], "prototype_label": "AB2C2_hP5_164_a_d_d", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "553071831078", "version": "000"}
{"stoichiometric_species": ["Ca", "H", "O", "Si"], "prototype_label": "A4B2C11D3_oC160_40_2a2b2c_2bc_2b10c_3c", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "883968222490", "version": "000"}
{"stoichiometric_species": ["Ca", "H", "O", "Si"], "prototype_label": "A6B2C13D3_aP48_2_6i_2i_13i_3i", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "015196561624", "version": "000"}
{"stoichiometric_species": ["Ca", "H", "O", "Si"], "prototype_label": "A6B6C13D2_hP54_143_4d_4d_ab8d_2a2b", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "150657863690", "version": "000"}
{"stoichiometric_species": ["Ca", "Mg"], "prototype_label": "AB2_hP12_194_f_ah", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "154686539484", "version": "000"}
{"stoichiometric_species": ["Ca", "Mg", "Zn"], "prototype_label": "A4B13C29_hP92_194_ah_c2k_fhi2jk", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "582633605651", "version": "000"}
{"stoichiometric_species": ["Ca", "O"], "prototype_label": "AB_cF8_225_a_b", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "828918336659", "version": "000"}
{"stoichiometric_species": ["Ca", "O"], "prototype_label": "AB_hP4_194_c_d", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "888133312669", "version": "000"}
{"stoichiometric_species": ["Ca", "O"], "prototype_label": "AB2_tI6_139_a_e", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "820917745945", "version": "000"}
{"stoichiometric_species": ["Ca", "O", "Si"], "prototype_label": "A2B4C_hP14_164_abd_di_d", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "187217601433", "version": "000"}
{"stoichiometric_species": ["Ca", "O", "Si"], "prototype_label": "A2B4C_hP14_186_ab_bc_b", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "488076315085", "version": "000"}
{"stoichiometric_species": ["Ca", "O", "Si"], "prototype_label": "A2B4C_mP28_14_2e_4e_e", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "002284570056", "version": "000"}
{"stoichiometric_species": ["Ca", "O", "Si"], "prototype_label": "A2B4C_mP56_14_4e_8e_2e", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "034267017072", "version": "000"}
{"stoichiometric_species": ["Ca", "O", "Si"], "prototype_label": "A2B4C_oP84_33_6a_12a_3a", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "440552783110", "version": "000"}
{"stoichiometric_species": ["Ca", "O", "Si"], "prototype_label": "A2B4C_tI14_139_e_ce_a", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "223458630578", "version": "000"}
{"stoichiometric_species": ["Ca", "O", "Si"], "prototype_label": "A3B5C_hR27_160_3b_6a3b_3a", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "955619388184", "version": "000"}
{"stoichiometric_species": ["Ca", "O", "Si"], "prototype_label": "A3B5C_mC54_8_3a3b_9a3b_3a", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "524265684679", "version": "000"}
{"stoichiometric_species": ["Ca", "O", "Si"], "prototype_label": "A3B7C2_oI96_46_ab2c_2b6c_abc", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "390523922387", "version": "000"}
{"stoichiometric_species": ["Ca", "O", "Si"], "prototype_label": "AB3C_aP30_2_3i_9i_3i", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "630811056360", "version": "000"}
{"stoichiometric_species": ["Ca", "O", "Si"], "prototype_label": "AB3C_cI40_204_ab_g_c", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "269643191150", "version": "000"}
{"stoichiometric_species": ["Ca", "O", "Si"], "prototype_label": "AB3C_cP5_221_a_c_b", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "544135146451", "version": "000"}
{"stoichiometric_species": ["Ca", "O", "Si"], "prototype_label": "AB3C_mC120_15_c3ef_9f_3f", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "615784590077", "version": "000"}
{"stoichiometric_species": ["Ca", "O", "Si"], "prototype_label": "AB3C_mC60_15_cf_e4f_ef", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "664134568833", "version": "000"}
{"stoichiometric_species": ["Ca", "O", "Si"], "prototype_label": "AB3C_oI20_74_e_eg_a", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "938997508998", "version": "000"}
{"stoichiometric_species": ["Ca", "O", "Si"], "prototype_label": "AB3C_oP20_62_c_cd_a", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "285370929212", "version": "000"}
{"stoichiometric_species": ["Ca", "O", "Si"], "prototype_label": "AB3C_tI20_140_b_ah_c", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "646898178642", "version": "000"}
{"stoichiometric_species": ["Ca", "O", "Si"], "prototype_label": "AB3C_tI40_139_abc_hn_f", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "825435361786", "version": "000"}
{"stoichiometric_species": ["Ca", "O", "Si"], "prototype_label": "AB3C_tP10_127_c_bg_a", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "499376068126", "version": "000"}
{"stoichiometric_species": ["Ca", "O", "Si"], "prototype_label": "AB5C2_aP32_2_2i_10i_be3i", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "820277718340", "version": "000"}
{"stoichiometric_species": ["Ca", "Si"], "prototype_label": "A14B19_hR66_167_b2cef_2ce2f", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "112064169916", "version": "000"}
{"stoichiometric_species": ["Ca", "Si"], "prototype_label": "A2B_cF12_225_c_a", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "806743705228", "version": "000"}
{"stoichiometric_species": ["Ca", "Si"], "prototype_label": "A2B_oP12_62_2c_c", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "672205308387", "version": "000"}
{"stoichiometric_species": ["Ca", "Si"], "prototype_label": "A5B3_tI32_140_cl_ah", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "206049769001", "version": "000"}
{"stoichiometric_species": ["Ca", "Si"], "prototype_label": "AB_oC8_63_c_c", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "743513040796", "version": "000"}
{"stoichiometric_species": ["Ca", "Si"], "prototype_label": "AB_oP4_47_i_i", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "933400150238", "version": "000"}
{"stoichiometric_species": ["Ca", "Si"], "prototype_label": "AB2_hP3_164_a_d", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "206853235429", "version": "000"}
{"stoichiometric_species": ["Ca", "Si"], "prototype_label": "AB2_hP3_191_a_d", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "583636228809", "version": "000"}
{"stoichiometric_species": ["Ca", "Si"], "prototype_label": "AB2_hR3_166_a_c", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "660525165035", "version": "000"}
{"stoichiometric_species": ["Ca", "Si"], "prototype_label": "AB2_hR6_166_c_2c", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "671578122386", "version": "000"}
{"stoichiometric_species": ["Ca", "Si"], "prototype_label": "AB2_tI12_141_a_e", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "040902583921", "version": "000"}
{"stoichiometric_species": ["Ca", "Si"], "prototype_label": "AB2_tI24_141_c_h", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "649037373758", "version": "000"}
{"stoichiometric_species": ["Ca", "Si"], "prototype_label": "AB3_tI32_139_de_im", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "922635899510", "version": "000"}
{"stoichiometric_species": ["Ca", "Zn"], "prototype_label": "A3B_oC16_63_cf_c", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "193324351269", "version": "000"}
{"stoichiometric_species": ["Ca", "Zn"], "prototype_label": "A5B3_tI32_140_cl_ah", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "024980398827", "version": "000"}
{"stoichiometric_species": ["Ca", "Zn"], "prototype_label": "AB_oC8_63_c_c", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "463384629743", "version": "000"}
{"stoichiometric_species": ["Ca", "Zn"], "prototype_label": "AB11_tI48_141_b_aci", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "554412770926", "version": "000"}
{"stoichiometric_species": ["Ca", "Zn"], "prototype_label": "AB13_cF112_226_a_bi", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "601596969323", "version": "000"}
{"stoichiometric_species": ["Ca", "Zn"], "prototype_label": "AB2_hP12_194_f_ah", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "946152220342", "version": "000"}
{"stoichiometric_species": ["Ca", "Zn"], "prototype_label": "AB2_oI12_74_e_h", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "635876977283", "version": "000"}
{"stoichiometric_species": ["Ca", "Zn"], "prototype_label": "AB5_hP6_191_a_cg", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "432626746520", "version": "000"}
{"stoichiometric_species": ["Cd"], "prototype_label": "A_hP2_194_c", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "650193806468", "version": "000"}
{"stoichiometric_species": ["Cd", "Hg"], "prototype_label": "A2B_tI6_139_e_a", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "805192373191", "version": "000"}
{"stoichiometric_species": ["Cd", "Hg"], "prototype_label": "AB2_tI6_139_a_e", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "432597954013", "version": "000"}
{"stoichiometric_species": ["Cd", "S"], "prototype_label": "AB_cF8_216_a_c", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "716251608330", "version": "000"}
{"stoichiometric_species": ["Cd", "S"], "prototype_label": "AB_cF8_225_a_b", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "792533017576", "version": "000"}
{"stoichiometric_species": ["Cd", "S"], "prototype_label": "AB_hP4_186_b_b", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "474608296435", "version": "000"}
{"stoichiometric_species": ["Cd", "S"], "prototype_label": "AB_oP4_59_a_b", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "303966420041", "version": "000"}
{"stoichiometric_species": ["Cd", "S"], "prototype_label": "AB2_cP12_205_a_c", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "066735952337", "version": "000"}
{"stoichiometric_species": ["Cd", "Se"], "prototype_label": "AB_cF8_216_a_c", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "282034132763", "version": "000"}
{"stoichiometric_species": ["Cd", "Se"], "prototype_label": "AB_cF8_225_a_b", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "833049514218", "version": "000"}
{"stoichiometric_species": ["Cd", "Se"], "prototype_label": "AB_hP4_186_b_b", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "187869216449", "version": "000"}
{"stoichiometric_species": ["Cd", "Se"], "prototype_label": "AB2_cP12_205_a_c", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "217748789681", "version": "000"}
{"stoichiometric_species": ["Cd", "Te"], "prototype_label": "AB_cF8_216_a_c", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "204290075145", "version": "000"}
{"stoichiometric_species": ["Cd", "Te"], "prototype_label": "AB_cF8_225_a_b", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "058128117811", "version": "000"}
{"stoichiometric_species": ["Cd", "Te"], "prototype_label": "AB_hP4_186_b_b", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "610709102550", "version": "000"}
{"stoichiometric_species": ["Cd", "Te"], "prototype_label": "AB_hP6_152_a_b", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "507731100163", "version": "000"}
{"stoichiometric_species": ["Cd", "Te"], "prototype_label": "AB_oC8_63_c_c", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "979682440107", "version": "000"}
{"stoichiometric_species": ["Cd", "Te"], "prototype_label": "AB_oP2_25_a_b", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "258773107479", "version": "000"}
{"stoichiometric_species": ["Cd", "Te", "Zn"], "prototype_label": "AB2C_tI16_122_b_d_a", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "192304393146", "version": "000"}
{"stoichiometric_species": ["Ce"], "prototype_label": "A_cF4_225_a", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "611526429977", "version": "000"}
{"stoichiometric_species": ["Ce"], "prototype_label": "A_cI2_229_a", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "908066390197", "version": "000"}
{"stoichiometric_species": ["Ce"], "prototype_label": "A_hP2_194_c", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "794796456428", "version": "000"}
{"stoichiometric_species": ["Ce"], "prototype_label": "A_hP4_194_ac", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "228933686392", "version": "000"}
{"stoichiometric_species": ["Ce"], "prototype_label": "A_oC4_63_c", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "956305841520", "version": "000"}
{"stoichiometric_species": ["Ce", "Cl"], "prototype_label": "AB3_hP8_176_c_h", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "592594831565", "version": "000"}
{"stoichiometric_species": ["Ce", "Cl", "H", "O"], "prototype_label": "AB3C14D7_aP50_2_i_3i_14i_7i", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "183038544697", "version": "000"}
{"stoichiometric_species": ["Ce", "Cl", "O"], "prototype_label": "ABC_tP6_129_c_c_a", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "353276711240", "version": "000"}
{"stoichiometric_species": ["Ce", "H"], "prototype_label": "A2B5_tI28_109_2a_ac", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "616094534286", "version": "000"}
{"stoichiometric_species": ["Ce", "H"], "prototype_label": "AB2_cF12_225_a_c", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "077239351419", "version": "000"}
{"stoichiometric_species": ["Ce", "H"], "prototype_label": "AB3_cF16_225_a_bc", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "263022708612", "version": "000"}
{"stoichiometric_species": ["Ce", "Na", "O", "Si"], "prototype_label": "AB8C18D6_hR33_166_a_cde_g2h_h", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "555947593910", "version": "000"}
{"stoichiometric_species": ["Ce", "O"], "prototype_label": "A2B3_cI80_206_ad_e", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "916794916851", "version": "000"}
{"stoichiometric_species": ["Ce", "O"], "prototype_label": "A2B3_mC10_5_c_ac", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "861974379931", "version": "000"}
{"stoichiometric_species": ["Ce", "O"], "prototype_label": "A2B3_mC10_12_i_ai", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "006266659103", "version": "000"}
{"stoichiometric_species": ["Ce", "O"], "prototype_label": "A2B3_mC30_12_3i_a4i", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "649468087195", "version": "000"}
{"stoichiometric_species": ["Ce", "O"], "prototype_label": "A7B12_hR19_148_af_2f", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "734684344349", "version": "000"}
{"stoichiometric_species": ["Ce", "O"], "prototype_label": "AB_cF8_225_a_b", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "911725246025", "version": "000"}
{"stoichiometric_species": ["Ce", "O"], "prototype_label": "AB2_cF12_225_a_c", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "447003561638", "version": "000"}
{"stoichiometric_species": ["Ce", "O"], "prototype_label": "AB2_hP6_164_d_abd", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "836031831606", "version": "000"}
{"stoichiometric_species": ["Ce", "O"], "prototype_label": "AB2_tP6_136_a_f", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "425650886504", "version": "000"}
{"stoichiometric_species": ["Ce", "O", "Si"], "prototype_label": "A2B7C2_mP44_14_2e_7e_2e", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "724975219534", "version": "000"}
{"stoichiometric_species": ["Ce", "O", "Si"], "prototype_label": "AB4C_tI24_141_a_h_b", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "150651740046", "version": "000"}
{"stoichiometric_species": ["Ce", "Si"], "prototype_label": "A2B7_oC18_65_h_ajp", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "121101610195", "version": "000"}
{"stoichiometric_species": ["Ce", "Si"], "prototype_label": "A3B2_tP10_127_ah_g", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "025036944433", "version": "000"}
{"stoichiometric_species": ["Ce", "Si"], "prototype_label": "A5B3_tI32_140_cl_ah", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "719725077782", "version": "000"}
{"stoichiometric_species": ["Ce", "Si"], "prototype_label": "A5B4_tP36_92_a2b_2b", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "763304255594", "version": "000"}
{"stoichiometric_species": ["Ce", "Si"], "prototype_label": "AB_oP8_62_c_c", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "171068705971", "version": "000"}
{"stoichiometric_species": ["Ce", "Si"], "prototype_label": "AB2_tI12_141_a_e", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "839780611626", "version": "000"}
{"stoichiometric_species": ["Ce", "Si"], "prototype_label": "AB5_oI12_71_a_bm", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "745198437088", "version": "000"}
{"stoichiometric_species": ["Cl"], "prototype_label": "A_oC8_64_f", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "671079948977", "version": "000"}
{"stoichiometric_species": ["Cl"], "prototype_label": "A_tP16_138_j", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "546037163607", "version": "000"}
{"stoichiometric_species": ["Cl", "Cs"], "prototype_label": "AB_cF8_225_a_b", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "454949982365", "version": "000"}
{"stoichiometric_species": ["Cl", "Cs"], "prototype_label": "AB_cP2_221_a_b", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "372449749324", "version": "000"}
{"stoichiometric_species": ["Cl", "Cs", "I"], "prototype_label": "A2BC_hR4_166_c_a_b", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "359682833193", "version": "000"}
{"stoichiometric_species": ["Cl", "Cs", "Li"], "prototype_label": "A2BC_mC32_15_2ef_f_f", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "907163195823", "version": "000"}
{"stoichiometric_species": ["Cl", "Cs", "Li"], "prototype_label": "A2BC_tP8_129_ac_c_c", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "175437441330", "version": "000"}
{"stoichiometric_species": ["Cl", "Cs", "Li"], "prototype_label": "A3B2C_oC24_63_cf_2c_c", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "338241820743", "version": "000"}
{"stoichiometric_species": ["Cl", "Cs", "Li"], "prototype_label": "A3BC2_oI12_71_af_b_e", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "835453797636", "version": "000"}
{"stoichiometric_species": ["Cl", "Cs", "Li"], "prototype_label": "A3BC2_oP24_60_cd_c_d", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "637773877484", "version": "000"}
{"stoichiometric_species": ["Cl", "Cs", "Li"], "prototype_label": "A4B3C_oC16_38_abc_ac_b", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "876808510543", "version": "000"}
{"stoichiometric_species": ["Cl", "Cs", "Li"], "prototype_label": "A4BC3_oC32_63_4c_c_3c", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "109714372530", "version": "000"}
{"stoichiometric_species": ["Cl", "Cs", "Li"], "prototype_label": "A5B3C2_mC20_8_a2b_ab_b", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "935376255446", "version": "000"}
{"stoichiometric_species": ["Cl", "F"], "prototype_label": "AB_mP8_14_e_e", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "671035067486", "version": "000"}
{"stoichiometric_species": ["Cl", "F"], "prototype_label": "AB3_mP32_14_2e_6e", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "725892122494", "version": "000"}
{"stoichiometric_species": ["Cl", "F"], "prototype_label": "AB3_oP16_62_c_cd", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "209069880328", "version": "000"}
{"stoichiometric_species": ["Cl", "H"], "prototype_label": "AB_cF8_225_a_b", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "427010637139", "version": "000"}
{"stoichiometric_species": ["Cl", "H"], "prototype_label": "AB_tI4_139_a_b", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "430252482501", "version": "000"}
{"stoichiometric_species": ["Cl", "H", "Na", "O"], "prototype_label": "AB2CD5_mC72_15_f_2f_ae_5f", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "727008220475", "version": "000"}
{"stoichiometric_species": ["Cl", "H", "Na", "O"], "prototype_label": "AB4CD2_mP32_14_e_4e_e_2e", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "176892319799", "version": "000"}
{"stoichiometric_species": ["Cl", "H", "Na", "O"], "prototype_label": "AB4CD6_aP24_2_i_4i_i_6i", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "325273322769", "version": "000"}
{"stoichiometric_species": ["Cl", "H", "Na", "O"], "prototype_label": "AB6CD5_aP26_2_i_6i_i_5i", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "093045044327", "version": "000"}
{"stoichiometric_species": ["Cl", "H", "O"], "prototype_label": "AB13C6_oP80_57_c_d6e_2d2e", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "775368582178", "version": "000"}
{"stoichiometric_species": ["Cl", "H", "O"], "prototype_label": "AB3C5_mP36_14_e_3e_5e", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "002076198911", "version": "000"}
{"stoichiometric_species": ["Cl", "H", "O"], "prototype_label": "AB3C5_oP36_62_c_cd_3cd", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "164546010319", "version": "000"}
{"stoichiometric_species": ["Cl", "H", "O"], "prototype_label": "AB5C2_mP32_14_e_5e_2e", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "987891024709", "version": "000"}
{"stoichiometric_species": ["Cl", "H", "Si"], "prototype_label": "A4B8C5_tI34_82_g_2g_ag", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "049144559496", "version": "000"}
{"stoichiometric_species": ["Cl", "I"], "prototype_label": "A3B_aP8_2_3i_i", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "255302092543", "version": "000"}
{"stoichiometric_species": ["Cl", "I"], "prototype_label": "AB_mP16_14_2e_2e", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "059964561235", "version": "000"}
{"stoichiometric_species": ["Cl", "I", "K"], "prototype_label": "A2BC_mP32_14_4e_2e_2e", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "957062681602", "version": "000"}
{"stoichiometric_species": ["Cl", "I", "K"], "prototype_label": "A4BC_mP24_14_4e_e_e", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "292895033281", "version": "000"}
{"stoichiometric_species": ["Cl", "K"], "prototype_label": "AB_cF8_225_a_b", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "829035466576", "version": "000"}
{"stoichiometric_species": ["Cl", "K"], "prototype_label": "AB_cP2_221_a_b", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "463749895766", "version": "000"}
{"stoichiometric_species": ["Cl", "Li"], "prototype_label": "AB_cF8_225_a_b", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "047029209490", "version": "000"}
{"stoichiometric_species": ["Cl", "Na"], "prototype_label": "AB_cF8_225_a_b", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "142764213214", "version": "000"}
{"stoichiometric_species": ["Cl", "Na"], "prototype_label": "AB_cP2_221_a_b", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "281329468134", "version": "000"}
{"stoichiometric_species": ["Cl", "Na", "O"], "prototype_label": "AB3C_cP5_221_a_c_b", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "159142715628", "version": "000"}
{"stoichiometric_species": ["Cl", "Na", "O"], "prototype_label": "ABC3_cP20_198_a_a_b", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "527426988340", "version": "000"}
{"stoichiometric_species": ["Cl", "Na", "O"], "prototype_label": "ABC4_cF24_216_a_b_e", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "328620016670", "version": "000"}
{"stoichiometric_species": ["Cl", "Na", "O"], "prototype_label": "ABC4_oC24_63_c_c_fg", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "344406890159", "version": "000"}
{"stoichiometric_species": ["Cl", "Na", "O"], "prototype_label": "ABC4_oP24_62_c_c_2cd", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "817651110319", "version": "000"}
{"stoichiometric_species": ["Cl", "O"], "prototype_label": "A2B_tI24_141_h_e", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "332285845518", "version": "000"}
{"stoichiometric_species": ["Cl", "O"], "prototype_label": "A2B7_mC36_15_f_e3f", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "440744071176", "version": "000"}
{"stoichiometric_species": ["Cl", "O"], "prototype_label": "AB2_oP24_61_c_2c", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "228539089587", "version": "000"}
{"stoichiometric_species": ["Cl", "O"], "prototype_label": "AB3_mC32_9_2a_6a", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "090940048097", "version": "000"}
{"stoichiometric_species": ["Cl", "O", "Si"], "prototype_label": "A10B7C6_mP46_11_2e4f_e3f_2e2f", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "100428348967", "version": "000"}
{"stoichiometric_species": ["Cl", "O", "Si"], "prototype_label": "A2B3C2_hR28_148_cf_2f_cf", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "372454919248", "version": "000"}
{"stoichiometric_species": ["Cl", "O", "Si"], "prototype_label": "A2BC_aP16_2_4i_2i_2i", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "166881984712", "version": "000"}
{"stoichiometric_species": ["Cl", "O", "Si"], "prototype_label": "A2BC_aP24_2_6i_3i_3i", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "401325546428", "version": "000"}
{"stoichiometric_species": ["Cl", "O", "Si"], "prototype_label": "A8B2C3_oP52_62_2c3d_d_cd", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "182150022128", "version": "000"}
{"stoichiometric_species": ["Cl", "Rb"], "prototype_label": "AB_cF8_225_a_b", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "415703538399", "version": "000"}
{"stoichiometric_species": ["Cl", "Rb"], "prototype_label": "AB_cP2_221_a_b", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "053298002398", "version": "000"}
{"stoichiometric_species": ["Cl", "Si"], "prototype_label": "A2B_oP12_19_2a_a", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "085673401015", "version": "000"}
{"stoichiometric_species": ["Cl", "Si"], "prototype_label": "A4B_mP20_14_4e_e", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "723071324874", "version": "000"}
{"stoichiometric_species": ["Cl", "Si"], "prototype_label": "A8B3_cF176_219_eh_abe", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "096351147975", "version": "000"}
{"stoichiometric_species": ["Co"], "prototype_label": "A_cF4_225_a", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "706253944580", "version": "000"}
{"stoichiometric_species": ["Co"], "prototype_label": "A_hP2_194_c", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "481359228690", "version": "000"}
{"stoichiometric_species": ["Co"], "prototype_label": "A_oC4_63_c", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "891980851115", "version": "000"}
{"stoichiometric_species": ["Co"], "prototype_label": "A_tI2_139_a", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "143985133493", "version": "000"}
{"stoichiometric_species": ["Co"], "prototype_label": "A_tP28_136_f2ij", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "509241329045", "version": "000"}
{"stoichiometric_species": ["Co", "Cr"], "prototype_label": "A3B_cP4_221_c_a", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "061696268790", "version": "000"}
{"stoichiometric_species": ["Co", "Cr"], "prototype_label": "AB_cP2_221_a_b", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "601979170007", "version": "000"}
{"stoichiometric_species": ["Co", "Fe"], "prototype_label": "A3B_cP4_221_c_a", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "819732285174", "version": "000"}
{"stoichiometric_species": ["Co", "Fe"], "prototype_label": "A3B13_tP16_123_abc_defr", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "400671590600", "version": "000"}
{"stoichiometric_species": ["Co", "Fe"], "prototype_label": "A3B5_cI16_229_b_ac", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "059306169713", "version": "000"}
{"stoichiometric_species": ["Co", "Fe"], "prototype_label": "A5B11_tP16_123_aef_bcdr", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "302162401604", "version": "000"}
{"stoichiometric_species": ["Co", "Fe"], "prototype_label": "A7B9_cP16_221_acd_bg", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "671953838028", "version": "000"}
{"stoichiometric_species": ["Co", "Fe"], "prototype_label": "AB_cP2_221_a_b", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "182818993239", "version": "000"}
{"stoichiometric_species": ["Co", "Fe"], "prototype_label": "AB15_cP16_221_a_bcdg", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "623906425286", "version": "000"}
{"stoichiometric_species": ["Co", "Fe"], "prototype_label": "AB3_tP4_123_a_ce", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "324978942559", "version": "000"}
{"stoichiometric_species": ["Co", "Fe"], "prototype_label": "AB7_cI16_229_a_bc", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "070086189348", "version": "000"}
{"stoichiometric_species": ["Co", "Mn"], "prototype_label": "A3B_cP4_221_c_a", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "810840681371", "version": "000"}
{"stoichiometric_species": ["Co", "Mn"], "prototype_label": "AB_cP2_221_a_b", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "195817273744", "version": "000"}
{"stoichiometric_species": ["Co", "Ni"], "prototype_label": "A3B_cP4_221_c_a", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "280761526710", "version": "000"}
{"stoichiometric_species": ["Co", "Ni"], "prototype_label": "AB_cP2_221_a_b", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "480622495456", "version": "000"}
{"stoichiometric_species": ["Co", "Pt"], "prototype_label": "AB_tP2_123_a_d", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "184097234363", "version": "000"}
{"stoichiometric_species": ["Co", "Pt"], "prototype_label": "AB3_cP4_221_a_c", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "195054922305", "version": "000"}
{"stoichiometric_species": ["Co", "Ti"], "prototype_label": "A2B_cF24_227_c_b", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "465348848194", "version": "000"}
{"stoichiometric_species": ["Co", "Ti"], "prototype_label": "A2B_oC48_63_acdfg_2f", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "885617072492", "version": "000"}
{"stoichiometric_species": ["Co", "Ti"], "prototype_label": "A3B_cP4_221_c_a", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "573847121576", "version": "000"}
{"stoichiometric_species": ["Co", "Ti"], "prototype_label": "A3B_hP8_194_h_c", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "312504907685", "version": "000"}
{"stoichiometric_species": ["Co", "Ti"], "prototype_label": "AB_cP2_221_a_b", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "946263098357", "version": "000"}
{"stoichiometric_species": ["Co", "Ti"], "prototype_label": "AB2_cF24_227_a_d", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "843768796448", "version": "000"}
{"stoichiometric_species": ["Co", "Ti"], "prototype_label": "AB2_cF96_227_e_cf", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "432128362941", "version": "000"}
{"stoichiometric_species": ["Co", "V"], "prototype_label": "A3B_cP4_221_c_a", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "937321683179", "version": "000"}
{"stoichiometric_species": ["Co", "V"], "prototype_label": "A3B_oC16_63_cg_c", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "501267253619", "version": "000"}
{"stoichiometric_species": ["Co", "V"], "prototype_label": "A3B_oC48_63_cfgh_cf", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "969217090168", "version": "000"}
{"stoichiometric_species": ["Co", "V"], "prototype_label": "AB_cP2_221_a_b", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "014960819601", "version": "000"}
{"stoichiometric_species": ["Co", "V"], "prototype_label": "AB3_cP8_223_a_c", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "251859918152", "version": "000"}
{"stoichiometric_species": ["Cr"], "prototype_label": "A_cF4_225_a", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "682970732252", "version": "000"}
{"stoichiometric_species": ["Cr"], "prototype_label": "A_cI2_229_a", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "334257131539", "version": "000"}
{"stoichiometric_species": ["Cr"], "prototype_label": "A_cP8_223_ac", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "120867218211", "version": "000"}
{"stoichiometric_species": ["Cr"], "prototype_label": "A_hP2_194_c", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "926420663127", "version": "000"}
{"stoichiometric_species": ["Cr"], "prototype_label": "A_tP28_136_f2ij", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "365173942889", "version": "000"}
{"stoichiometric_species": ["Cr", "Fe"], "prototype_label": "A2B_cF24_227_c_b", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "861426670306", "version": "000"}
{"stoichiometric_species": ["Cr", "Fe"], "prototype_label": "A3B_cP4_221_c_a", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "878403911498", "version": "000"}
{"stoichiometric_species": ["Cr", "Fe"], "prototype_label": "A3B_tI8_139_ad_b", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "980944854218", "version": "000"}
{"stoichiometric_species": ["Cr", "Fe"], "prototype_label": "AB2_cF24_227_a_d", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "934630684148", "version": "000"}
{"stoichiometric_species": ["Cr", "Fe"], "prototype_label": "AB3_cF16_225_a_bc", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "062029797648", "version": "000"}
{"stoichiometric_species": ["Cr", "Fe"], "prototype_label": "AB3_cP4_221_a_c", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "716841723341", "version": "000"}
{"stoichiometric_species": ["Cr", "Ni"], "prototype_label": "A2B_cF24_227_c_b", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "879430787153", "version": "000"}
{"stoichiometric_species": ["Cr", "Ni"], "prototype_label": "A3B_cF16_225_ac_b", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "156738696406", "version": "000"}
{"stoichiometric_species": ["Cr", "Ni"], "prototype_label": "A3B_cP4_221_c_a", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "920475925979", "version": "000"}
{"stoichiometric_species": ["Cr", "Ni"], "prototype_label": "AB2_cF24_227_a_d", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "518110387617", "version": "000"}
{"stoichiometric_species": ["Cr", "Ni"], "prototype_label": "AB3_cF16_225_a_bc", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "157779596314", "version": "000"}
{"stoichiometric_species": ["Cr", "O"], "prototype_label": "A2B3_hR10_167_c_e", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "332865827473", "version": "000"}
{"stoichiometric_species": ["Cr", "O"], "prototype_label": "A3B_cP8_223_c_a", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "738114780767", "version": "000"}
{"stoichiometric_species": ["Cr", "O"], "prototype_label": "A3B8_mC22_12_ai_2ij", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "494983110091", "version": "000"}
{"stoichiometric_species": ["Cr", "O"], "prototype_label": "A8B21_aP29_2_4i_a10i", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "102811160244", "version": "000"}
{"stoichiometric_species": ["Cr", "O"], "prototype_label": "AB_cF8_225_a_b", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "488968084108", "version": "000"}
{"stoichiometric_species": ["Cr", "O"], "prototype_label": "AB2_cF12_225_a_c", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "604515626444", "version": "000"}
{"stoichiometric_species": ["Cr", "O"], "prototype_label": "AB2_cP12_205_a_c", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "449087074788", "version": "000"}
{"stoichiometric_species": ["Cr", "O"], "prototype_label": "AB2_oP12_60_c_d", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "275652205983", "version": "000"}
{"stoichiometric_species": ["Cr", "O"], "prototype_label": "AB2_oP6_58_a_g", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "827985740802", "version": "000"}
{"stoichiometric_species": ["Cr", "O"], "prototype_label": "AB2_tP6_136_a_f", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "050598152177", "version": "000"}
{"stoichiometric_species": ["Cr", "O"], "prototype_label": "AB3_oC32_40_c_3c", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "524303988345", "version": "000"}
{"stoichiometric_species": ["Cs"], "prototype_label": "A_cF4_225_a", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "570926729829", "version": "000"}
{"stoichiometric_species": ["Cs"], "prototype_label": "A_cI2_229_a", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "551975973488", "version": "000"}
{"stoichiometric_species": ["Cs"], "prototype_label": "A_oC4_63_c", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "501271881408", "version": "000"}
{"stoichiometric_species": ["Cs"], "prototype_label": "A_oC84_20_a10c", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "966958346843", "version": "000"}
{"stoichiometric_species": ["Cs"], "prototype_label": "A_oP4_62_c", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "144093642049", "version": "000"}
{"stoichiometric_species": ["Cs"], "prototype_label": "A_tI2_139_a", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "659785149687", "version": "000"}
{"stoichiometric_species": ["Cs"], "prototype_label": "A_tI4_141_a", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "117732578566", "version": "000"}
{"stoichiometric_species": ["Cs", "F"], "prototype_label": "AB_cF8_225_a_b", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "362622731168", "version": "000"}
{"stoichiometric_species": ["Cs", "F"], "prototype_label": "AB_cP2_221_a_b", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "508389595920", "version": "000"}
{"stoichiometric_species": ["Cs", "F", "Li"], "prototype_label": "A2B5C3_oC20_38_ab_3a2b_2ab", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "118441822605", "version": "000"}
{"stoichiometric_species": ["Cs", "F", "Li"], "prototype_label": "A3B4C_mC32_12_3i_g3i_i", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "482382504769", "version": "000"}
{"stoichiometric_species": ["Cs", "F", "Li"], "prototype_label": "A3B5C2_tI20_139_ae_bde_e", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "851321289814", "version": "000"}
{"stoichiometric_species": ["Cs", "F", "Li"], "prototype_label": "AB2C_mC32_15_f_2ef_f", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "637068479972", "version": "000"}
{"stoichiometric_species": ["Cs", "F", "Li"], "prototype_label": "AB4C3_mC32_12_i_gij_3i", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "783588188619", "version": "000"}
{"stoichiometric_species": ["Cs", "I"], "prototype_label": "AB_cF8_225_a_b", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "327343629430", "version": "000"}
{"stoichiometric_species": ["Cs", "I"], "prototype_label": "AB_cP2_221_a_b", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "723899091084", "version": "000"}
{"stoichiometric_species": ["Cs", "I"], "prototype_label": "AB4_mP20_14_e_4e", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "524809641943", "version": "000"}
{"stoichiometric_species": ["Cs", "I", "Li"], "prototype_label": "A2B3C_oC24_36_2a_3a_a", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "604986109478", "version": "000"}
{"stoichiometric_species": ["Cs", "I", "Li"], "prototype_label": "A2B5C3_mC20_12_i_a2i_ci", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "514769611193", "version": "000"}
{"stoichiometric_species": ["Cs", "I", "Li"], "prototype_label": "A3B4C_mP16_11_a2e_2ef_e", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "984532434211", "version": "000"}
{"stoichiometric_species": ["Cs", "I", "Li"], "prototype_label": "AB2C_oC32_36_2a_4a_2a", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "977521792428", "version": "000"}
{"stoichiometric_species": ["Cs", "I", "Li"], "prototype_label": "AB4C3_mP16_6_2a_3a5b_3a3b", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "184390008883", "version": "000"}
{"stoichiometric_species": ["Cs", "K"], "prototype_label": "AB2_hP12_194_f_ah", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "178530253947", "version": "000"}
{"stoichiometric_species": ["Cs", "Na"], "prototype_label": "AB2_hP12_194_f_ah", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "480315968719", "version": "000"}
{"stoichiometric_species": ["Cu"], "prototype_label": "A_cF4_225_a", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "603455348834", "version": "000"}
{"stoichiometric_species": ["Cu"], "prototype_label": "A_cI2_229_a", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "098336610676", "version": "000"}
{"stoichiometric_species": ["Cu", "H"], "prototype_label": "AB_hP4_186_b_b", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "792062703185", "version": "000"}
{"stoichiometric_species": ["Cu", "Mg"], "prototype_label": "A2B_cF24_227_c_b", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "598987073754", "version": "000"}
{"stoichiometric_species": ["Cu", "Mg"], "prototype_label": "AB2_oF48_70_e_ef", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "036104917648", "version": "000"}
{"stoichiometric_species": ["Cu", "Mg", "Si"], "prototype_label": "A16B6C7_cF116_225_2f_e_ad", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "628332125836", "version": "000"}
{"stoichiometric_species": ["Cu", "Mg", "Si"], "prototype_label": "A3B2C_hP12_194_h_f_a", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "625579494364", "version": "000"}
{"stoichiometric_species": ["Cu", "N"], "prototype_label": "A3B_cP4_221_c_b", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "511770089909", "version": "000"}
{"stoichiometric_species": ["Cu", "N"], "prototype_label": "A3B_cP4_221_c_a", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "680934307873", "version": "000"}
{"stoichiometric_species": ["Cu", "N"], "prototype_label": "A3B_tP32_123_ilmnr_abcdef", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "690168656207", "version": "000"}
{"stoichiometric_species": ["Cu", "N"], "prototype_label": "A3B_tP8_123_egh_ab", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "244169711448", "version": "000"}
{"stoichiometric_species": ["Cu", "N"], "prototype_label": "AB_cF8_216_a_c", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "631863844932", "version": "000"}
{"stoichiometric_species": ["Cu", "N"], "prototype_label": "AB3_oP32_61_c_3c", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "643477240744", "version": "000"}
{"stoichiometric_species": ["Cu", "N"], "prototype_label": "AB3_tI16_140_a_ch", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "798758681179", "version": "000"}
{"stoichiometric_species": ["Cu", "N"], "prototype_label": "AB3_tI32_88_c_df", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "228497353581", "version": "000"}
{"stoichiometric_species": ["Cu", "N"], "prototype_label": "AB6_oP28_62_c_6c", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "862822768759", "version": "000"}
{"stoichiometric_species": ["Cu", "Pd"], "prototype_label": "A3B_cP4_221_c_a", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "382949216067", "version": "000"}
{"stoichiometric_species": ["Cu", "Pd"], "prototype_label": "A3B_tP28_99_4a3b7c_3a4b", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "162631899893", "version": "000"}
{"stoichiometric_species": ["Cu", "Pd"], "prototype_label": "A3B_tP28_123_aeg2h3i_c2gh", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "605783637674", "version": "000"}
{"stoichiometric_species": ["Cu", "Pd"], "prototype_label": "A4B_tP20_84_afjk_j", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "737683382744", "version": "000"}
{"stoichiometric_species": ["Cu", "Pd"], "prototype_label": "AB_cP2_221_a_b", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "942964149719", "version": "000"}
{"stoichiometric_species": ["Cu", "Pt"], "prototype_label": "A3B_cP4_221_c_a", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "739282309690", "version": "000"}
{"stoichiometric_species": ["Cu", "Pt"], "prototype_label": "AB_hR2_166_a_b", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "770292122320", "version": "000"}
{"stoichiometric_species": ["Cu", "Pt"], "prototype_label": "AB7_cF32_225_a_bd", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "530120581944", "version": "000"}
{"stoichiometric_species": ["Cu", "Si"], "prototype_label": "A15B4_cI76_220_ae_c", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "242953279206", "version": "000"}
{"stoichiometric_species": ["Cu", "Ti"], "prototype_label": "A3B_oP8_59_ae_b", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "616889967841", "version": "000"}
{"stoichiometric_species": ["Cu", "Ti"], "prototype_label": "A3B2_tI10_139_ae_e", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "055181591593", "version": "000"}
{"stoichiometric_species": ["Cu", "Ti"], "prototype_label": "A4B_oP20_62_4c_c", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "511653518177", "version": "000"}
{"stoichiometric_species": ["Cu", "Ti"], "prototype_label": "A4B3_tI14_139_2e_ae", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "590784603535", "version": "000"}
{"stoichiometric_species": ["Cu", "Ti"], "prototype_label": "AB_cP2_221_a_b", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "155649361774", "version": "000"}
{"stoichiometric_species": ["Cu", "Ti"], "prototype_label": "AB_tP4_123_g_g", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "964588114185", "version": "000"}
{"stoichiometric_species": ["Cu", "Ti"], "prototype_label": "AB_tP4_129_c_c", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "436943594224", "version": "000"}
{"stoichiometric_species": ["Cu", "Ti"], "prototype_label": "AB2_cF96_227_e_cf", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "606548629924", "version": "000"}
{"stoichiometric_species": ["Cu", "Ti"], "prototype_label": "AB2_tI6_139_a_e", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "823893345065", "version": "000"}
{"stoichiometric_species": ["Cu", "Ti"], "prototype_label": "AB3_tP4_123_a_ce", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "012072643092", "version": "000"}
{"stoichiometric_species": ["Cu", "Zr"], "prototype_label": "A10B7_oC68_64_f2g_adef", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "928047110781", "version": "000"}
{"stoichiometric_species": ["Cu", "Zr"], "prototype_label": "A5B_cF24_216_ae_c", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "750056108456", "version": "000"}
{"stoichiometric_species": ["Cu", "Zr"], "prototype_label": "AB_cP2_221_a_b", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "194172507365", "version": "000"}
{"stoichiometric_species": ["Cu", "Zr"], "prototype_label": "AB_mC16_8_2ab_2ab", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "146579307349", "version": "000"}
{"stoichiometric_species": ["Cu", "Zr"], "prototype_label": "AB_mP4_11_e_e", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "776340400135", "version": "000"}
{"stoichiometric_species": ["Cu", "Zr"], "prototype_label": "AB_oC8_63_c_c", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "579436608515", "version": "000"}
{"stoichiometric_species": ["Cu", "Zr"], "prototype_label": "AB2_cF96_227_e_cf", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "587444616183", "version": "000"}
{"stoichiometric_species": ["Cu", "Zr"], "prototype_label": "AB2_tI6_139_a_e", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "781565479840", "version": "000"}
{"stoichiometric_species": ["Cu", "Zr"], "prototype_label": "AB3_tP4_123_a_ce", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "686071854030", "version": "000"}
{"stoichiometric_species": ["F"], "prototype_label": "A_aP4_2_2i", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "604216233154", "version": "000"}
{"stoichiometric_species": ["F"], "prototype_label": "A_cP8_223_ac", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "851293092640", "version": "000"}
{"stoichiometric_species": ["F"], "prototype_label": "A_mC8_12_2i", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "361208232289", "version": "000"}
{"stoichiometric_species": ["F"], "prototype_label": "A_mC8_15_f", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "505154019639", "version": "000"}
{"stoichiometric_species": ["F", "I"], "prototype_label": "A3B_oP16_62_cd_c", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "059791965118", "version": "000"}
{"stoichiometric_species": ["F", "I"], "prototype_label": "A5B_mC120_15_e12f_e2f", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "035480104913", "version": "000"}
{"stoichiometric_species": ["F", "I"], "prototype_label": "A7B_oC32_41_a3b_a", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "794930437956", "version": "000"}
{"stoichiometric_species": ["F", "K"], "prototype_label": "AB_cF8_225_a_b", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "391060478459", "version": "000"}
{"stoichiometric_species": ["F", "K"], "prototype_label": "AB_cP2_221_a_b", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "091341636233", "version": "000"}
{"stoichiometric_species": ["F", "Li"], "prototype_label": "AB_cF8_225_a_b", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "038207369329", "version": "000"}
{"stoichiometric_species": ["F", "Li"], "prototype_label": "AB_cP2_221_a_b", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "797290949112", "version": "000"}
{"stoichiometric_species": ["F", "Li", "Rb"], "prototype_label": "A2BC_mC32_15_2ef_f_f", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "067086881583", "version": "000"}
{"stoichiometric_species": ["F", "Na"], "prototype_label": "AB_cF8_225_a_b", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "254630957596", "version": "000"}
{"stoichiometric_species": ["F", "Rb"], "prototype_label": "AB_cF8_225_a_b", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "673677184529", "version": "000"}
{"stoichiometric_species": ["F", "Rb"], "prototype_label": "AB_cP2_221_a_b", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "360468410828", "version": "000"}
{"stoichiometric_species": ["Fe"], "prototype_label": "A_cF4_225_a", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "585780313351", "version": "000"}
{"stoichiometric_species": ["Fe"], "prototype_label": "A_cI2_229_a", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "735193277591", "version": "000"}
{"stoichiometric_species": ["Fe"], "prototype_label": "A_hP2_194_c", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "227006208119", "version": "000"}
{"stoichiometric_species": ["Fe"], "prototype_label": "A_tP1_123_a", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "805497784255", "version": "000"}
{"stoichiometric_species": ["Fe"], "prototype_label": "A_tP28_136_f2ij", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "431225396399", "version": "000"}
{"stoichiometric_species": ["Fe", "H"], "prototype_label": "AB_cF8_225_a_b", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "437111576442", "version": "000"}
{"stoichiometric_species": ["Fe", "H"], "prototype_label": "AB3_cP8_223_a_c", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "791701635408", "version": "000"}
{"stoichiometric_species": ["Fe", "H", "O"], "prototype_label": "A5BC8_hP28_186_2bc_a_ab2c", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "330153643694", "version": "000"}
{"stoichiometric_species": ["Fe", "H", "O"], "prototype_label": "ABC2_oC16_36_a_a_2a", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "668006995375", "version": "000"}
{"stoichiometric_species": ["Fe", "H", "O"], "prototype_label": "ABC2_oC16_63_c_a_2c", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "637096688907", "version": "000"}
{"stoichiometric_species": ["Fe", "H", "O"], "prototype_label": "ABC2_oC16_63_c_c_2c", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "396640225711", "version": "000"}
{"stoichiometric_species": ["Fe", "H", "O"], "prototype_label": "ABC2_oP16_59_e_e_2e", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "374178689572", "version": "000"}
{"stoichiometric_species": ["Fe", "H", "O"], "prototype_label": "ABC2_tI32_87_h_h_2h", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "288101654294", "version": "000"}
{"stoichiometric_species": ["Fe", "Mn", "Si"], "prototype_label": "A2BC_cF16_225_c_a_b", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "102393595532", "version": "000"}
{"stoichiometric_species": ["Fe", "N"], "prototype_label": "A2B_mC18_5_3c_2ab", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "404364188129", "version": "000"}
{"stoichiometric_species": ["Fe", "N"], "prototype_label": "A2B_mC18_12_ij_ah", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "235497430369", "version": "000"}
{"stoichiometric_species": ["Fe", "N"], "prototype_label": "A2B_oP12_29_2a_a", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "298614689535", "version": "000"}
{"stoichiometric_species": ["Fe", "N"], "prototype_label": "A2B_oP12_60_d_c", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "934037717752", "version": "000"}
{"stoichiometric_species": ["Fe", "N"], "prototype_label": "A3B_hP8_182_g_c", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "070675679101", "version": "000"}
{"stoichiometric_species": ["Fe", "N"], "prototype_label": "A3B_mC16_5_3c_ab", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "266567496377", "version": "000"}
{"stoichiometric_species": ["Fe", "N"], "prototype_label": "A3B_oC16_20_ac_b", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "247391501155", "version": "000"}
{"stoichiometric_species": ["Fe", "N"], "prototype_label": "A3B_oP16_62_cd_c", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "189117459190", "version": "000"}
{"stoichiometric_species": ["Fe", "N"], "prototype_label": "A4B_cP5_221_ac_b", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "152414201210", "version": "000"}
{"stoichiometric_species": ["Fe", "N"], "prototype_label": "A8B_tI18_139_deh_a", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "098461196878", "version": "000"}
{"stoichiometric_species": ["Fe", "N"], "prototype_label": "AB_cF8_216_a_c", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "036559175668", "version": "000"}
{"stoichiometric_species": ["Fe", "N"], "prototype_label": "AB_cF8_225_a_b", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "383869985093", "version": "000"}
{"stoichiometric_species": ["Fe", "Nb"], "prototype_label": "A2B_cF24_227_c_b", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "520206846566", "version": "000"}
{"stoichiometric_species": ["Fe", "Nb"], "prototype_label": "A2B_hP12_194_ah_f", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "414476520020", "version": "000"}
{"stoichiometric_species": ["Fe", "Nb"], "prototype_label": "A2B_hP24_194_fgh_ef", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "053747238078", "version": "000"}
{"stoichiometric_species": ["Fe", "Nb"], "prototype_label": "A2B_oC24_63_acg_f", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "292737606210", "version": "000"}
{"stoichiometric_species": ["Fe", "Nb"], "prototype_label": "A3B_cF16_225_ac_b", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "494865460580", "version": "000"}
{"stoichiometric_species": ["Fe", "Nb"], "prototype_label": "A3B_cP4_221_c_a", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "390768758658", "version": "000"}
{"stoichiometric_species": ["Fe", "Nb"], "prototype_label": "A3B_tI8_139_ad_b", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "236507433058", "version": "000"}
{"stoichiometric_species": ["Fe", "Nb"], "prototype_label": "A7B6_hR13_166_ah_3c", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "253496930549", "version": "000"}
{"stoichiometric_species": ["Fe", "Nb"], "prototype_label": "AB2_cF24_227_a_d", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "879075796816", "version": "000"}
{"stoichiometric_species": ["Fe", "Nb"], "prototype_label": "AB3_cF16_225_a_bc", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "883267787670", "version": "000"}
{"stoichiometric_species": ["Fe", "Nb"], "prototype_label": "AB3_cP4_221_a_c", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "793604034807", "version": "000"}
{"stoichiometric_species": ["Fe", "Nb"], "prototype_label": "AB3_tI8_139_a_bd", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "274997354004", "version": "000"}
{"stoichiometric_species": ["Fe", "Ni"], "prototype_label": "A2B_cF24_227_c_b", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "474671426936", "version": "000"}
{"stoichiometric_species": ["Fe", "Ni"], "prototype_label": "A3B_cF16_225_ac_b", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "373026712153", "version": "000"}
{"stoichiometric_species": ["Fe", "Ni"], "prototype_label": "A3B_cP4_221_c_a", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "494334422890", "version": "000"}
{"stoichiometric_species": ["Fe", "Ni"], "prototype_label": "A3B_tI8_139_ad_b", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "718318551797", "version": "000"}
{"stoichiometric_species": ["Fe", "Ni"], "prototype_label": "AB_tP2_123_a_d", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "418734225531", "version": "000"}
{"stoichiometric_species": ["Fe", "Ni"], "prototype_label": "AB2_cF24_227_a_d", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "090787008838", "version": "000"}
{"stoichiometric_species": ["Fe", "Ni"], "prototype_label": "AB3_cF16_225_a_bc", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "847251736901", "version": "000"}
{"stoichiometric_species": ["Fe", "Ni"], "prototype_label": "AB3_cP4_221_a_c", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "670657186258", "version": "000"}
{"stoichiometric_species": ["Fe", "Ni"], "prototype_label": "AB3_tI8_139_a_bd", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "193795921330", "version": "000"}
{"stoichiometric_species": ["Fe", "O"], "prototype_label": "A2B3_cI80_206_ad_e", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "402558564483", "version": "000"}
{"stoichiometric_species": ["Fe", "O"], "prototype_label": "A2B3_hR10_167_c_e", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "563013778699", "version": "000"}
{"stoichiometric_species": ["Fe", "O"], "prototype_label": "A2B3_oC20_63_ac_cf", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "997668774276", "version": "000"}
{"stoichiometric_species": ["Fe", "O"], "prototype_label": "A2B3_oP20_60_d_cd", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "976027094334", "version": "000"}
{"stoichiometric_species": ["Fe", "O"], "prototype_label": "A2B3_oP40_33_4a_6a", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "335403260133", "version": "000"}
{"stoichiometric_species": ["Fe", "O"], "prototype_label": "A3B4_cF56_216_abe_2e", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "090299786191", "version": "000"}
{"stoichiometric_species": ["Fe", "O"], "prototype_label": "A3B4_cF56_227_ad_e", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "770415866619", "version": "000"}
{"stoichiometric_species": ["Fe", "O"], "prototype_label": "A3B4_hR14_166_acd_ch", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "876721896345", "version": "000"}
{"stoichiometric_species": ["Fe", "O"], "prototype_label": "A3B4_mP28_10_acehmno_2m2n2o", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "265740937714", "version": "000"}
{"stoichiometric_species": ["Fe", "O"], "prototype_label": "A3B4_oC28_63_cf_acf", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "825472711483", "version": "000"}
{"stoichiometric_species": ["Fe", "O"], "prototype_label": "A3B4_oI28_74_ace_hi", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "515489732022", "version": "000"}
{"stoichiometric_species": ["Fe", "O"], "prototype_label": "A3B4_oP28_57_de_cde", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "837491378485", "version": "000"}
{"stoichiometric_species": ["Fe", "O"], "prototype_label": "A3B4_oP56_57_ac4d_4d2e", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "530391359135", "version": "000"}
{"stoichiometric_species": ["Fe", "O"], "prototype_label": "A4B5_oC36_63_acf_c2f", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "878884340971", "version": "000"}
{"stoichiometric_species": ["Fe", "O"], "prototype_label": "AB_cF8_225_a_b", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "466239570277", "version": "000"}
{"stoichiometric_species": ["Fe", "O"], "prototype_label": "AB_hR2_166_a_b", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "232742620903", "version": "000"}
{"stoichiometric_species": ["Fe", "P"], "prototype_label": "A2B_hP9_189_fg_ad", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "691097885671", "version": "000"}
{"stoichiometric_species": ["Fe", "P"], "prototype_label": "A2B_oC18_38_abde_ae", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "285477920338", "version": "000"}
{"stoichiometric_species": ["Fe", "P"], "prototype_label": "A3B_tI32_82_3g_g", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "379808338756", "version": "000"}
{"stoichiometric_species": ["Fe", "P"], "prototype_label": "A4B_tP5_123_ace_b", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "870878567244", "version": "000"}
{"stoichiometric_species": ["Fe", "P"], "prototype_label": "AB_oP8_62_c_c", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "033381032852", "version": "000"}
{"stoichiometric_species": ["Fe", "P"], "prototype_label": "AB2_oP6_58_a_g", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "882623880807", "version": "000"}
{"stoichiometric_species": ["Fe", "P"], "prototype_label": "AB4_mC40_15_ae_4f", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "803619650334", "version": "000"}
{"stoichiometric_species": ["Fe", "P"], "prototype_label": "AB4_mP30_14_ae_6e", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "011567938696", "version": "000"}
{"stoichiometric_species": ["Fe", "P"], "prototype_label": "AB4_oC20_20_a_2c", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "721534059197", "version": "000"}
{"stoichiometric_species": ["Fe", "Pd"], "prototype_label": "A3B_cP4_221_c_a", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "049899331397", "version": "000"}
{"stoichiometric_species": ["Fe", "Pd"], "prototype_label": "AB_tP2_123_a_d", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "924345160370", "version": "000"}
{"stoichiometric_species": ["Fe", "Pd"], "prototype_label": "AB3_cP4_221_a_c", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "765394510150", "version": "000"}
{"stoichiometric_species": ["Fe", "Pt"], "prototype_label": "A3B_cP4_221_c_a", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "649373065076", "version": "000"}
{"stoichiometric_species": ["Fe", "Pt"], "prototype_label": "A3B_tP4_123_ae_c", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "685267799649", "version": "000"}
{"stoichiometric_species": ["Fe", "Pt"], "prototype_label": "AB_tP2_123_a_d", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "587099904801", "version": "000"}
{"stoichiometric_species": ["Fe", "Pt"], "prototype_label": "AB3_cP4_221_a_c", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "113683518486", "version": "000"}
{"stoichiometric_species": ["Fe", "Si"], "prototype_label": "A11B5_cP16_221_cg_abd", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "321847634460", "version": "000"}
{"stoichiometric_species": ["Fe", "Si"], "prototype_label": "A2B_hP6_164_abd_d", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "470443956201", "version": "000"}
{"stoichiometric_species": ["Fe", "Si"], "prototype_label": "A3B_cF16_225_ac_b", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "630051280679", "version": "000"}
{"stoichiometric_species": ["Fe", "Si"], "prototype_label": "A5B3_cI64_230_ac_d", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "158586598586", "version": "000"}
{"stoichiometric_species": ["Fe", "Si"], "prototype_label": "A5B3_hP16_193_dg_g", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "701221071284", "version": "000"}
{"stoichiometric_species": ["Fe", "Si"], "prototype_label": "A5B3_oC32_63_ceg_cg", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "876057339174", "version": "000"}
{"stoichiometric_species": ["Fe", "Si"], "prototype_label": "AB_cP8_198_a_a", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "654183973871", "version": "000"}
{"stoichiometric_species": ["Fe", "Si"], "prototype_label": "AB2_oC48_64_df_2g", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "246866685858", "version": "000"}
{"stoichiometric_species": ["Fe", "Si"], "prototype_label": "AB2_tP3_123_a_h", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "554592909724", "version": "000"}
{"stoichiometric_species": ["Fe", "Ti"], "prototype_label": "A2B_hP12_194_ah_f", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "256151387810", "version": "000"}
{"stoichiometric_species": ["Fe", "Ti"], "prototype_label": "A2B_oC24_63_acg_f", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "995052853936", "version": "000"}
{"stoichiometric_species": ["Fe", "Ti"], "prototype_label": "AB_cP2_221_a_b", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "982430578536", "version": "000"}
{"stoichiometric_species": ["Fe", "Ti"], "prototype_label": "AB2_cF96_227_e_cf", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "909066050793", "version": "000"}
{"stoichiometric_species": ["Fe", "V"], "prototype_label": "AB_cP2_221_a_b", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "988932589784", "version": "000"}
{"stoichiometric_species": ["Fe", "V"], "prototype_label": "AB3_cP8_223_a_c", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "043064482450", "version": "000"}
{"stoichiometric_species": ["Fe", "W"], "prototype_label": "A2B_hP12_194_ah_f", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "894643686772", "version": "000"}
{"stoichiometric_species": ["Fe", "W"], "prototype_label": "A7B6_hR13_166_ah_3c", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "093307271581", "version": "000"}
{"stoichiometric_species": ["Ga"], "prototype_label": "A_cI12_220_a", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "752013112248", "version": "000"}
{"stoichiometric_species": ["Ga"], "prototype_label": "A_hR22_166_ae3h", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "029854324045", "version": "000"}
{"stoichiometric_species": ["Ga"], "prototype_label": "A_mC2_12_a", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "519015898946", "version": "000"}
{"stoichiometric_species": ["Ga"], "prototype_label": "A_mC4_15_e", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "668077450383", "version": "000"}
{"stoichiometric_species": ["Ga"], "prototype_label": "A_oC4_63_c", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "949105218323", "version": "000"}
{"stoichiometric_species": ["Ga"], "prototype_label": "A_oC40_63_2cf3g", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "602564159289", "version": "000"}
{"stoichiometric_species": ["Ga"], "prototype_label": "A_oC8_63_g", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "779171025738", "version": "000"}
{"stoichiometric_species": ["Ga"], "prototype_label": "A_oC8_64_f", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "601702367086", "version": "000"}
{"stoichiometric_species": ["Ga"], "prototype_label": "A_tI2_139_a", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "626622777973", "version": "000"}
{"stoichiometric_species": ["Ga", "N"], "prototype_label": "AB_cF8_216_a_c", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "775560247402", "version": "000"}
{"stoichiometric_species": ["Ga", "N"], "prototype_label": "AB_cF8_225_a_b", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "212121049140", "version": "000"}
{"stoichiometric_species": ["Ga", "N"], "prototype_label": "AB_hP4_186_b_b", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "763842114124", "version": "000"}
{"stoichiometric_species": ["Ga", "N"], "prototype_label": "AB_hP4_194_c_b", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "657019688739", "version": "000"}
{"stoichiometric_species": ["Ge"], "prototype_label": "A_cF136_227_aeg", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "598741138774", "version": "000"}
{"stoichiometric_species": ["Ge"], "prototype_label": "A_cF4_225_a", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "786735099538", "version": "000"}
{"stoichiometric_species": ["Ge"], "prototype_label": "A_cF8_227_a", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "910574437576", "version": "000"}
{"stoichiometric_species": ["Ge"], "prototype_label": "A_cI16_206_c", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "810480294040", "version": "000"}
{"stoichiometric_species": ["Ge"], "prototype_label": "A_cI2_229_a", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "486313870436", "version": "000"}
{"stoichiometric_species": ["Ge"], "prototype_label": "A_hP2_194_c", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "859962757140", "version": "000"}
{"stoichiometric_species": ["Ge"], "prototype_label": "A_hP4_194_f", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "667535470365", "version": "000"}
{"stoichiometric_species": ["Ge"], "prototype_label": "A_hP8_194_ef", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "947744138312", "version": "000"}
{"stoichiometric_species": ["Ge"], "prototype_label": "A_hR8_148_cf", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "141908919266", "version": "000"}
{"stoichiometric_species": ["Ge"], "prototype_label": "A_oC16_64_df", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "438638068829", "version": "000"}
{"stoichiometric_species": ["Ge"], "prototype_label": "A_oI4_74_e", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "713491777112", "version": "000"}
{"stoichiometric_species": ["Ge"], "prototype_label": "A_tI4_141_a", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "761161606215", "version": "000"}
{"stoichiometric_species": ["Ge"], "prototype_label": "A_tP12_96_ab", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "411290024009", "version": "000"}
{"stoichiometric_species": ["H"], "prototype_label": "A_cI2_229_a", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "920985924168", "version": "000"}
{"stoichiometric_species": ["H"], "prototype_label": "A_hP2_194_c", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "564972390616", "version": "000"}
{"stoichiometric_species": ["H"], "prototype_label": "A_hP4_194_f", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "132196593910", "version": "000"}
{"stoichiometric_species": ["H"], "prototype_label": "A_tP1_123_a", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "912047893367", "version": "000"}
{"stoichiometric_species": ["H", "Mg"], "prototype_label": "A2B_cF12_225_c_a", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "105546945587", "version": "000"}
{"stoichiometric_species": ["H", "Mg"], "prototype_label": "A2B_cP12_205_c_a", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "834167284325", "version": "000"}
{"stoichiometric_species": ["H", "Mg"], "prototype_label": "A2B_oP12_60_d_c", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "378332925705", "version": "000"}
{"stoichiometric_species": ["H", "Mg"], "prototype_label": "A2B_oP12_62_2c_c", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "468260338985", "version": "000"}
{"stoichiometric_species": ["H", "Mg"], "prototype_label": "A2B_oP24_61_2c_c", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "327487980708", "version": "000"}
{"stoichiometric_species": ["H", "Mg"], "prototype_label": "A2B_tP6_136_f_a", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "448921544918", "version": "000"}
{"stoichiometric_species": ["H", "N"], "prototype_label": "A3B_cP16_198_b_a", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "407533011919", "version": "000"}
{"stoichiometric_species": ["H", "N"], "prototype_label": "AB_oP32_53_2i_abegh", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "218841186177", "version": "000"}
{"stoichiometric_species": ["H", "N"], "prototype_label": "AB3_mC64_9_4a_12a", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "417050144557", "version": "000"}
{"stoichiometric_species": ["H", "N", "O"], "prototype_label": "A4B2C3_oP18_59_ef_ab_ae", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "266229679769", "version": "000"}
{"stoichiometric_species": ["H", "N", "O"], "prototype_label": "A4B2C3_oP72_56_4e_cde_cd2e", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "090676115506", "version": "000"}
{"stoichiometric_species": ["H", "N", "O"], "prototype_label": "A4B2C3_tP72_77_8d_ab2c2d_6d", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "619817320619", "version": "000"}
{"stoichiometric_species": ["H", "N", "O"], "prototype_label": "A5B3C3_mP44_14_5e_3e_3e", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "565444848818", "version": "000"}
{"stoichiometric_species": ["H", "N", "O"], "prototype_label": "A5BC2_mP32_14_5e_e_2e", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "654256939080", "version": "000"}
{"stoichiometric_species": ["H", "N", "O"], "prototype_label": "A7BC6_oP56_19_7a_a_6a", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "264365858806", "version": "000"}
{"stoichiometric_species": ["H", "Na"], "prototype_label": "AB_cF8_225_a_b", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "922567636406", "version": "000"}
{"stoichiometric_species": ["H", "Na"], "prototype_label": "AB_cP2_221_a_b", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 --bind-to numa lmp", "max_workers": 3}, "kimnum": "669057687844", "version": "000"}