forked from openkim-hackathons/NPTCrystalStructure
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest_generator.json
More file actions
1749 lines (1749 loc) · 323 KB
/
test_generator.json
File metadata and controls
1749 lines (1749 loc) · 323 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 lmp"}, "version": "000"}
{"stoichiometric_species": ["Ag"], "prototype_label": "A_hP2_194_c", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 lmp"}, "version": "000"}
{"stoichiometric_species": ["Ag"], "prototype_label": "A_hP4_194_ac", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "version": "000"}
{"stoichiometric_species": ["Al"], "prototype_label": "A_cF4_225_a", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 lmp"}, "version": "000"}
{"stoichiometric_species": ["Al"], "prototype_label": "A_cI2_229_a", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "version": "000"}
{"stoichiometric_species": ["Ar"], "prototype_label": "A_cF4_225_a", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 lmp"}, "version": "000"}
{"stoichiometric_species": ["Ar"], "prototype_label": "A_hP2_194_c", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 lmp"}, "version": "000"}
{"stoichiometric_species": ["As"], "prototype_label": "A_cP1_221_a", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 lmp"}, "version": "000"}
{"stoichiometric_species": ["As"], "prototype_label": "A_hR2_166_c", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 lmp"}, "version": "000"}
{"stoichiometric_species": ["As"], "prototype_label": "A_oC8_64_f", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 lmp"}, "version": "000"}
{"stoichiometric_species": ["As"], "prototype_label": "A_tI4_139_e", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "version": "000"}
{"stoichiometric_species": ["Au"], "prototype_label": "A_cF4_225_a", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "version": "000"}
{"stoichiometric_species": ["B"], "prototype_label": "A_hR105_166_ac9h4i", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 lmp"}, "version": "000"}
{"stoichiometric_species": ["B"], "prototype_label": "A_hR12_166_2h", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 lmp"}, "version": "000"}
{"stoichiometric_species": ["B"], "prototype_label": "A_hR15_166_ac2h", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 lmp"}, "version": "000"}
{"stoichiometric_species": ["B"], "prototype_label": "A_oP28_58_3g2h", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 lmp"}, "version": "000"}
{"stoichiometric_species": ["B"], "prototype_label": "A_tP48_134_2m2n", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 lmp"}, "version": "000"}
{"stoichiometric_species": ["B"], "prototype_label": "A_tP50_134_a2m2n", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "version": "000"}
{"stoichiometric_species": ["Ba"], "prototype_label": "A_cF4_225_a", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 lmp"}, "version": "000"}
{"stoichiometric_species": ["Ba"], "prototype_label": "A_cI2_229_a", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 lmp"}, "version": "000"}
{"stoichiometric_species": ["Ba"], "prototype_label": "A_cP1_221_a", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 lmp"}, "version": "000"}
{"stoichiometric_species": ["Ba"], "prototype_label": "A_hP1_191_a", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 lmp"}, "version": "000"}
{"stoichiometric_species": ["Ba"], "prototype_label": "A_hP2_194_c", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 lmp"}, "version": "000"}
{"stoichiometric_species": ["Ba"], "prototype_label": "A_oC4_63_c", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 lmp"}, "version": "000"}
{"stoichiometric_species": ["Ba"], "prototype_label": "A_tI8_140_h", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 lmp"}, "version": "000"}
{"stoichiometric_species": ["Be"], "prototype_label": "A_cI2_229_a", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 lmp"}, "version": "000"}
{"stoichiometric_species": ["Be"], "prototype_label": "A_hP2_194_c", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "version": "000"}
{"stoichiometric_species": ["Bi"], "prototype_label": "A_cI2_229_a", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 lmp"}, "version": "000"}
{"stoichiometric_species": ["Bi"], "prototype_label": "A_cP1_221_a", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 lmp"}, "version": "000"}
{"stoichiometric_species": ["Bi"], "prototype_label": "A_hR2_166_c", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 lmp"}, "version": "000"}
{"stoichiometric_species": ["Bi"], "prototype_label": "A_mC4_12_i", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 lmp"}, "version": "000"}
{"stoichiometric_species": ["Bi"], "prototype_label": "A_mP2_10_m", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 lmp"}, "version": "000"}
{"stoichiometric_species": ["Bi"], "prototype_label": "A_mP4_11_2e", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 lmp"}, "version": "000"}
{"stoichiometric_species": ["Bi"], "prototype_label": "A_mP8_14_2e", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 lmp"}, "version": "000"}
{"stoichiometric_species": ["Bi"], "prototype_label": "A_oC16_64_df", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 lmp"}, "version": "000"}
{"stoichiometric_species": ["Bi"], "prototype_label": "A_tI2_139_a", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 lmp"}, "version": "000"}
{"stoichiometric_species": ["Bi"], "prototype_label": "A_tI8_140_h", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 lmp"}, "version": "000"}
{"stoichiometric_species": ["Br"], "prototype_label": "A_cF4_225_a", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 lmp"}, "version": "000"}
{"stoichiometric_species": ["Br"], "prototype_label": "A_oC8_64_f", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 lmp"}, "version": "000"}
{"stoichiometric_species": ["Br"], "prototype_label": "A_oI2_71_a", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 lmp"}, "version": "000"}
{"stoichiometric_species": ["Br"], "prototype_label": "A_tI2_139_a", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "version": "000"}
{"stoichiometric_species": ["C"], "prototype_label": "A_cF16_227_c", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 lmp"}, "version": "000"}
{"stoichiometric_species": ["C"], "prototype_label": "A_cF240_202_h2i", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 lmp"}, "version": "000"}
{"stoichiometric_species": ["C"], "prototype_label": "A_cF8_227_a", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 lmp"}, "version": "000"}
{"stoichiometric_species": ["C"], "prototype_label": "A_cI16_206_c", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 lmp"}, "version": "000"}
{"stoichiometric_species": ["C"], "prototype_label": "A_cI16_229_f", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 lmp"}, "version": "000"}
{"stoichiometric_species": ["C"], "prototype_label": "A_cI8_214_a", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 lmp"}, "version": "000"}
{"stoichiometric_species": ["C"], "prototype_label": "A_cP1_221_a", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 lmp"}, "version": "000"}
{"stoichiometric_species": ["C"], "prototype_label": "A_cP20_221_gj", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 lmp"}, "version": "000"}
{"stoichiometric_species": ["C"], "prototype_label": "A_hP12_194_bc2f", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 lmp"}, "version": "000"}
{"stoichiometric_species": ["C"], "prototype_label": "A_hP12_194_e2f", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 lmp"}, "version": "000"}
{"stoichiometric_species": ["C"], "prototype_label": "A_hP16_194_e3f", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 lmp"}, "version": "000"}
{"stoichiometric_species": ["C"], "prototype_label": "A_hP2_191_c", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 lmp"}, "version": "000"}
{"stoichiometric_species": ["C"], "prototype_label": "A_hP4_194_bc", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 lmp"}, "version": "000"}
{"stoichiometric_species": ["C"], "prototype_label": "A_hP4_194_f", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 lmp"}, "version": "000"}
{"stoichiometric_species": ["C"], "prototype_label": "A_hP8_194_ef", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 lmp"}, "version": "000"}
{"stoichiometric_species": ["C"], "prototype_label": "A_hR10_166_5c", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 lmp"}, "version": "000"}
{"stoichiometric_species": ["C"], "prototype_label": "A_hR14_166_7c", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 lmp"}, "version": "000"}
{"stoichiometric_species": ["C"], "prototype_label": "A_hR2_166_c", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 lmp"}, "version": "000"}
{"stoichiometric_species": ["C"], "prototype_label": "A_hR4_166_2c", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 lmp"}, "version": "000"}
{"stoichiometric_species": ["C"], "prototype_label": "A_hR60_166_2h4i", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 lmp"}, "version": "000"}
{"stoichiometric_species": ["C"], "prototype_label": "A_mC16_12_4i", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 lmp"}, "version": "000"}
{"stoichiometric_species": ["C"], "prototype_label": "A_oC16_65_mn", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 lmp"}, "version": "000"}
{"stoichiometric_species": ["C"], "prototype_label": "A_oC16_65_pq", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 lmp"}, "version": "000"}
{"stoichiometric_species": ["C"], "prototype_label": "A_oC8_65_gh", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 lmp"}, "version": "000"}
{"stoichiometric_species": ["C"], "prototype_label": "A_oC8_67_m", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 lmp"}, "version": "000"}
{"stoichiometric_species": ["C"], "prototype_label": "A_oI120_71_lmn6o", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 lmp"}, "version": "000"}
{"stoichiometric_species": ["C"], "prototype_label": "A_oP16_62_4c", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 lmp"}, "version": "000"}
{"stoichiometric_species": ["C"], "prototype_label": "A_tI8_139_h", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "version": "000"}
{"stoichiometric_species": ["Ca"], "prototype_label": "A_cF4_225_a", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 lmp"}, "version": "000"}
{"stoichiometric_species": ["Ca"], "prototype_label": "A_cI2_229_a", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 lmp"}, "version": "000"}
{"stoichiometric_species": ["Ca"], "prototype_label": "A_cP1_221_a", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 lmp"}, "version": "000"}
{"stoichiometric_species": ["Ca"], "prototype_label": "A_hP1_191_a", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 lmp"}, "version": "000"}
{"stoichiometric_species": ["Ca"], "prototype_label": "A_hP2_194_c", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 lmp"}, "version": "000"}
{"stoichiometric_species": ["Ca"], "prototype_label": "A_oC2_65_a", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 lmp"}, "version": "000"}
{"stoichiometric_species": ["Ca"], "prototype_label": "A_oF4_69_a", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 lmp"}, "version": "000"}
{"stoichiometric_species": ["Ca"], "prototype_label": "A_tI2_139_a", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 lmp"}, "version": "000"}
{"stoichiometric_species": ["Ca"], "prototype_label": "A_tI8_140_h", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "version": "000"}
{"stoichiometric_species": ["Cd"], "prototype_label": "A_hP2_194_c", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "version": "000"}
{"stoichiometric_species": ["Ce"], "prototype_label": "A_cF4_225_a", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 lmp"}, "version": "000"}
{"stoichiometric_species": ["Ce"], "prototype_label": "A_cI2_229_a", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 lmp"}, "version": "000"}
{"stoichiometric_species": ["Ce"], "prototype_label": "A_hP2_194_c", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 lmp"}, "version": "000"}
{"stoichiometric_species": ["Ce"], "prototype_label": "A_hP4_194_ac", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 lmp"}, "version": "000"}
{"stoichiometric_species": ["Ce"], "prototype_label": "A_oC4_63_c", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "version": "000"}
{"stoichiometric_species": ["Cl"], "prototype_label": "A_oC8_64_f", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 lmp"}, "version": "000"}
{"stoichiometric_species": ["Cl"], "prototype_label": "A_tP16_138_j", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "version": "000"}
{"stoichiometric_species": ["Co"], "prototype_label": "A_cF4_225_a", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 lmp"}, "version": "000"}
{"stoichiometric_species": ["Co"], "prototype_label": "A_hP2_194_c", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 lmp"}, "version": "000"}
{"stoichiometric_species": ["Co"], "prototype_label": "A_oC4_63_c", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 lmp"}, "version": "000"}
{"stoichiometric_species": ["Co"], "prototype_label": "A_tI2_139_a", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 lmp"}, "version": "000"}
{"stoichiometric_species": ["Co"], "prototype_label": "A_tP28_136_f2ij", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "version": "000"}
{"stoichiometric_species": ["Cr"], "prototype_label": "A_cF4_225_a", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 lmp"}, "version": "000"}
{"stoichiometric_species": ["Cr"], "prototype_label": "A_cI2_229_a", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 lmp"}, "version": "000"}
{"stoichiometric_species": ["Cr"], "prototype_label": "A_cP8_223_ac", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 lmp"}, "version": "000"}
{"stoichiometric_species": ["Cr"], "prototype_label": "A_hP2_194_c", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 lmp"}, "version": "000"}
{"stoichiometric_species": ["Cr"], "prototype_label": "A_tP28_136_f2ij", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "version": "000"}
{"stoichiometric_species": ["Cs"], "prototype_label": "A_cF4_225_a", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 lmp"}, "version": "000"}
{"stoichiometric_species": ["Cs"], "prototype_label": "A_cI2_229_a", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 lmp"}, "version": "000"}
{"stoichiometric_species": ["Cs"], "prototype_label": "A_oC4_63_c", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 lmp"}, "version": "000"}
{"stoichiometric_species": ["Cs"], "prototype_label": "A_oC84_20_a10c", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 lmp"}, "version": "000"}
{"stoichiometric_species": ["Cs"], "prototype_label": "A_oP4_62_c", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 lmp"}, "version": "000"}
{"stoichiometric_species": ["Cs"], "prototype_label": "A_tI2_139_a", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 lmp"}, "version": "000"}
{"stoichiometric_species": ["Cs"], "prototype_label": "A_tI4_141_a", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "version": "000"}
{"stoichiometric_species": ["Cu"], "prototype_label": "A_cF4_225_a", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 lmp"}, "version": "000"}
{"stoichiometric_species": ["Cu"], "prototype_label": "A_cI2_229_a", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "version": "000"}
{"stoichiometric_species": ["F"], "prototype_label": "A_aP4_2_2i", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 lmp"}, "version": "000"}
{"stoichiometric_species": ["F"], "prototype_label": "A_cP8_223_ac", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 lmp"}, "version": "000"}
{"stoichiometric_species": ["F"], "prototype_label": "A_mC8_12_2i", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 lmp"}, "version": "000"}
{"stoichiometric_species": ["F"], "prototype_label": "A_mC8_15_f", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "version": "000"}
{"stoichiometric_species": ["Fe"], "prototype_label": "A_cF4_225_a", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 lmp"}, "version": "000"}
{"stoichiometric_species": ["Fe"], "prototype_label": "A_cI2_229_a", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 lmp"}, "version": "000"}
{"stoichiometric_species": ["Fe"], "prototype_label": "A_hP2_194_c", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 lmp"}, "version": "000"}
{"stoichiometric_species": ["Fe"], "prototype_label": "A_tP1_123_a", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 lmp"}, "version": "000"}
{"stoichiometric_species": ["Fe"], "prototype_label": "A_tP28_136_f2ij", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "version": "000"}
{"stoichiometric_species": ["Ga"], "prototype_label": "A_cI12_220_a", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 lmp"}, "version": "000"}
{"stoichiometric_species": ["Ga"], "prototype_label": "A_hR22_166_ae3h", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 lmp"}, "version": "000"}
{"stoichiometric_species": ["Ga"], "prototype_label": "A_mC2_12_a", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 lmp"}, "version": "000"}
{"stoichiometric_species": ["Ga"], "prototype_label": "A_mC4_15_e", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 lmp"}, "version": "000"}
{"stoichiometric_species": ["Ga"], "prototype_label": "A_oC4_63_c", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 lmp"}, "version": "000"}
{"stoichiometric_species": ["Ga"], "prototype_label": "A_oC40_63_2cf3g", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 lmp"}, "version": "000"}
{"stoichiometric_species": ["Ga"], "prototype_label": "A_oC8_63_g", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 lmp"}, "version": "000"}
{"stoichiometric_species": ["Ga"], "prototype_label": "A_oC8_64_f", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 lmp"}, "version": "000"}
{"stoichiometric_species": ["Ga"], "prototype_label": "A_tI2_139_a", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "version": "000"}
{"stoichiometric_species": ["Ge"], "prototype_label": "A_cF136_227_aeg", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 lmp"}, "version": "000"}
{"stoichiometric_species": ["Ge"], "prototype_label": "A_cF4_225_a", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 lmp"}, "version": "000"}
{"stoichiometric_species": ["Ge"], "prototype_label": "A_cF8_227_a", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 lmp"}, "version": "000"}
{"stoichiometric_species": ["Ge"], "prototype_label": "A_cI16_206_c", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 lmp"}, "version": "000"}
{"stoichiometric_species": ["Ge"], "prototype_label": "A_cI2_229_a", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 lmp"}, "version": "000"}
{"stoichiometric_species": ["Ge"], "prototype_label": "A_hP2_194_c", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 lmp"}, "version": "000"}
{"stoichiometric_species": ["Ge"], "prototype_label": "A_hP4_194_f", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 lmp"}, "version": "000"}
{"stoichiometric_species": ["Ge"], "prototype_label": "A_hP8_194_ef", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 lmp"}, "version": "000"}
{"stoichiometric_species": ["Ge"], "prototype_label": "A_hR8_148_cf", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 lmp"}, "version": "000"}
{"stoichiometric_species": ["Ge"], "prototype_label": "A_oC16_64_df", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 lmp"}, "version": "000"}
{"stoichiometric_species": ["Ge"], "prototype_label": "A_oI4_74_e", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 lmp"}, "version": "000"}
{"stoichiometric_species": ["Ge"], "prototype_label": "A_tI4_141_a", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 lmp"}, "version": "000"}
{"stoichiometric_species": ["Ge"], "prototype_label": "A_tP12_96_ab", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 lmp"}, "version": "000"}
{"stoichiometric_species": ["H"], "prototype_label": "A_cI2_229_a", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 lmp"}, "version": "000"}
{"stoichiometric_species": ["H"], "prototype_label": "A_hP2_194_c", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 lmp"}, "version": "000"}
{"stoichiometric_species": ["H"], "prototype_label": "A_hP4_194_f", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 lmp"}, "version": "000"}
{"stoichiometric_species": ["H"], "prototype_label": "A_tP1_123_a", "temperature_K": 300, "crystal_genome_test_args": {"lammps_command": "mpirun -np 20 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "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 lmp"}, "version": "000"}