aldepyde 0.0.0a1__py3-none-any.whl → 0.0.0a32__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of aldepyde might be problematic. Click here for more details.

Files changed (45) hide show
  1. aldepyde/Parsers/_mmcif_parser.py +0 -0
  2. aldepyde/Parsers/_pdb_parser.py +0 -0
  3. aldepyde/__init__.py +50 -0
  4. aldepyde/_config.py +113 -0
  5. aldepyde/biomolecule/Residue.py +9 -0
  6. aldepyde/biomolecule/_Atom.py +95 -0
  7. aldepyde/biomolecule/_AtomFactory.py +71 -0
  8. aldepyde/biomolecule/__init__.py +15 -0
  9. aldepyde/biomolecule/_amino_acid.py +6 -0
  10. aldepyde/biomolecule/_dna.py +6 -0
  11. aldepyde/biomolecule/_pdb.py +455 -0
  12. aldepyde/biomolecule/_rna.py +6 -0
  13. aldepyde/biomolecule/utils.py +60 -0
  14. aldepyde/cache/__init__.py +2 -0
  15. aldepyde/cache/_cache.py +257 -0
  16. aldepyde/cache/cachemanager.py +212 -0
  17. aldepyde/cache/downloader.py +13 -0
  18. aldepyde/cache/utils.py +32 -0
  19. aldepyde/configurable.py +7 -0
  20. aldepyde/data/RemoteFileHandler.py +32 -0
  21. aldepyde/data/__init__.py +1 -0
  22. aldepyde/data.py +148 -0
  23. aldepyde/databases/PDB.py +0 -0
  24. aldepyde/databases/RemoteFileHandler.py +43 -0
  25. aldepyde/databases/UniRef.py +75 -0
  26. aldepyde/databases/__init__.py +0 -0
  27. aldepyde/databases/_database.py +38 -0
  28. aldepyde/env.py +43 -0
  29. aldepyde/fetcher/__init__.py +0 -0
  30. aldepyde/fetcher/test.py +2 -0
  31. aldepyde/json/CHG.json +25 -0
  32. aldepyde/json/Swiss_Prot.json +25 -0
  33. aldepyde/json/chemistry.json +4622 -0
  34. aldepyde/rand/RandomProtein.py +402 -0
  35. aldepyde/rand/__init__.py +3 -0
  36. aldepyde/stats/ProteinStats.py +89 -0
  37. aldepyde/stats/__init__.py +0 -0
  38. aldepyde/utils.py +275 -0
  39. {aldepyde-0.0.0a1.dist-info → aldepyde-0.0.0a32.dist-info}/METADATA +4 -3
  40. aldepyde-0.0.0a32.dist-info/RECORD +43 -0
  41. {aldepyde-0.0.0a1.dist-info → aldepyde-0.0.0a32.dist-info}/WHEEL +1 -1
  42. aldepyde-0.0.0a32.dist-info/top_level.txt +1 -0
  43. aldepyde-0.0.0a1.dist-info/RECORD +0 -5
  44. aldepyde-0.0.0a1.dist-info/top_level.txt +0 -1
  45. {aldepyde-0.0.0a1.dist-info → aldepyde-0.0.0a32.dist-info/licenses}/LICENSE +0 -0
@@ -0,0 +1,4622 @@
1
+ {
2
+ "map": {
3
+ "amino_acid": {
4
+ "arginine": "arginine",
5
+ "arg": "arginine",
6
+ "r": "arginine",
7
+ "histidine": "histidine",
8
+ "his": "histidine",
9
+ "h": "histidine",
10
+ "lysine": "lysine",
11
+ "lys": "lysine",
12
+ "k": "lysine",
13
+ "aspartic acid": "aspartate",
14
+ "aspartate": "aspartate",
15
+ "asp": "aspartate",
16
+ "d": "aspartate",
17
+ "glutamic acid": "glutamate",
18
+ "glutamate": "glutamate",
19
+ "glu": "glutamate",
20
+ "e": "glutamate",
21
+ "serine": "serine",
22
+ "ser": "serine",
23
+ "s": "serine",
24
+ "threonine": "threonine",
25
+ "thr": "threonine",
26
+ "t": "threonine",
27
+ "asparagine": "asparagine",
28
+ "asn": "asparagine",
29
+ "n": "asparagine",
30
+ "glutamine": "glutamine",
31
+ "gln": "glutamine",
32
+ "q": "glutamine",
33
+ "cysteine": "cysteine",
34
+ "cys": "cysteine",
35
+ "c": "cysteine",
36
+ "glycine": "glycine",
37
+ "gly": "glycine",
38
+ "g": "glycine",
39
+ "proline": "proline",
40
+ "pro": "proline",
41
+ "p": "proline",
42
+ "alanine": "alanine",
43
+ "ala": "alanine",
44
+ "a": "alanine",
45
+ "valine": "valine",
46
+ "val": "valine",
47
+ "v": "valine",
48
+ "isoleucine": "isoleucine",
49
+ "ile": "isoleucine",
50
+ "i": "isoleucine",
51
+ "leucine": "leucine",
52
+ "leu": "leucine",
53
+ "l": "leucine",
54
+ "methionine": "methionine",
55
+ "met": "methionine",
56
+ "m": "methionine",
57
+ "phenylalanine": "phenylalanine",
58
+ "phe": "phenylalanine",
59
+ "f": "phenylalanine",
60
+ "tyrosine": "tyrosine",
61
+ "tyr": "tyrosine",
62
+ "y": "tyrosine",
63
+ "tryptophan": "tryptophan",
64
+ "trp": "tryptophan",
65
+ "w": "tryptophan"
66
+ },
67
+ "dna": {
68
+ "adenine": "adenine",
69
+ "da": "adenine",
70
+ "a": "adenine",
71
+ "cytosine": "cytosine",
72
+ "dc": "cytosine",
73
+ "c": "cytosine",
74
+ "guanine": "guanine",
75
+ "dg": "guanine",
76
+ "g": "guanine",
77
+ "thymine": "thymine",
78
+ "dt": "thymine",
79
+ "t": "thymine",
80
+ "uracil": "uracil",
81
+ "du": "uracil",
82
+ "u": "uracil",
83
+ "dr": [
84
+ "adenine",
85
+ "guanine"
86
+ ],
87
+ "r": [
88
+ "adenine",
89
+ "guanine"
90
+ ],
91
+ "dy": [
92
+ "cytosine",
93
+ "thymine"
94
+ ],
95
+ "y": [
96
+ "cytosine",
97
+ "thymine",
98
+ "uracil"
99
+ ],
100
+ "ds": [
101
+ "guanine",
102
+ "cytosine"
103
+ ],
104
+ "s": [
105
+ "guanine",
106
+ "cytosine"
107
+ ],
108
+ "dw": [
109
+ "adenine",
110
+ "thymine"
111
+ ],
112
+ "w": [
113
+ "adenine",
114
+ "thymine",
115
+ "uracil"
116
+ ],
117
+ "dm": [
118
+ "adenine",
119
+ "cytosine"
120
+ ],
121
+ "m": [
122
+ "adenine",
123
+ "cytosine"
124
+ ],
125
+ "db": [
126
+ "cytosine",
127
+ "guanine",
128
+ "thymine"
129
+ ],
130
+ "b": [
131
+ "cytosine",
132
+ "guanine",
133
+ "thymine",
134
+ "uracil"
135
+ ],
136
+ "dd": [
137
+ "adenine",
138
+ "guanine",
139
+ "thymine"
140
+ ],
141
+ "d": [
142
+ "adenine",
143
+ "guanine",
144
+ "thymine",
145
+ "uracil"
146
+ ],
147
+ "dh": [
148
+ "adenine",
149
+ "cytosine",
150
+ "thymine"
151
+ ],
152
+ "h": [
153
+ "adenine",
154
+ "cytosine",
155
+ "thymine",
156
+ "uracil"
157
+ ],
158
+ "dv": [
159
+ "adenine",
160
+ "cytosine",
161
+ "guanine"
162
+ ],
163
+ "v": [
164
+ "adenine",
165
+ "cytosine",
166
+ "guanine"
167
+ ],
168
+ "dn": [
169
+ "adenine",
170
+ "cytosine",
171
+ "guanine",
172
+ "thymine"
173
+ ],
174
+ "n": [
175
+ "adenine",
176
+ "cytosine",
177
+ "guanine",
178
+ "thymine",
179
+ "uracil"
180
+ ],
181
+ "-": [],
182
+ ".": []
183
+ },
184
+ "rna": {
185
+ "adenine": "adenine",
186
+ "a": "adenine",
187
+ "cytosine": "cytosine",
188
+ "c": "cytosine",
189
+ "guanine": "guanine",
190
+ "g": "guanine",
191
+ "thymine": "thymine",
192
+ "t": "thymine",
193
+ "uracil": "uracil",
194
+ "u": "uracil",
195
+ "r": [
196
+ "adenine",
197
+ "guanine"
198
+ ],
199
+ "y": [
200
+ "cytosine",
201
+ "thymine",
202
+ "uracil"
203
+ ],
204
+ "s": [
205
+ "guanine",
206
+ "cytosine"
207
+ ],
208
+ "w": [
209
+ "adenine",
210
+ "thymine",
211
+ "uracil"
212
+ ],
213
+ "m": [
214
+ "adenine",
215
+ "cytosine"
216
+ ],
217
+ "b": [
218
+ "cytosine",
219
+ "guanine",
220
+ "thymine",
221
+ "uracil"
222
+ ],
223
+ "d": [
224
+ "adenine",
225
+ "guanine",
226
+ "thymine",
227
+ "uracil"
228
+ ],
229
+ "h": [
230
+ "adenine",
231
+ "cytosine",
232
+ "thymine",
233
+ "uracil"
234
+ ],
235
+ "v": [
236
+ "adenine",
237
+ "cytosine",
238
+ "guanine"
239
+ ],
240
+ "n": [
241
+ "adenine",
242
+ "cytosine",
243
+ "guanine",
244
+ "thymine",
245
+ "uracil"
246
+ ],
247
+ "-": [],
248
+ ".": []
249
+ },
250
+ "element": {
251
+ "hydrogen": "hydrogen",
252
+ "h": "hydrogen",
253
+ "helium": "helium",
254
+ "he": "helium",
255
+ "lithium": "lithium",
256
+ "li": "lithium",
257
+ "beryllium": "beryllium",
258
+ "be": "beryllium",
259
+ "boron": "boron",
260
+ "b": "boron",
261
+ "carbon": "carbon",
262
+ "c": "carbon",
263
+ "nitrogen": "nitrogen",
264
+ "n": "nitrogen",
265
+ "oxygen": "oxygen",
266
+ "o": "oxygen",
267
+ "fluorine": "fluorine",
268
+ "f": "fluorine",
269
+ "neon": "neon",
270
+ "ne": "neon",
271
+ "sodium": "sodium",
272
+ "na": "sodium",
273
+ "magnesium": "magnesium",
274
+ "mg": "magnesium",
275
+ "aluminum": "aluminum",
276
+ "al": "aluminum",
277
+ "silicon": "silicon",
278
+ "si": "silicon",
279
+ "phosphorus": "phosphorus",
280
+ "p": "phosphorus",
281
+ "sulfur": "sulfur",
282
+ "s": "sulfur",
283
+ "chlorine": "chlorine",
284
+ "cl": "chlorine",
285
+ "argon": "argon",
286
+ "ar": "argon",
287
+ "potassium": "potassium",
288
+ "k": "potassium",
289
+ "calcium": "calcium",
290
+ "ca": "calcium",
291
+ "scandium": "scandium",
292
+ "sc": "scandium",
293
+ "titanium": "titanium",
294
+ "ti": "titanium",
295
+ "vanadium": "vanadium",
296
+ "v": "vanadium",
297
+ "chromium": "chromium",
298
+ "cr": "chromium",
299
+ "manganese": "manganese",
300
+ "mn": "manganese",
301
+ "iron": "iron",
302
+ "fe": "iron",
303
+ "cobalt": "cobalt",
304
+ "co": "cobalt",
305
+ "nickel": "nickel",
306
+ "ni": "nickel",
307
+ "copper": "copper",
308
+ "cu": "copper",
309
+ "zinc": "zinc",
310
+ "zn": "zinc",
311
+ "gallium": "gallium",
312
+ "ga": "gallium",
313
+ "germanium": "germanium",
314
+ "ge": "germanium",
315
+ "arsenic": "arsenic",
316
+ "as": "arsenic",
317
+ "selenium": "selenium",
318
+ "se": "selenium",
319
+ "bromine": "bromine",
320
+ "br": "bromine",
321
+ "krypton": "krypton",
322
+ "kr": "krypton",
323
+ "rubidium": "rubidium",
324
+ "rb": "rubidium",
325
+ "strontium": "strontium",
326
+ "sr": "strontium",
327
+ "yttrium": "yttrium",
328
+ "y": "yttrium",
329
+ "zirconium": "zirconium",
330
+ "zr": "zirconium",
331
+ "niobium": "niobium",
332
+ "nb": "niobium",
333
+ "molybdenum": "molybdenum",
334
+ "mo": "molybdenum",
335
+ "technetium": "technetium",
336
+ "tc": "technetium",
337
+ "ruthenium": "ruthenium",
338
+ "ru": "ruthenium",
339
+ "rhodium": "rhodium",
340
+ "rh": "rhodium",
341
+ "palladium": "palladium",
342
+ "pd": "palladium",
343
+ "silver": "silver",
344
+ "ag": "silver",
345
+ "cadmium": "cadmium",
346
+ "cd": "cadmium",
347
+ "indium": "indium",
348
+ "in": "indium",
349
+ "tin": "tin",
350
+ "sn": "tin",
351
+ "antimony": "antimony",
352
+ "sb": "antimony",
353
+ "tellurium": "tellurium",
354
+ "te": "tellurium",
355
+ "iodine": "iodine",
356
+ "i": "iodine",
357
+ "xenon": "xenon",
358
+ "xe": "xenon",
359
+ "cesium": "cesium",
360
+ "caesium": "caesium",
361
+ "cs": "caesium",
362
+ "barium": "barium",
363
+ "ba": "barium",
364
+ "lanthanum": "lanthanum",
365
+ "la": "lanthanum",
366
+ "cerium": "cerium",
367
+ "ce": "cerium",
368
+ "praseodymium": "praseodymium",
369
+ "pr": "praseodymium",
370
+ "neodymium": "neodymium",
371
+ "nd": "neodymium",
372
+ "promethium": "promethium",
373
+ "pm": "promethium",
374
+ "samarium": "samarium",
375
+ "sm": "samarium",
376
+ "europium": "europium",
377
+ "eu": "europium",
378
+ "gadolinium": "gadolinium",
379
+ "gd": "gadolinium",
380
+ "terbium": "terbium",
381
+ "tb": "terbium",
382
+ "dysprosium": "dysprosium",
383
+ "dy": "dysprosium",
384
+ "holmium": "holmium",
385
+ "ho": "holmium",
386
+ "erbium": "erbium",
387
+ "er": "erbium",
388
+ "thulium": "thulium",
389
+ "tm": "thulium",
390
+ "ytterbium": "ytterbium",
391
+ "yb": "ytterbium",
392
+ "lutetium": "lutetium",
393
+ "lu": "lutetium",
394
+ "hafnium": "hafnium",
395
+ "hf": "hafnium",
396
+ "tantalum": "tantalum",
397
+ "ta": "tantalum",
398
+ "tungsten": "tungsten",
399
+ "w": "tungsten",
400
+ "rhenium": "rhenium",
401
+ "re": "rhenium",
402
+ "osmium": "osmium",
403
+ "os": "osmium",
404
+ "iridium": "iridium",
405
+ "ir": "iridium",
406
+ "platinum": "platinum",
407
+ "pt": "platinum",
408
+ "gold": "gold",
409
+ "au": "gold",
410
+ "mercury": "mercury",
411
+ "hg": "mercury",
412
+ "thallium": "thallium",
413
+ "tl": "thallium",
414
+ "lead": "lead",
415
+ "pb": "lead",
416
+ "bismuth": "bismuth",
417
+ "bi": "bismuth",
418
+ "polonium": "polonium",
419
+ "po": "polonium",
420
+ "astatine": "astatine",
421
+ "at": "astatine",
422
+ "radon": "radon",
423
+ "rn": "radon",
424
+ "francium": "francium",
425
+ "fr": "francium",
426
+ "radium": "radium",
427
+ "ra": "radium",
428
+ "actinium": "actinium",
429
+ "ac": "actinium",
430
+ "thorium": "thorium",
431
+ "th": "thorium",
432
+ "protactinium": "protactinium",
433
+ "pa": "protactinium",
434
+ "uranium": "uranium",
435
+ "u": "uranium",
436
+ "neptunium": "neptunium",
437
+ "np": "neptunium",
438
+ "plutonium": "plutonium",
439
+ "pu": "plutonium",
440
+ "americium": "americium",
441
+ "am": "americium",
442
+ "curium": "curium",
443
+ "cm": "curium",
444
+ "berkelium": "berkelium",
445
+ "bk": "berkelium",
446
+ "californium": "californium",
447
+ "cf": "californium",
448
+ "einsteinium": "einsteinium",
449
+ "es": "einsteinium",
450
+ "fermium": "fermium",
451
+ "fm": "fermium",
452
+ "mendelevium": "mendelevium",
453
+ "md": "mendelevium",
454
+ "nobelium": "nobelium",
455
+ "no": "nobelium",
456
+ "lawrencium": "lawrencium",
457
+ "lr": "lawrencium",
458
+ "rutherfordium": "rutherfordium",
459
+ "rf": "rutherfordium",
460
+ "dubnium": "dubnium",
461
+ "db": "dubnium",
462
+ "seaborgium": "seaborgium",
463
+ "sg": "seaborgium",
464
+ "bohrium": "bohrium",
465
+ "bh": "bohrium",
466
+ "hassium": "hassium",
467
+ "hs": "hassium",
468
+ "meitnerium": "meitnerium",
469
+ "mt": "meitnerium",
470
+ "darmstadtium": "darmstadtium",
471
+ "ds": "darmstadtium",
472
+ "roentgenium": "roentgenium",
473
+ "rg": "roentgenium",
474
+ "copernicium": "copernicium",
475
+ "cn": "copernicium",
476
+ "nihonium": "nihonium",
477
+ "nh": "nihonium",
478
+ "flerovium": "flerovium",
479
+ "fl": "flerovium",
480
+ "moscovium": "moscovium",
481
+ "mc": "moscovium",
482
+ "livermorium": "livermorium",
483
+ "lv": "livermorium",
484
+ "tennessine": "tennessine",
485
+ "ts": "tennessine",
486
+ "oganesson": "oganesson",
487
+ "og": "oganesson"
488
+ }
489
+ },
490
+ "amino_acid": {
491
+ "arginine": {
492
+ "1code": "r",
493
+ "3code": "arg",
494
+ "charge": "+",
495
+ "polarity": "polar",
496
+ "codons": [
497
+ "cgu",
498
+ "cgc",
499
+ "cga",
500
+ "cgg",
501
+ "aga",
502
+ "agg"
503
+ ],
504
+ "centroid": [
505
+ "cg",
506
+ "cd",
507
+ "ne",
508
+ "cz",
509
+ "nh1",
510
+ "nh2"
511
+ ],
512
+ "asa": {
513
+ "gly-x-gly asa w": 249.26,
514
+ "gly-x-gly asa sc": 190.24,
515
+ "ala-x-ala asa w": 235.45,
516
+ "ala-x-ala asa sc": 190.04
517
+ },
518
+ "std-alpha-prop": 0.88,
519
+ "formula": "c6h14n4o2"
520
+ },
521
+ "histidine": {
522
+ "1code": "h",
523
+ "3code": "his",
524
+ "charge": "+",
525
+ "polarity": "polar",
526
+ "codons": [
527
+ "cau",
528
+ "cac"
529
+ ],
530
+ "centroid": [
531
+ "cg",
532
+ "nd1",
533
+ "cd2",
534
+ "ce1",
535
+ "ne2"
536
+ ],
537
+ "asa": {
538
+ "gly-x-gly asa w": 198.51,
539
+ "gly-x-gly asa sc": 141.27,
540
+ "ala-x-ala asa w": 184.79,
541
+ "ala-x-ala asa sc": 141.17
542
+ },
543
+ "std-alpha-prop": 2.55,
544
+ "formula": "c6h9n3o2"
545
+ },
546
+ "lysine": {
547
+ "1code": "k",
548
+ "3code": "lys",
549
+ "charge": "+",
550
+ "polarity": "polar",
551
+ "codons": [
552
+ "aaa",
553
+ "aag"
554
+ ],
555
+ "centroid": [
556
+ "cg",
557
+ "cd",
558
+ "ce",
559
+ "nz"
560
+ ],
561
+ "asa": {
562
+ "gly-x-gly asa w": 207.49,
563
+ "gly-x-gly asa sc": 147.99,
564
+ "ala-x-ala asa w": 193.73,
565
+ "ala-x-ala asa sc": 147.83
566
+ },
567
+ "std-alpha-prop": 1.09,
568
+ "formula": "c6h14n2o2"
569
+ },
570
+ "aspartate": {
571
+ "1code": "d",
572
+ "3code": "asp",
573
+ "charge": "-",
574
+ "polarity": "polar",
575
+ "codons": [
576
+ "gau",
577
+ "gac"
578
+ ],
579
+ "centroid": [
580
+ "cg",
581
+ "od1",
582
+ "od2"
583
+ ],
584
+ "asa": {
585
+ "gly-x-gly asa w": 155.37,
586
+ "gly-x-gly asa sc": 97.8,
587
+ "ala-x-ala asa w": 141.61,
588
+ "ala-x-ala asa sc": 97.66
589
+ },
590
+ "std-alpha-prop": 2.89,
591
+ "formula": "c4h7no4"
592
+ },
593
+ "glutamate": {
594
+ "1code": "e",
595
+ "3code": "glu",
596
+ "charge": "-",
597
+ "polarity": "polar",
598
+ "codons": [
599
+ "gaa",
600
+ "gag"
601
+ ],
602
+ "centroid": [
603
+ "cg",
604
+ "cd",
605
+ "oe1",
606
+ "oe2"
607
+ ],
608
+ "asa": {
609
+ "gly-x-gly asa w": 187.16,
610
+ "gly-x-gly asa sc": 132.53,
611
+ "ala-x-ala asa w": 173.46,
612
+ "ala-x-ala asa sc": 132.42
613
+ },
614
+ "std-alpha-prop": 1.67,
615
+ "formula": "c5h9no4"
616
+ },
617
+ "serine": {
618
+ "1code": "s",
619
+ "3code": "ser",
620
+ "charge": "none",
621
+ "polarity": "polar",
622
+ "codons": [
623
+ "ucu",
624
+ "ucc",
625
+ "uca",
626
+ "ucg",
627
+ "agu",
628
+ "agc"
629
+ ],
630
+ "centroid": [
631
+ "og"
632
+ ],
633
+ "asa": {
634
+ "gly-x-gly asa w": 125.68,
635
+ "gly-x-gly asa sc": 69.08,
636
+ "ala-x-ala asa w": 111.97,
637
+ "ala-x-ala asa sc": 68.97
638
+ },
639
+ "std-alpha-prop": 2.09,
640
+ "formula": "c3h7no3"
641
+ },
642
+ "threonine": {
643
+ "1code": "t",
644
+ "3code": "thr",
645
+ "charge": "none",
646
+ "polarity": "polar",
647
+ "codons": [
648
+ "acu",
649
+ "acc",
650
+ "aca",
651
+ "acg"
652
+ ],
653
+ "centroid": [
654
+ "og1",
655
+ "cg2"
656
+ ],
657
+ "asa": {
658
+ "gly-x-gly asa w": 148.06,
659
+ "gly-x-gly asa sc": 88.62,
660
+ "ala-x-ala asa w": 134.28,
661
+ "ala-x-ala asa sc": 88.45
662
+ },
663
+ "std-alpha-prop": 2.76,
664
+ "formula": "c4h9no3"
665
+ },
666
+ "asparagine": {
667
+ "1code": "n",
668
+ "3code": "asn",
669
+ "charge": "none",
670
+ "polarity": "polar",
671
+ "codons": [
672
+ "aau",
673
+ "aac"
674
+ ],
675
+ "centroid": [
676
+ "cg",
677
+ "od1",
678
+ "nd2"
679
+ ],
680
+ "asa": {
681
+ "gly-x-gly asa w": 168.87,
682
+ "gly-x-gly asa sc": 109.92,
683
+ "ala-x-ala asa w": 155.22,
684
+ "ala-x-ala asa sc": 109.87
685
+ },
686
+ "std-alpha-prop": 2.72,
687
+ "formula": "c4h8n2o3"
688
+ },
689
+ "glutamine": {
690
+ "1code": "q",
691
+ "3code": "gln",
692
+ "charge": "none",
693
+ "polarity": "polar",
694
+ "codons": [
695
+ "caa",
696
+ "cag"
697
+ ],
698
+ "centroid": [
699
+ "cg",
700
+ "cd",
701
+ "oe1",
702
+ "ne2"
703
+ ],
704
+ "asa": {
705
+ "gly-x-gly asa w": 189.17,
706
+ "gly-x-gly asa sc": 129.68,
707
+ "ala-x-ala asa w": 175.42,
708
+ "ala-x-ala asa sc": 129.52
709
+ },
710
+ "std-alpha-prop": 1.63,
711
+ "formula": "c5h10n2o3"
712
+ },
713
+ "cysteine": {
714
+ "1code": "c",
715
+ "3code": "cys",
716
+ "charge": "none",
717
+ "polarity": "polar",
718
+ "codons": [
719
+ "ugu",
720
+ "ugc"
721
+ ],
722
+ "centroid": [
723
+ "sg"
724
+ ],
725
+ "asa": {
726
+ "gly-x-gly asa w": 141.48,
727
+ "gly-x-gly asa sc": 82.07,
728
+ "ala-x-ala asa w": 127.72,
729
+ "ala-x-ala asa sc": 81.91
730
+ },
731
+ "std-alpha-prop": 2.85,
732
+ "formula": "c3h7no2s "
733
+ },
734
+ "glycine": {
735
+ "1code": "g",
736
+ "3code": "gly",
737
+ "charge": "none",
738
+ "polarity": "nonpolar",
739
+ "codons": [
740
+ "ggu",
741
+ "ggc",
742
+ "gga",
743
+ "gga"
744
+ ],
745
+ "centroid": [
746
+ "ca"
747
+ ],
748
+ "asa": {
749
+ "gly-x-gly asa w": 83.91,
750
+ "gly-x-gly asa sc": 0,
751
+ "ala-x-ala asa w": 70.27,
752
+ "ala-x-ala asa sc": 0
753
+ },
754
+ "std-alpha-prop": 4.18,
755
+ "formula": "c2h5no2"
756
+ },
757
+ "proline": {
758
+ "1code": "p",
759
+ "3code": "pro",
760
+ "charge": "none",
761
+ "polarity": "nonpolar",
762
+ "codons": [
763
+ "ccu",
764
+ "ccc",
765
+ "cca",
766
+ "ccg"
767
+ ],
768
+ "centroid": [
769
+ "cg",
770
+ "cd"
771
+ ],
772
+ "asa": {
773
+ "gly-x-gly asa w": 144.8,
774
+ "gly-x-gly asa sc": 106.44,
775
+ "ala-x-ala asa w": 126.78,
776
+ "ala-x-ala asa sc": 98.23
777
+ },
778
+ "std-alpha-prop": 13.22,
779
+ "formula": "c5h9no2"
780
+ },
781
+ "alanine": {
782
+ "1code": "a",
783
+ "3code": "ala",
784
+ "charge": "none",
785
+ "polarity": "nonpolar",
786
+ "codons": [
787
+ "gcu",
788
+ "gcc",
789
+ "gca",
790
+ "gcg"
791
+ ],
792
+ "centroid": [
793
+ "cb"
794
+ ],
795
+ "asa": {
796
+ "gly-x-gly asa w": 116.4,
797
+ "gly-x-gly asa sc": 55.4,
798
+ "ala-x-ala asa w": 102.68,
799
+ "ala-x-ala asa sc": 55.28
800
+ },
801
+ "std-alpha-prop": 0.0,
802
+ "formula": "c3h7no2"
803
+ },
804
+ "valine": {
805
+ "1code": "v",
806
+ "3code": "val",
807
+ "charge": "none",
808
+ "polarity": "nonpolar",
809
+ "codons": [
810
+ "guu",
811
+ "guc",
812
+ "gua",
813
+ "gug"
814
+ ],
815
+ "centroid": [
816
+ "cg1",
817
+ "cg2"
818
+ ],
819
+ "asa": {
820
+ "gly-x-gly asa w": 162.24,
821
+ "gly-x-gly asa sc": 103.12,
822
+ "ala-x-ala asa w": 148.51,
823
+ "ala-x-ala asa sc": 103.0
824
+ },
825
+ "std-alpha-prop": 2.55,
826
+ "formula": "c5h11no2"
827
+ },
828
+ "isoleucine": {
829
+ "1code": "i",
830
+ "3code": "ile",
831
+ "charge": "none",
832
+ "polarity": "nonpolar",
833
+ "codons": [
834
+ "auu",
835
+ "auc",
836
+ "aua"
837
+ ],
838
+ "centroid": [
839
+ "cg1",
840
+ "cg2",
841
+ "cd1"
842
+ ],
843
+ "asa": {
844
+ "gly-x-gly asa w": 189.95,
845
+ "gly-x-gly asa sc": 130.71,
846
+ "ala-x-ala asa w": 176.22,
847
+ "ala-x-ala asa sc": 130.58
848
+ },
849
+ "std-alpha-prop": 1.72,
850
+ "formula": "c6h13no2"
851
+ },
852
+ "leucine": {
853
+ "1code": "l",
854
+ "3code": "leu",
855
+ "charge": "none",
856
+ "polarity": "nonpolar",
857
+ "codons": [
858
+ "uua",
859
+ "uug",
860
+ "cuu",
861
+ "cuc",
862
+ "cua",
863
+ "cug"
864
+ ],
865
+ "centroid": [
866
+ "cg",
867
+ "cd1",
868
+ "cd2"
869
+ ],
870
+ "asa": {
871
+ "gly-x-gly asa w": 197.99,
872
+ "gly-x-gly asa sc": 141.52,
873
+ "ala-x-ala asa w": 184.33,
874
+ "ala-x-ala asa sc": 141.47
875
+ },
876
+ "std-alpha-prop": 0.88,
877
+ "formula": "c6h13no2"
878
+ },
879
+ "methionine": {
880
+ "1code": "m",
881
+ "3code": "met",
882
+ "charge": "none",
883
+ "polarity": "nonpolar",
884
+ "codons": [
885
+ "aug"
886
+ ],
887
+ "centroid": [
888
+ "cg",
889
+ "sd",
890
+ "ce"
891
+ ],
892
+ "asa": {
893
+ "gly-x-gly asa w": 210.55,
894
+ "gly-x-gly asa sc": 150.39,
895
+ "ala-x-ala asa w": 196.87,
896
+ "ala-x-ala asa sc": 150.32
897
+ },
898
+ "std-alpha-prop": 1.0,
899
+ "formula": "c5h11no2s"
900
+ },
901
+ "phenylalanine": {
902
+ "1code": "f",
903
+ "3code": "phe",
904
+ "charge": "none",
905
+ "polarity": "nonpolar",
906
+ "codons": [
907
+ "uuu",
908
+ "uuc"
909
+ ],
910
+ "centroid": [
911
+ "cg",
912
+ "cd1",
913
+ "cd2",
914
+ "ce1",
915
+ "ce2",
916
+ "cz"
917
+ ],
918
+ "asa": {
919
+ "gly-x-gly asa w": 223.29,
920
+ "gly-x-gly asa sc": 164.18,
921
+ "ala-x-ala asa w": 209.64,
922
+ "ala-x-ala asa sc": 164.14
923
+ },
924
+ "std-alpha-prop": 2.26,
925
+ "formula": "c9h11no2"
926
+ },
927
+ "tyrosine": {
928
+ "1code": "y",
929
+ "3code": "tyr",
930
+ "charge": "none",
931
+ "polarity": "nonpolar",
932
+ "codons": [
933
+ "uau",
934
+ "uac"
935
+ ],
936
+ "centroid": [
937
+ "cg",
938
+ "cd1",
939
+ "cd2",
940
+ "ce1",
941
+ "ce2",
942
+ "cz",
943
+ "oh"
944
+ ],
945
+ "asa": {
946
+ "gly-x-gly asa w": 238.3,
947
+ "gly-x-gly asa sc": 180.03,
948
+ "ala-x-ala asa w": 224.68,
949
+ "ala-x-ala asa sc": 180.01
950
+ },
951
+ "std-alpha-prop": 2.22,
952
+ "formula": "c9h11no3"
953
+ },
954
+ "tryptophan": {
955
+ "1code": "w",
956
+ "3code": "trp",
957
+ "charge": "none",
958
+ "polarity": "nonpolar",
959
+ "codons": [
960
+ "ugg"
961
+ ],
962
+ "centroid": [
963
+ "cg",
964
+ "cd1",
965
+ "cd2",
966
+ "ne1",
967
+ "ce2",
968
+ "ce3",
969
+ "cz2",
970
+ "cz3",
971
+ "ch2"
972
+ ],
973
+ "asa": {
974
+ "gly-x-gly asa w": 265.42,
975
+ "gly-x-gly asa sc": 209.62,
976
+ "ala-x-ala asa w": 251.78,
977
+ "ala-x-ala asa sc": 209.57
978
+ },
979
+ "std-alpha-prop": 2.05,
980
+ "formula": "c11h12n2o2"
981
+ },
982
+ "selenocysteine": {
983
+ "1code": "u",
984
+ "3code": "sec",
985
+ "charge": "none",
986
+ "polarity": "polar",
987
+ "codons": [
988
+ "uga"
989
+ ],
990
+ "centroid": [
991
+ "se"
992
+ ],
993
+ "asa": {},
994
+ "std-alpha-prop": "none",
995
+ "formula": "c3h7no2se"
996
+ },
997
+ "pyrrolysine": {
998
+ "1code": "o",
999
+ "3code": "pyl",
1000
+ "charge": "none",
1001
+ "polarity": "polar",
1002
+ "codons": [
1003
+ "uag"
1004
+ ],
1005
+ "asa": {},
1006
+ "std-alpha-prop": "none",
1007
+ "centroid": [
1008
+ "cg",
1009
+ "cd",
1010
+ "ce",
1011
+ "nz",
1012
+ "o2",
1013
+ "c2",
1014
+ "ca2",
1015
+ "n2",
1016
+ "ce2",
1017
+ "cd2",
1018
+ "cg2",
1019
+ "cb2"
1020
+ ],
1021
+ "formula": "c12h21n3o3"
1022
+ }
1023
+ },
1024
+ "dna": {
1025
+ "cytosine": {
1026
+ "1code": "c",
1027
+ "pdb_code": "dc",
1028
+ "centroid": [
1029
+ "o2",
1030
+ "n1",
1031
+ "c2",
1032
+ "n3",
1033
+ "c4",
1034
+ "c5",
1035
+ "c6",
1036
+ "n4"
1037
+ ]
1038
+ },
1039
+ "thymine": {
1040
+ "1code": "t",
1041
+ "pdb_code": "dt",
1042
+ "centroid": [
1043
+ "n1",
1044
+ "c2",
1045
+ "o2",
1046
+ "n3",
1047
+ "c4",
1048
+ "o4",
1049
+ "c5",
1050
+ "c6",
1051
+ "c7"
1052
+ ]
1053
+ },
1054
+ "uracil": {
1055
+ "1code": "u",
1056
+ "pdb_code": "du",
1057
+ "centroid": [
1058
+ "n1",
1059
+ "c2",
1060
+ "o2",
1061
+ "n3",
1062
+ "c4",
1063
+ "o4",
1064
+ "c5",
1065
+ "c6"
1066
+ ]
1067
+ },
1068
+ "adenine": {
1069
+ "1code": "a",
1070
+ "pdb_code": "da",
1071
+ "centroid": [
1072
+ "n1",
1073
+ "c2",
1074
+ "n3",
1075
+ "c4",
1076
+ "c5",
1077
+ "c6",
1078
+ "n6",
1079
+ "n7",
1080
+ "c8",
1081
+ "n9"
1082
+ ]
1083
+ },
1084
+ "guanine": {
1085
+ "1code": "g",
1086
+ "pdb_code": "dg",
1087
+ "centroid": [
1088
+ "n1",
1089
+ "c2",
1090
+ "n2",
1091
+ "n3",
1092
+ "c4",
1093
+ "c5",
1094
+ "c6",
1095
+ "o6",
1096
+ "n7",
1097
+ "c8",
1098
+ "n9"
1099
+ ]
1100
+ },
1101
+ "inosine": {
1102
+ "1code": "i",
1103
+ "pdb_code": "di",
1104
+ "centroid": [
1105
+ "n1",
1106
+ "c2",
1107
+ "n3",
1108
+ "c4",
1109
+ "c5",
1110
+ "c6",
1111
+ "o6",
1112
+ "n7",
1113
+ "c8",
1114
+ "n9"
1115
+ ]
1116
+ }
1117
+ },
1118
+ "rna": {
1119
+ "cytosine": {
1120
+ "1code": "c",
1121
+ "centroid": [
1122
+ "o2",
1123
+ "n1",
1124
+ "c2",
1125
+ "n3",
1126
+ "c4",
1127
+ "c5",
1128
+ "c6",
1129
+ "n4"
1130
+ ]
1131
+ },
1132
+ "thymine": {
1133
+ "1code": "t",
1134
+ "centroid": [
1135
+ "n1",
1136
+ "c2",
1137
+ "o2",
1138
+ "n3",
1139
+ "c4",
1140
+ "o4",
1141
+ "c5",
1142
+ "c6",
1143
+ "c7"
1144
+ ]
1145
+ },
1146
+ "uracil": {
1147
+ "1code": "u",
1148
+ "centroid": [
1149
+ "n1",
1150
+ "c2",
1151
+ "o2",
1152
+ "n3",
1153
+ "c4",
1154
+ "o4",
1155
+ "c5",
1156
+ "c6"
1157
+ ]
1158
+ },
1159
+ "adenine": {
1160
+ "1code": "a",
1161
+ "centroid": [
1162
+ "n1",
1163
+ "c2",
1164
+ "n3",
1165
+ "c4",
1166
+ "c5",
1167
+ "c6",
1168
+ "n6",
1169
+ "n7",
1170
+ "c8",
1171
+ "n9"
1172
+ ]
1173
+ },
1174
+ "guanine": {
1175
+ "1code": "g",
1176
+ "centroid": [
1177
+ "n1",
1178
+ "c2",
1179
+ "n2",
1180
+ "n3",
1181
+ "c4",
1182
+ "c5",
1183
+ "c6",
1184
+ "o6",
1185
+ "n7",
1186
+ "c8",
1187
+ "n9"
1188
+ ]
1189
+ },
1190
+ "inosine": {
1191
+ "1code": "i",
1192
+ "centroid": [
1193
+ "n1",
1194
+ "c2",
1195
+ "n3",
1196
+ "c4",
1197
+ "c5",
1198
+ "c6",
1199
+ "o6",
1200
+ "n7",
1201
+ "c8",
1202
+ "n9"
1203
+ ]
1204
+ }
1205
+ },
1206
+ "element": {
1207
+ "hydrogen": {
1208
+ "symbol": "h",
1209
+ "number": 1,
1210
+ "ionization energy": 13.598434599702,
1211
+ "electronegativity": {
1212
+ "pauling": 2.2,
1213
+ "thermochemical": 3.04,
1214
+ "allen": 2.3
1215
+ },
1216
+ "ground configuration": "1s",
1217
+ "radius": {
1218
+ "van der waals": 110,
1219
+ "calculated": null,
1220
+ "crystal": 25
1221
+ },
1222
+ "stable": {
1223
+ "1": {
1224
+ "mass": 1.0078250319,
1225
+ "abundance": 0.999885
1226
+ },
1227
+ "2": {
1228
+ "mass": 2.0141017779,
1229
+ "abundance": 0.000115
1230
+ }
1231
+ },
1232
+ "molar mass": 1.00794
1233
+ },
1234
+ "helium": {
1235
+ "symbol": "he",
1236
+ "number": 2,
1237
+ "ionization energy": 24.587389011,
1238
+ "electronegativity": {
1239
+ "pauling": null,
1240
+ "thermochemical": 4.42,
1241
+ "allen": null
1242
+ },
1243
+ "ground configuration": "1s2",
1244
+ "radius": {
1245
+ "van der waals": 140,
1246
+ "calculated": 31,
1247
+ "crystal": null
1248
+ },
1249
+ "stable": {
1250
+ "3": {
1251
+ "mass": 3.0160293094,
1252
+ "abundance": 1.34e-06
1253
+ },
1254
+ "4": {
1255
+ "mass": 4.0026032497,
1256
+ "abundance": 0.99999866
1257
+ }
1258
+ },
1259
+ "molar mass": 4.0026
1260
+ },
1261
+ "lithium": {
1262
+ "symbol": "li",
1263
+ "number": 3,
1264
+ "ionization energy": 5.391714996,
1265
+ "electronegativity": {
1266
+ "pauling": 0.98,
1267
+ "thermochemical": 2.17,
1268
+ "allen": 0.912
1269
+ },
1270
+ "ground configuration": "1s2 2s",
1271
+ "radius": {
1272
+ "van der waals": 181,
1273
+ "calculated": 167,
1274
+ "crystal": 145
1275
+ },
1276
+ "stable": {
1277
+ "6": {
1278
+ "mass": 6.0151223,
1279
+ "abundance": 0.0759
1280
+ },
1281
+ "7": {
1282
+ "mass": 7.0160041,
1283
+ "abundance": 0.9241
1284
+ }
1285
+ },
1286
+ "molar mass": 6.94004
1287
+ },
1288
+ "beryllium": {
1289
+ "symbol": "be",
1290
+ "number": 4,
1291
+ "ionization energy": 9.322699,
1292
+ "electronegativity": {
1293
+ "pauling": 1.57,
1294
+ "thermochemical": 2.42,
1295
+ "allen": 1.576
1296
+ },
1297
+ "ground configuration": "1s2 2s2",
1298
+ "radius": {
1299
+ "van der waals": 153,
1300
+ "calculated": 112,
1301
+ "crystal": 105
1302
+ },
1303
+ "stable": {
1304
+ "9": {
1305
+ "mass": 9.0121822,
1306
+ "abundance": 1.0
1307
+ }
1308
+ },
1309
+ "molar mass": 9.01218
1310
+ },
1311
+ "boron": {
1312
+ "symbol": "b",
1313
+ "number": 5,
1314
+ "ionization energy": 8.298019,
1315
+ "electronegativity": {
1316
+ "pauling": 2.04,
1317
+ "thermochemical": 3.04,
1318
+ "allen": 2.051
1319
+ },
1320
+ "ground configuration": "1s2 2s2 2p",
1321
+ "radius": {
1322
+ "van der waals": 192,
1323
+ "calculated": 87,
1324
+ "crystal": 85
1325
+ },
1326
+ "stable": {
1327
+ "10": {
1328
+ "mass": 10.0129371,
1329
+ "abundance": 0.199
1330
+ },
1331
+ "11": {
1332
+ "mass": 11.0093055,
1333
+ "abundance": 0.801
1334
+ }
1335
+ },
1336
+ "molar mass": 10.81103
1337
+ },
1338
+ "carbon": {
1339
+ "symbol": "c",
1340
+ "number": 6,
1341
+ "ionization energy": 11.260288,
1342
+ "electronegativity": {
1343
+ "pauling": 2.55,
1344
+ "thermochemical": 3.15,
1345
+ "allen": 2.544
1346
+ },
1347
+ "ground configuration": "1s2 2s2 2p2",
1348
+ "radius": {
1349
+ "van der waals": 170,
1350
+ "calculated": 67,
1351
+ "crystal": 70
1352
+ },
1353
+ "stable": {
1354
+ "12": {
1355
+ "mass": 12.0,
1356
+ "abundance": 0.9893
1357
+ },
1358
+ "13": {
1359
+ "mass": 13.003354838,
1360
+ "abundance": 0.0107
1361
+ }
1362
+ },
1363
+ "molar mass": 12.01074
1364
+ },
1365
+ "nitrogen": {
1366
+ "symbol": "n",
1367
+ "number": 7,
1368
+ "ionization energy": 14.53413,
1369
+ "electronegativity": {
1370
+ "pauling": 3.04,
1371
+ "thermochemical": 3.56,
1372
+ "allen": 3.066
1373
+ },
1374
+ "ground configuration": "1s2 2s2 2p3",
1375
+ "radius": {
1376
+ "van der waals": 155,
1377
+ "calculated": 56,
1378
+ "crystal": 65
1379
+ },
1380
+ "stable": {
1381
+ "14": {
1382
+ "mass": 14.0030740074,
1383
+ "abundance": 0.99636
1384
+ },
1385
+ "15": {
1386
+ "mass": 15.000108973,
1387
+ "abundance": 0.00364
1388
+ }
1389
+ },
1390
+ "molar mass": 14.0067
1391
+ },
1392
+ "oxygen": {
1393
+ "symbol": "o",
1394
+ "number": 8,
1395
+ "ionization energy": 13.618055,
1396
+ "electronegativity": {
1397
+ "pauling": 3.44,
1398
+ "thermochemical": 3.78,
1399
+ "allen": 3.61
1400
+ },
1401
+ "ground configuration": "1s2 2s2 2p4 ",
1402
+ "radius": {
1403
+ "van der waals": 152,
1404
+ "calculated": 48,
1405
+ "crystal": 60
1406
+ },
1407
+ "stable": {
1408
+ "16": {
1409
+ "mass": 15.9949146223,
1410
+ "abundance": 0.99757
1411
+ },
1412
+ "17": {
1413
+ "mass": 16.9991315,
1414
+ "abundance": 0.00038
1415
+ },
1416
+ "18": {
1417
+ "mass": 17.9991604,
1418
+ "abundance": 0.00205
1419
+ }
1420
+ },
1421
+ "molar mass": 15.9994
1422
+ },
1423
+ "fluorine": {
1424
+ "symbol": "f",
1425
+ "number": 9,
1426
+ "ionization energy": 17.42282,
1427
+ "electronegativity": {
1428
+ "pauling": 3.98,
1429
+ "thermochemical": 4.0,
1430
+ "allen": 4.193
1431
+ },
1432
+ "ground configuration": "1s2 2s2 2p5",
1433
+ "radius": {
1434
+ "van der waals": 147,
1435
+ "calculated": 42,
1436
+ "crystal": 50
1437
+ },
1438
+ "stable": {
1439
+ "19": {
1440
+ "mass": 18.9984032,
1441
+ "abundance": 1.0
1442
+ }
1443
+ },
1444
+ "molar mass": 18.9984
1445
+ },
1446
+ "neon": {
1447
+ "symbol": "ne",
1448
+ "number": 10,
1449
+ "ionization energy": 21.564541,
1450
+ "electronegativity": {
1451
+ "pauling": null,
1452
+ "thermochemical": 4.44,
1453
+ "allen": 4.787
1454
+ },
1455
+ "ground configuration": "1s2 2s2 2p6",
1456
+ "radius": {
1457
+ "van der waals": 154,
1458
+ "calculated": 38,
1459
+ "crystal": null
1460
+ },
1461
+ "stable": {
1462
+ "20": {
1463
+ "mass": 19.992440176,
1464
+ "abundance": 0.9048
1465
+ },
1466
+ "21": {
1467
+ "mass": 20.99384674,
1468
+ "abundance": 0.0027
1469
+ },
1470
+ "22": {
1471
+ "mass": 21.9913855,
1472
+ "abundance": 0.0925
1473
+ }
1474
+ },
1475
+ "molar mass": 20.18005
1476
+ },
1477
+ "sodium": {
1478
+ "symbol": "na",
1479
+ "number": 11,
1480
+ "ionization energy": 5.13907696,
1481
+ "electronegativity": {
1482
+ "pauling": 0.93,
1483
+ "thermochemical": 2.15,
1484
+ "allen": 0.869
1485
+ },
1486
+ "ground configuration": "[ne]3s",
1487
+ "radius": {
1488
+ "van der waals": 227,
1489
+ "calculated": 190,
1490
+ "crystal": 180
1491
+ },
1492
+ "stable": {
1493
+ "23": {
1494
+ "mass": 22.98976966,
1495
+ "abundance": 1.0
1496
+ }
1497
+ },
1498
+ "molar mass": 22.98977
1499
+ },
1500
+ "magnesium": {
1501
+ "symbol": "mg",
1502
+ "number": 12,
1503
+ "ionization energy": 7.646236,
1504
+ "electronegativity": {
1505
+ "pauling": 1.31,
1506
+ "thermochemical": 2.39,
1507
+ "allen": 1.293
1508
+ },
1509
+ "ground configuration": "[ne]3s2",
1510
+ "radius": {
1511
+ "van der waals": 173,
1512
+ "calculated": 145,
1513
+ "crystal": 150
1514
+ },
1515
+ "stable": {
1516
+ "24": {
1517
+ "mass": 23.98504187,
1518
+ "abundance": 0.7899
1519
+ },
1520
+ "25": {
1521
+ "mass": 24.985837,
1522
+ "abundance": 0.1
1523
+ },
1524
+ "26": {
1525
+ "mass": 25.982593,
1526
+ "abundance": 0.1101
1527
+ }
1528
+ },
1529
+ "molar mass": 24.30505
1530
+ },
1531
+ "aluminum": {
1532
+ "symbol": "al",
1533
+ "number": 13,
1534
+ "ionization energy": 5.985769,
1535
+ "electronegativity": {
1536
+ "pauling": 1.61,
1537
+ "thermochemical": 2.52,
1538
+ "allen": 1.613
1539
+ },
1540
+ "ground configuration": "[ne]3s2 3p",
1541
+ "radius": {
1542
+ "van der waals": 184,
1543
+ "calculated": 118,
1544
+ "crystal": 125
1545
+ },
1546
+ "stable": {
1547
+ "27": {
1548
+ "mass": 26.98153841,
1549
+ "abundance": 1.0
1550
+ }
1551
+ },
1552
+ "molar mass": 26.98154
1553
+ },
1554
+ "silicon": {
1555
+ "symbol": "si",
1556
+ "number": 14,
1557
+ "ionization energy": 8.15168,
1558
+ "electronegativity": {
1559
+ "pauling": 1.9,
1560
+ "thermochemical": 2.82,
1561
+ "allen": 1.916
1562
+ },
1563
+ "ground configuration": "[ne]3s2 3p2",
1564
+ "radius": {
1565
+ "van der waals": 210,
1566
+ "calculated": 111,
1567
+ "crystal": 110
1568
+ },
1569
+ "stable": {
1570
+ "28": {
1571
+ "mass": 27.97692649,
1572
+ "abundance": 0.92223
1573
+ },
1574
+ "29": {
1575
+ "mass": 28.97649468,
1576
+ "abundance": 0.04685
1577
+ },
1578
+ "30": {
1579
+ "mass": 29.97377018,
1580
+ "abundance": 0.03092
1581
+ }
1582
+ },
1583
+ "molar mass": 28.0855
1584
+ },
1585
+ "phosphorus": {
1586
+ "symbol": "p",
1587
+ "number": 15,
1588
+ "ionization energy": 10.486686,
1589
+ "electronegativity": {
1590
+ "pauling": 2.19,
1591
+ "thermochemical": 3.16,
1592
+ "allen": 2.253
1593
+ },
1594
+ "ground configuration": "[ne]3s2 3p3",
1595
+ "radius": {
1596
+ "van der waals": 180,
1597
+ "calculated": 98,
1598
+ "crystal": 100
1599
+ },
1600
+ "stable": {
1601
+ "31": {
1602
+ "mass": 30.97376149,
1603
+ "abundance": 1.0
1604
+ }
1605
+ },
1606
+ "molar mass": 30.97376
1607
+ },
1608
+ "sulfur": {
1609
+ "symbol": "s",
1610
+ "number": 16,
1611
+ "ionization energy": 10.36001,
1612
+ "electronegativity": {
1613
+ "pauling": 2.58,
1614
+ "thermochemical": 3.44,
1615
+ "allen": 2.589
1616
+ },
1617
+ "ground configuration": "[ne]3s2 3p4",
1618
+ "radius": {
1619
+ "van der waals": 180,
1620
+ "calculated": 88,
1621
+ "crystal": 100
1622
+ },
1623
+ "stable": {
1624
+ "32": {
1625
+ "mass": 31.97207073,
1626
+ "abundance": 0.9499
1627
+ },
1628
+ "33": {
1629
+ "mass": 32.97145854,
1630
+ "abundance": 0.0075
1631
+ },
1632
+ "34": {
1633
+ "mass": 33.96786687,
1634
+ "abundance": 0.0425
1635
+ },
1636
+ "36": {
1637
+ "mass": 35.96708088,
1638
+ "abundance": 0.0001
1639
+ }
1640
+ },
1641
+ "molar mass": 32.06479
1642
+ },
1643
+ "chlorine": {
1644
+ "symbol": "cl",
1645
+ "number": 17,
1646
+ "ionization energy": 12.967633,
1647
+ "electronegativity": {
1648
+ "pauling": 3.16,
1649
+ "thermochemical": 3.5,
1650
+ "allen": 2.869
1651
+ },
1652
+ "ground configuration": "[ne]3s2 3p5",
1653
+ "radius": {
1654
+ "van der waals": 175,
1655
+ "calculated": 79,
1656
+ "crystal": 100
1657
+ },
1658
+ "stable": {
1659
+ "35": {
1660
+ "mass": 34.96885271,
1661
+ "abundance": 0.7576
1662
+ },
1663
+ "37": {
1664
+ "mass": 36.9659026,
1665
+ "abundance": 0.2424
1666
+ }
1667
+ },
1668
+ "molar mass": 35.45294
1669
+ },
1670
+ "argon": {
1671
+ "symbol": "ar",
1672
+ "number": 18,
1673
+ "ionization energy": 15.7596119,
1674
+ "electronegativity": {
1675
+ "pauling": null,
1676
+ "thermochemical": 3.57,
1677
+ "allen": 3.242
1678
+ },
1679
+ "ground configuration": "[ne]3s2 3p6",
1680
+ "radius": {
1681
+ "van der waals": 188,
1682
+ "calculated": 71,
1683
+ "crystal": null
1684
+ },
1685
+ "stable": {
1686
+ "36": {
1687
+ "mass": 35.96754626,
1688
+ "abundance": 0.003365
1689
+ },
1690
+ "38": {
1691
+ "mass": 37.9627322,
1692
+ "abundance": 0.000632
1693
+ },
1694
+ "40": {
1695
+ "mass": 39.962383124,
1696
+ "abundance": 0.996003
1697
+ }
1698
+ },
1699
+ "molar mass": 39.94768
1700
+ },
1701
+ "potassium": {
1702
+ "symbol": "k",
1703
+ "number": 19,
1704
+ "ionization energy": 4.34066373,
1705
+ "electronegativity": {
1706
+ "pauling": 0.82,
1707
+ "thermochemical": 2.07,
1708
+ "allen": 0.734
1709
+ },
1710
+ "ground configuration": "[ar]4s",
1711
+ "radius": {
1712
+ "van der waals": 275,
1713
+ "calculated": 243,
1714
+ "crystal": 220
1715
+ },
1716
+ "stable": {
1717
+ "39": {
1718
+ "mass": 38.9637069,
1719
+ "abundance": 0.932581
1720
+ },
1721
+ "40": {
1722
+ "mass": 39.96399867,
1723
+ "abundance": 0.000117
1724
+ },
1725
+ "41": {
1726
+ "mass": 40.96182597,
1727
+ "abundance": 0.067302
1728
+ }
1729
+ },
1730
+ "molar mass": 39.0983
1731
+ },
1732
+ "calcium": {
1733
+ "symbol": "ca",
1734
+ "number": 20,
1735
+ "ionization energy": 6.11315547,
1736
+ "electronegativity": {
1737
+ "pauling": 1.0,
1738
+ "thermochemical": 2.2,
1739
+ "allen": 1.034
1740
+ },
1741
+ "ground configuration": "[ar]4s2",
1742
+ "radius": {
1743
+ "van der waals": 231,
1744
+ "calculated": 194,
1745
+ "crystal": 180
1746
+ },
1747
+ "stable": {
1748
+ "40": {
1749
+ "mass": 39.9625912,
1750
+ "abundance": 0.96941
1751
+ },
1752
+ "42": {
1753
+ "mass": 41.9586183,
1754
+ "abundance": 0.00647
1755
+ },
1756
+ "43": {
1757
+ "mass": 42.9587668,
1758
+ "abundance": 0.00135
1759
+ },
1760
+ "44": {
1761
+ "mass": 43.9554811,
1762
+ "abundance": 0.02086
1763
+ },
1764
+ "46": {
1765
+ "mass": 45.9536927,
1766
+ "abundance": 4e-05
1767
+ },
1768
+ "48": {
1769
+ "mass": 47.952533,
1770
+ "abundance": 0.00187
1771
+ }
1772
+ },
1773
+ "molar mass": 40.07802
1774
+ },
1775
+ "scandium": {
1776
+ "symbol": "sc",
1777
+ "number": 21,
1778
+ "ionization energy": 6.56149,
1779
+ "electronegativity": {
1780
+ "pauling": 1.36,
1781
+ "thermochemical": 2.35,
1782
+ "allen": 1.19
1783
+ },
1784
+ "ground configuration": "[ar]3d 4s2",
1785
+ "radius": {
1786
+ "van der waals": null,
1787
+ "calculated": 184,
1788
+ "crystal": 160
1789
+ },
1790
+ "stable": {
1791
+ "45": {
1792
+ "mass": 44.9559102,
1793
+ "abundance": 1.0
1794
+ }
1795
+ },
1796
+ "molar mass": 44.95591
1797
+ },
1798
+ "titanium": {
1799
+ "symbol": "ti",
1800
+ "number": 22,
1801
+ "ionization energy": 6.82812,
1802
+ "electronegativity": {
1803
+ "pauling": 1.54,
1804
+ "thermochemical": 2.23,
1805
+ "allen": 1.38
1806
+ },
1807
+ "ground configuration": "[ar]3d2 4s2",
1808
+ "radius": {
1809
+ "van der waals": null,
1810
+ "calculated": 176,
1811
+ "crystal": 140
1812
+ },
1813
+ "stable": {
1814
+ "46": {
1815
+ "mass": 45.9526295,
1816
+ "abundance": 0.0825
1817
+ },
1818
+ "47": {
1819
+ "mass": 46.9517637,
1820
+ "abundance": 0.0744
1821
+ },
1822
+ "48": {
1823
+ "mass": 47.947947,
1824
+ "abundance": 0.7372
1825
+ },
1826
+ "49": {
1827
+ "mass": 48.9478707,
1828
+ "abundance": 0.0541
1829
+ },
1830
+ "50": {
1831
+ "mass": 49.944792,
1832
+ "abundance": 0.0518
1833
+ }
1834
+ },
1835
+ "molar mass": 47.86675
1836
+ },
1837
+ "vanadium": {
1838
+ "symbol": "v",
1839
+ "number": 23,
1840
+ "ionization energy": 6.746187,
1841
+ "electronegativity": {
1842
+ "pauling": 1.63,
1843
+ "thermochemical": 2.08,
1844
+ "allen": 1.53
1845
+ },
1846
+ "ground configuration": "[ar]3d3 4s2",
1847
+ "radius": {
1848
+ "van der waals": null,
1849
+ "calculated": 171,
1850
+ "crystal": 135
1851
+ },
1852
+ "stable": {
1853
+ "50": {
1854
+ "mass": 49.9471627,
1855
+ "abundance": 0.0025
1856
+ },
1857
+ "51": {
1858
+ "mass": 50.9439635,
1859
+ "abundance": 0.9975
1860
+ }
1861
+ },
1862
+ "molar mass": 50.94147
1863
+ },
1864
+ "chromium": {
1865
+ "symbol": "cr",
1866
+ "number": 24,
1867
+ "ionization energy": 6.76651,
1868
+ "electronegativity": {
1869
+ "pauling": 1.66,
1870
+ "thermochemical": 2.12,
1871
+ "allen": 1.65
1872
+ },
1873
+ "ground configuration": "[ar]3d5 4s",
1874
+ "radius": {
1875
+ "van der waals": null,
1876
+ "calculated": 166,
1877
+ "crystal": 140
1878
+ },
1879
+ "stable": {
1880
+ "50": {
1881
+ "mass": 49.9460495,
1882
+ "abundance": 0.04345
1883
+ },
1884
+ "52": {
1885
+ "mass": 51.9405115,
1886
+ "abundance": 0.83789
1887
+ },
1888
+ "53": {
1889
+ "mass": 52.9406534,
1890
+ "abundance": 0.09501
1891
+ },
1892
+ "54": {
1893
+ "mass": 53.9388846,
1894
+ "abundance": 0.02365
1895
+ }
1896
+ },
1897
+ "molar mass": 51.99614
1898
+ },
1899
+ "manganese": {
1900
+ "symbol": "mn",
1901
+ "number": 25,
1902
+ "ionization energy": 7.434038,
1903
+ "electronegativity": {
1904
+ "pauling": 1.55,
1905
+ "thermochemical": 2.2,
1906
+ "allen": 1.75
1907
+ },
1908
+ "ground configuration": "[ar]3d5 4s2",
1909
+ "radius": {
1910
+ "van der waals": null,
1911
+ "calculated": 161,
1912
+ "crystal": 140
1913
+ },
1914
+ "stable": {
1915
+ "55": {
1916
+ "mass": 54.9380493,
1917
+ "abundance": 1.0
1918
+ }
1919
+ },
1920
+ "molar mass": 54.93805
1921
+ },
1922
+ "iron": {
1923
+ "symbol": "fe",
1924
+ "number": 26,
1925
+ "ionization energy": 7.9024681,
1926
+ "electronegativity": {
1927
+ "pauling": 1.83,
1928
+ "thermochemical": 2.32,
1929
+ "allen": 1.8
1930
+ },
1931
+ "ground configuration": "[ar]3d6 4s2",
1932
+ "radius": {
1933
+ "van der waals": null,
1934
+ "calculated": 156,
1935
+ "crystal": 140
1936
+ },
1937
+ "stable": {
1938
+ "54": {
1939
+ "mass": 53.9396147,
1940
+ "abundance": 0.05845
1941
+ },
1942
+ "56": {
1943
+ "mass": 55.9349418,
1944
+ "abundance": 0.91754
1945
+ },
1946
+ "57": {
1947
+ "mass": 56.9353983,
1948
+ "abundance": 0.02119
1949
+ },
1950
+ "58": {
1951
+ "mass": 57.9332801,
1952
+ "abundance": 0.00282
1953
+ }
1954
+ },
1955
+ "molar mass": 55.84515
1956
+ },
1957
+ "cobalt": {
1958
+ "symbol": "co",
1959
+ "number": 27,
1960
+ "ionization energy": 7.88101,
1961
+ "electronegativity": {
1962
+ "pauling": 1.88,
1963
+ "thermochemical": 2.34,
1964
+ "allen": 1.84
1965
+ },
1966
+ "ground configuration": "[ar]3d7 4s2",
1967
+ "radius": {
1968
+ "van der waals": null,
1969
+ "calculated": 152,
1970
+ "crystal": 135
1971
+ },
1972
+ "stable": {
1973
+ "59": {
1974
+ "mass": 58.9331999,
1975
+ "abundance": 1.0
1976
+ }
1977
+ },
1978
+ "molar mass": 58.9332
1979
+ },
1980
+ "nickel": {
1981
+ "symbol": "ni",
1982
+ "number": 28,
1983
+ "ionization energy": 7.639878,
1984
+ "electronegativity": {
1985
+ "pauling": 1.91,
1986
+ "thermochemical": 2.32,
1987
+ "allen": 1.88
1988
+ },
1989
+ "ground configuration": "[ar]3d8 4s2",
1990
+ "radius": {
1991
+ "van der waals": null,
1992
+ "calculated": 149,
1993
+ "crystal": 135
1994
+ },
1995
+ "stable": {
1996
+ "58": {
1997
+ "mass": 57.9353477,
1998
+ "abundance": 0.680769
1999
+ },
2000
+ "60": {
2001
+ "mass": 59.9307903,
2002
+ "abundance": 0.262231
2003
+ },
2004
+ "61": {
2005
+ "mass": 60.9310601,
2006
+ "abundance": 0.011399
2007
+ },
2008
+ "62": {
2009
+ "mass": 61.9283484,
2010
+ "abundance": 0.036345
2011
+ },
2012
+ "64": {
2013
+ "mass": 63.9279692,
2014
+ "abundance": 0.009256
2015
+ }
2016
+ },
2017
+ "molar mass": 58.69336
2018
+ },
2019
+ "copper": {
2020
+ "symbol": "cu",
2021
+ "number": 29,
2022
+ "ionization energy": 7.72638,
2023
+ "electronegativity": {
2024
+ "pauling": 1.9,
2025
+ "thermochemical": 2.86,
2026
+ "allen": 1.85
2027
+ },
2028
+ "ground configuration": "[ar]3d10 4s",
2029
+ "radius": {
2030
+ "van der waals": null,
2031
+ "calculated": 145,
2032
+ "crystal": 135
2033
+ },
2034
+ "stable": {
2035
+ "63": {
2036
+ "mass": 62.9296007,
2037
+ "abundance": 0.6915
2038
+ },
2039
+ "65": {
2040
+ "mass": 64.9277938,
2041
+ "abundance": 0.3085
2042
+ }
2043
+ },
2044
+ "molar mass": 63.54604
2045
+ },
2046
+ "zinc": {
2047
+ "symbol": "zn",
2048
+ "number": 30,
2049
+ "ionization energy": 9.394197,
2050
+ "electronegativity": {
2051
+ "pauling": 1.65,
2052
+ "thermochemical": 2.26,
2053
+ "allen": 1.59
2054
+ },
2055
+ "ground configuration": "[ar]3d10 4s2",
2056
+ "radius": {
2057
+ "van der waals": null,
2058
+ "calculated": 142,
2059
+ "crystal": 135
2060
+ },
2061
+ "stable": {
2062
+ "64": {
2063
+ "mass": 63.9291461,
2064
+ "abundance": 0.48268
2065
+ },
2066
+ "66": {
2067
+ "mass": 65.9260364,
2068
+ "abundance": 0.27975
2069
+ },
2070
+ "67": {
2071
+ "mass": 66.9271305,
2072
+ "abundance": 0.04102
2073
+ },
2074
+ "68": {
2075
+ "mass": 67.9248473,
2076
+ "abundance": 0.19024
2077
+ },
2078
+ "70": {
2079
+ "mass": 69.925325,
2080
+ "abundance": 0.00631
2081
+ }
2082
+ },
2083
+ "molar mass": 65.40873
2084
+ },
2085
+ "gallium": {
2086
+ "symbol": "ga",
2087
+ "number": 31,
2088
+ "ionization energy": 5.999302,
2089
+ "electronegativity": {
2090
+ "pauling": 1.81,
2091
+ "thermochemical": 2.43,
2092
+ "allen": 1.756
2093
+ },
2094
+ "ground configuration": "[ar]3d10 4s2 4p",
2095
+ "radius": {
2096
+ "van der waals": 187,
2097
+ "calculated": 136,
2098
+ "crystal": 130
2099
+ },
2100
+ "stable": {
2101
+ "69": {
2102
+ "mass": 68.925581,
2103
+ "abundance": 0.60108
2104
+ },
2105
+ "71": {
2106
+ "mass": 70.9247073,
2107
+ "abundance": 0.39892
2108
+ }
2109
+ },
2110
+ "molar mass": 69.72307
2111
+ },
2112
+ "germanium": {
2113
+ "symbol": "ge",
2114
+ "number": 32,
2115
+ "ionization energy": 7.899435,
2116
+ "electronegativity": {
2117
+ "pauling": 2.01,
2118
+ "thermochemical": 2.79,
2119
+ "allen": 1.994
2120
+ },
2121
+ "ground configuration": "[ar]3d10 4s2 4p2",
2122
+ "radius": {
2123
+ "van der waals": 211,
2124
+ "calculated": 125,
2125
+ "crystal": 125
2126
+ },
2127
+ "stable": {
2128
+ "70": {
2129
+ "mass": 69.92425,
2130
+ "abundance": 0.2038
2131
+ },
2132
+ "72": {
2133
+ "mass": 71.9220763,
2134
+ "abundance": 0.2731
2135
+ },
2136
+ "73": {
2137
+ "mass": 72.9234595,
2138
+ "abundance": 0.0776
2139
+ },
2140
+ "74": {
2141
+ "mass": 73.9211784,
2142
+ "abundance": 0.3672
2143
+ },
2144
+ "76": {
2145
+ "mass": 75.9214029,
2146
+ "abundance": 0.0783
2147
+ }
2148
+ },
2149
+ "molar mass": 72.63984
2150
+ },
2151
+ "arsenic": {
2152
+ "symbol": "as",
2153
+ "number": 33,
2154
+ "ionization energy": 9.78855,
2155
+ "electronegativity": {
2156
+ "pauling": 2.18,
2157
+ "thermochemical": 3.15,
2158
+ "allen": 2.211
2159
+ },
2160
+ "ground configuration": "[ar]3d10 4s2 4p3",
2161
+ "radius": {
2162
+ "van der waals": 185,
2163
+ "calculated": 114,
2164
+ "crystal": 115
2165
+ },
2166
+ "stable": {
2167
+ "75": {
2168
+ "mass": 74.9215966,
2169
+ "abundance": 1.0
2170
+ }
2171
+ },
2172
+ "molar mass": 74.9216
2173
+ },
2174
+ "selenium": {
2175
+ "symbol": "se",
2176
+ "number": 34,
2177
+ "ionization energy": 9.752392,
2178
+ "electronegativity": {
2179
+ "pauling": 2.55,
2180
+ "thermochemical": 3.37,
2181
+ "allen": 2.424
2182
+ },
2183
+ "ground configuration": "[ar]3d10 4s2 4p4",
2184
+ "radius": {
2185
+ "van der waals": 190,
2186
+ "calculated": 103,
2187
+ "crystal": 115
2188
+ },
2189
+ "stable": {
2190
+ "74": {
2191
+ "mass": 73.9224767,
2192
+ "abundance": 0.0089
2193
+ },
2194
+ "76": {
2195
+ "mass": 75.9192143,
2196
+ "abundance": 0.0937
2197
+ },
2198
+ "77": {
2199
+ "mass": 76.9199148,
2200
+ "abundance": 0.0763
2201
+ },
2202
+ "78": {
2203
+ "mass": 77.9173097,
2204
+ "abundance": 0.2377
2205
+ },
2206
+ "80": {
2207
+ "mass": 79.9165221,
2208
+ "abundance": 0.4961
2209
+ },
2210
+ "82": {
2211
+ "mass": 81.9167003,
2212
+ "abundance": 0.0873
2213
+ }
2214
+ },
2215
+ "molar mass": 78.95939
2216
+ },
2217
+ "bromine": {
2218
+ "symbol": "br",
2219
+ "number": 35,
2220
+ "ionization energy": 11.81381,
2221
+ "electronegativity": {
2222
+ "pauling": 2.96,
2223
+ "thermochemical": 3.45,
2224
+ "allen": 2.685
2225
+ },
2226
+ "ground configuration": "[ar]3d10 4s2 4p5",
2227
+ "radius": {
2228
+ "van der waals": 183,
2229
+ "calculated": 94,
2230
+ "crystal": 115
2231
+ },
2232
+ "stable": {
2233
+ "79": {
2234
+ "mass": 78.9183379,
2235
+ "abundance": 0.5069
2236
+ },
2237
+ "81": {
2238
+ "mass": 80.916291,
2239
+ "abundance": 0.4931
2240
+ }
2241
+ },
2242
+ "molar mass": 79.90353
2243
+ },
2244
+ "krypton": {
2245
+ "symbol": "kr",
2246
+ "number": 36,
2247
+ "ionization energy": 13.9996055,
2248
+ "electronegativity": {
2249
+ "pauling": null,
2250
+ "thermochemical": 3.37,
2251
+ "allen": 2.966
2252
+ },
2253
+ "ground configuration": "[ar]3d10 4s2 4p6",
2254
+ "radius": {
2255
+ "van der waals": 202,
2256
+ "calculated": 88,
2257
+ "crystal": null
2258
+ },
2259
+ "stable": {
2260
+ "78": {
2261
+ "mass": 77.920388,
2262
+ "abundance": 0.00355
2263
+ },
2264
+ "80": {
2265
+ "mass": 79.916379,
2266
+ "abundance": 0.02286
2267
+ },
2268
+ "82": {
2269
+ "mass": 81.913485,
2270
+ "abundance": 0.11593
2271
+ },
2272
+ "83": {
2273
+ "mass": 82.914137,
2274
+ "abundance": 0.115
2275
+ },
2276
+ "84": {
2277
+ "mass": 83.911508,
2278
+ "abundance": 0.56987
2279
+ },
2280
+ "86": {
2281
+ "mass": 85.910615,
2282
+ "abundance": 0.17279
2283
+ }
2284
+ },
2285
+ "molar mass": 83.79801
2286
+ },
2287
+ "rubidium": {
2288
+ "symbol": "rb",
2289
+ "number": 37,
2290
+ "ionization energy": 4.1771281,
2291
+ "electronegativity": {
2292
+ "pauling": 0.82,
2293
+ "thermochemical": 2.07,
2294
+ "allen": 0.706
2295
+ },
2296
+ "ground configuration": "[kr]5s",
2297
+ "radius": {
2298
+ "van der waals": 303,
2299
+ "calculated": 265,
2300
+ "crystal": 235
2301
+ },
2302
+ "stable": {
2303
+ "85": {
2304
+ "mass": 84.9117924,
2305
+ "abundance": 0.7217
2306
+ },
2307
+ "87": {
2308
+ "mass": 86.9091858,
2309
+ "abundance": 0.2783
2310
+ }
2311
+ },
2312
+ "molar mass": 85.46767
2313
+ },
2314
+ "strontium": {
2315
+ "symbol": "sr",
2316
+ "number": 38,
2317
+ "ionization energy": 5.69486745,
2318
+ "electronegativity": {
2319
+ "pauling": 0.95,
2320
+ "thermochemical": 2.13,
2321
+ "allen": 0.963
2322
+ },
2323
+ "ground configuration": "[kr]5s2",
2324
+ "radius": {
2325
+ "van der waals": 249,
2326
+ "calculated": 219,
2327
+ "crystal": 200
2328
+ },
2329
+ "stable": {
2330
+ "84": {
2331
+ "mass": 83.913426,
2332
+ "abundance": 0.0056
2333
+ },
2334
+ "86": {
2335
+ "mass": 85.9092647,
2336
+ "abundance": 0.0986
2337
+ },
2338
+ "87": {
2339
+ "mass": 86.9088816,
2340
+ "abundance": 0.07
2341
+ },
2342
+ "88": {
2343
+ "mass": 87.9056167,
2344
+ "abundance": 0.8258
2345
+ }
2346
+ },
2347
+ "molar mass": 87.61665
2348
+ },
2349
+ "yttrium": {
2350
+ "symbol": "y",
2351
+ "number": 39,
2352
+ "ionization energy": 6.21726,
2353
+ "electronegativity": {
2354
+ "pauling": 1.22,
2355
+ "thermochemical": 2.52,
2356
+ "allen": 1.12
2357
+ },
2358
+ "ground configuration": "[kr]4d 5s2",
2359
+ "radius": {
2360
+ "van der waals": null,
2361
+ "calculated": 212,
2362
+ "crystal": 180
2363
+ },
2364
+ "stable": {
2365
+ "89": {
2366
+ "mass": 88.9058485,
2367
+ "abundance": 1.0
2368
+ }
2369
+ },
2370
+ "molar mass": 88.90585
2371
+ },
2372
+ "zirconium": {
2373
+ "symbol": "zr",
2374
+ "number": 40,
2375
+ "ionization energy": 6.634126,
2376
+ "electronegativity": {
2377
+ "pauling": 1.33,
2378
+ "thermochemical": 2.05,
2379
+ "allen": 1.32
2380
+ },
2381
+ "ground configuration": "[kr]4d2 5s2",
2382
+ "radius": {
2383
+ "van der waals": null,
2384
+ "calculated": 206,
2385
+ "crystal": 155
2386
+ },
2387
+ "stable": {
2388
+ "90": {
2389
+ "mass": 89.9047022,
2390
+ "abundance": 0.5145
2391
+ },
2392
+ "91": {
2393
+ "mass": 90.9056434,
2394
+ "abundance": 0.1122
2395
+ },
2396
+ "92": {
2397
+ "mass": 91.9050386,
2398
+ "abundance": 0.1715
2399
+ },
2400
+ "94": {
2401
+ "mass": 93.9063144,
2402
+ "abundance": 0.1738
2403
+ },
2404
+ "96": {
2405
+ "mass": 95.908275,
2406
+ "abundance": 0.028
2407
+ }
2408
+ },
2409
+ "molar mass": 91.22365
2410
+ },
2411
+ "niobium": {
2412
+ "symbol": "nb",
2413
+ "number": 41,
2414
+ "ionization energy": 6.75885,
2415
+ "electronegativity": {
2416
+ "pauling": null,
2417
+ "thermochemical": 2.59,
2418
+ "allen": 1.41
2419
+ },
2420
+ "ground configuration": "[kr]4d4 5s",
2421
+ "radius": {
2422
+ "van der waals": null,
2423
+ "calculated": 198,
2424
+ "crystal": 145
2425
+ },
2426
+ "stable": {
2427
+ "93": {
2428
+ "mass": 92.9063762,
2429
+ "abundance": 1.0
2430
+ }
2431
+ },
2432
+ "molar mass": 92.90638
2433
+ },
2434
+ "molybdenum": {
2435
+ "symbol": "mo",
2436
+ "number": 42,
2437
+ "ionization energy": 7.09243,
2438
+ "electronegativity": {
2439
+ "pauling": 2.16,
2440
+ "thermochemical": 2.47,
2441
+ "allen": 1.47
2442
+ },
2443
+ "ground configuration": "[kr]4d5 5s",
2444
+ "radius": {
2445
+ "van der waals": null,
2446
+ "calculated": 190,
2447
+ "crystal": 145
2448
+ },
2449
+ "stable": {
2450
+ "92": {
2451
+ "mass": 91.90681,
2452
+ "abundance": 0.1477
2453
+ },
2454
+ "94": {
2455
+ "mass": 93.9050867,
2456
+ "abundance": 0.0923
2457
+ },
2458
+ "95": {
2459
+ "mass": 94.9058406,
2460
+ "abundance": 0.159
2461
+ },
2462
+ "96": {
2463
+ "mass": 95.904678,
2464
+ "abundance": 0.1668
2465
+ },
2466
+ "97": {
2467
+ "mass": 96.9060201,
2468
+ "abundance": 0.0956
2469
+ },
2470
+ "98": {
2471
+ "mass": 97.9054069,
2472
+ "abundance": 0.2419
2473
+ },
2474
+ "100": {
2475
+ "mass": 99.907476,
2476
+ "abundance": 0.0967
2477
+ }
2478
+ },
2479
+ "molar mass": 95.93759
2480
+ },
2481
+ "technetium": {
2482
+ "symbol": "tc",
2483
+ "number": 43,
2484
+ "ionization energy": 7.11938,
2485
+ "electronegativity": {
2486
+ "pauling": null,
2487
+ "thermochemical": 2.82,
2488
+ "allen": 1.51
2489
+ },
2490
+ "ground configuration": "[kr]4d5 5s2",
2491
+ "radius": {
2492
+ "van der waals": null,
2493
+ "calculated": 183,
2494
+ "crystal": 135
2495
+ },
2496
+ "stable": {},
2497
+ "molar mass": 0
2498
+ },
2499
+ "ruthenium": {
2500
+ "symbol": "ru",
2501
+ "number": 44,
2502
+ "radius": {
2503
+ "van der waals": null,
2504
+ "calculated": 178,
2505
+ "crystal": 130
2506
+ },
2507
+ "ionization energy": 7.3605,
2508
+ "electronegativity": {
2509
+ "pauling": null,
2510
+ "thermochemical": 2.68,
2511
+ "allen": 1.54
2512
+ },
2513
+ "ground configuration": "[kr]4d7 5s",
2514
+ "stable": {
2515
+ "96": {
2516
+ "mass": 95.907604,
2517
+ "abundance": 0.0554
2518
+ },
2519
+ "98": {
2520
+ "mass": 97.905287,
2521
+ "abundance": 0.0187
2522
+ },
2523
+ "99": {
2524
+ "mass": 98.9059385,
2525
+ "abundance": 0.1276
2526
+ },
2527
+ "100": {
2528
+ "mass": 99.9042189,
2529
+ "abundance": 0.126
2530
+ },
2531
+ "101": {
2532
+ "mass": 100.9055815,
2533
+ "abundance": 0.1706
2534
+ },
2535
+ "102": {
2536
+ "mass": 101.9043488,
2537
+ "abundance": 0.3155
2538
+ },
2539
+ "104": {
2540
+ "mass": 103.90543,
2541
+ "abundance": 0.1862
2542
+ }
2543
+ },
2544
+ "molar mass": 101.06494
2545
+ },
2546
+ "rhodium": {
2547
+ "symbol": "rh",
2548
+ "number": 45,
2549
+ "ionization energy": 7.4589,
2550
+ "electronegativity": {
2551
+ "pauling": 2.28,
2552
+ "thermochemical": 2.65,
2553
+ "allen": 1.56
2554
+ },
2555
+ "ground configuration": "[kr]4d8 5s",
2556
+ "radius": {
2557
+ "van der waals": null,
2558
+ "calculated": 173,
2559
+ "crystal": 135
2560
+ },
2561
+ "stable": {
2562
+ "103": {
2563
+ "mass": 102.905504,
2564
+ "abundance": 1.0
2565
+ }
2566
+ },
2567
+ "molar mass": 102.9055
2568
+ },
2569
+ "palladium": {
2570
+ "symbol": "pd",
2571
+ "number": 46,
2572
+ "ionization energy": 8.336839,
2573
+ "electronegativity": {
2574
+ "pauling": 2.2,
2575
+ "thermochemical": 2.7,
2576
+ "allen": 1.58
2577
+ },
2578
+ "ground configuration": "[kr]4d10",
2579
+ "radius": {
2580
+ "van der waals": null,
2581
+ "calculated": 169,
2582
+ "crystal": 140
2583
+ },
2584
+ "stable": {
2585
+ "102": {
2586
+ "mass": 101.905607,
2587
+ "abundance": 0.0102
2588
+ },
2589
+ "104": {
2590
+ "mass": 103.904034,
2591
+ "abundance": 0.1114
2592
+ },
2593
+ "105": {
2594
+ "mass": 104.905083,
2595
+ "abundance": 0.2233
2596
+ },
2597
+ "106": {
2598
+ "mass": 105.903484,
2599
+ "abundance": 0.2733
2600
+ },
2601
+ "108": {
2602
+ "mass": 107.903895,
2603
+ "abundance": 0.2646
2604
+ },
2605
+ "110": {
2606
+ "mass": 109.905153,
2607
+ "abundance": 0.1172
2608
+ }
2609
+ },
2610
+ "molar mass": 106.41533
2611
+ },
2612
+ "silver": {
2613
+ "symbol": "ag",
2614
+ "number": 47,
2615
+ "ionization energy": 7.576234,
2616
+ "electronegativity": {
2617
+ "pauling": 1.93,
2618
+ "thermochemical": 2.88,
2619
+ "allen": 1.87
2620
+ },
2621
+ "ground configuration": "[kr]4d10 5s",
2622
+ "radius": {
2623
+ "van der waals": null,
2624
+ "calculated": 165,
2625
+ "crystal": 160
2626
+ },
2627
+ "stable": {
2628
+ "107": {
2629
+ "mass": 106.905093,
2630
+ "abundance": 0.51839
2631
+ },
2632
+ "109": {
2633
+ "mass": 108.904756,
2634
+ "abundance": 0.48161
2635
+ }
2636
+ },
2637
+ "molar mass": 107.86815
2638
+ },
2639
+ "cadmium": {
2640
+ "symbol": "cd",
2641
+ "number": 48,
2642
+ "ionization energy": 8.99382,
2643
+ "electronegativity": {
2644
+ "pauling": 1.69,
2645
+ "thermochemical": 2.36,
2646
+ "allen": 1.52
2647
+ },
2648
+ "ground configuration": "[kr]4d10 5s2",
2649
+ "radius": {
2650
+ "van der waals": null,
2651
+ "calculated": 161,
2652
+ "crystal": 155
2653
+ },
2654
+ "stable": {
2655
+ "106": {
2656
+ "mass": 105.906458,
2657
+ "abundance": 0.0125
2658
+ },
2659
+ "108": {
2660
+ "mass": 107.904183,
2661
+ "abundance": 0.0089
2662
+ },
2663
+ "110": {
2664
+ "mass": 109.903006,
2665
+ "abundance": 0.1249
2666
+ },
2667
+ "111": {
2668
+ "mass": 110.904182,
2669
+ "abundance": 0.128
2670
+ },
2671
+ "112": {
2672
+ "mass": 111.9027577,
2673
+ "abundance": 0.2413
2674
+ },
2675
+ "113": {
2676
+ "mass": 112.9044014,
2677
+ "abundance": 0.1222
2678
+ },
2679
+ "114": {
2680
+ "mass": 113.9033586,
2681
+ "abundance": 0.2873
2682
+ },
2683
+ "116": {
2684
+ "mass": 115.904756,
2685
+ "abundance": 0.0749
2686
+ }
2687
+ },
2688
+ "molar mass": 112.41155
2689
+ },
2690
+ "indium": {
2691
+ "symbol": "in",
2692
+ "number": 49,
2693
+ "ionization energy": 5.7863558,
2694
+ "electronegativity": {
2695
+ "pauling": 1.78,
2696
+ "thermochemical": 2.29,
2697
+ "allen": 1.656
2698
+ },
2699
+ "ground configuration": "[cd]5p",
2700
+ "radius": {
2701
+ "van der waals": 193,
2702
+ "calculated": 156,
2703
+ "crystal": 155
2704
+ },
2705
+ "stable": {
2706
+ "113": {
2707
+ "mass": 112.904062,
2708
+ "abundance": 0.0429
2709
+ },
2710
+ "115": {
2711
+ "mass": 114.903879,
2712
+ "abundance": 0.9571
2713
+ }
2714
+ },
2715
+ "molar mass": 114.81809
2716
+ },
2717
+ "tin": {
2718
+ "symbol": "sn",
2719
+ "number": 50,
2720
+ "ionization energy": 7.343918,
2721
+ "electronegativity": {
2722
+ "pauling": 1.96,
2723
+ "thermochemical": 2.68,
2724
+ "allen": 1.824
2725
+ },
2726
+ "ground configuration": "[cd]5p2",
2727
+ "radius": {
2728
+ "van der waals": 217,
2729
+ "calculated": 145,
2730
+ "crystal": 145
2731
+ },
2732
+ "stable": {
2733
+ "112": {
2734
+ "mass": 111.904822,
2735
+ "abundance": 0.0097
2736
+ },
2737
+ "114": {
2738
+ "mass": 113.902783,
2739
+ "abundance": 0.0066
2740
+ },
2741
+ "115": {
2742
+ "mass": 114.903347,
2743
+ "abundance": 0.0034
2744
+ },
2745
+ "116": {
2746
+ "mass": 115.901745,
2747
+ "abundance": 0.1454
2748
+ },
2749
+ "117": {
2750
+ "mass": 116.902955,
2751
+ "abundance": 0.0768
2752
+ },
2753
+ "118": {
2754
+ "mass": 117.901608,
2755
+ "abundance": 0.2422
2756
+ },
2757
+ "119": {
2758
+ "mass": 118.903311,
2759
+ "abundance": 0.0859
2760
+ },
2761
+ "120": {
2762
+ "mass": 119.9021985,
2763
+ "abundance": 0.3258
2764
+ },
2765
+ "122": {
2766
+ "mass": 121.9034411,
2767
+ "abundance": 0.0463
2768
+ },
2769
+ "124": {
2770
+ "mass": 123.9052745,
2771
+ "abundance": 0.0579
2772
+ }
2773
+ },
2774
+ "molar mass": 118.71011
2775
+ },
2776
+ "antimony": {
2777
+ "symbol": "sb",
2778
+ "number": 51,
2779
+ "ionization energy": 8.608389,
2780
+ "electronegativity": {
2781
+ "pauling": 2.05,
2782
+ "thermochemical": 3.05,
2783
+ "allen": 1.984
2784
+ },
2785
+ "ground configuration": "[cd]5p3",
2786
+ "radius": {
2787
+ "van der waals": 206,
2788
+ "calculated": 133,
2789
+ "crystal": 145
2790
+ },
2791
+ "stable": {
2792
+ "121": {
2793
+ "mass": 120.9038222,
2794
+ "abundance": 0.5721
2795
+ },
2796
+ "123": {
2797
+ "mass": 122.904216,
2798
+ "abundance": 0.4279
2799
+ }
2800
+ },
2801
+ "molar mass": 121.75979
2802
+ },
2803
+ "tellurium": {
2804
+ "symbol": "te",
2805
+ "number": 52,
2806
+ "ionization energy": 9.009808,
2807
+ "electronegativity": {
2808
+ "pauling": null,
2809
+ "thermochemical": 3.14,
2810
+ "allen": 2.158
2811
+ },
2812
+ "ground configuration": "[cd]5p4",
2813
+ "radius": {
2814
+ "van der waals": 206,
2815
+ "calculated": 123,
2816
+ "crystal": 140
2817
+ },
2818
+ "stable": {
2819
+ "120": {
2820
+ "mass": 119.904026,
2821
+ "abundance": 0.0009
2822
+ },
2823
+ "122": {
2824
+ "mass": 121.9030558,
2825
+ "abundance": 0.0255
2826
+ },
2827
+ "123": {
2828
+ "mass": 122.9042711,
2829
+ "abundance": 0.0089
2830
+ },
2831
+ "124": {
2832
+ "mass": 123.9028188,
2833
+ "abundance": 0.0474
2834
+ },
2835
+ "125": {
2836
+ "mass": 124.9044241,
2837
+ "abundance": 0.0707
2838
+ },
2839
+ "126": {
2840
+ "mass": 125.9033049,
2841
+ "abundance": 0.1884
2842
+ },
2843
+ "128": {
2844
+ "mass": 127.9044615,
2845
+ "abundance": 0.3174
2846
+ },
2847
+ "130": {
2848
+ "mass": 129.9062229,
2849
+ "abundance": 0.3408
2850
+ }
2851
+ },
2852
+ "molar mass": 127.60313
2853
+ },
2854
+ "iodine": {
2855
+ "symbol": "i",
2856
+ "number": 53,
2857
+ "ionization energy": 10.45126,
2858
+ "electronegativity": {
2859
+ "pauling": 2.66,
2860
+ "thermochemical": 3.2,
2861
+ "allen": 2.359
2862
+ },
2863
+ "ground configuration": "[cd]5p5",
2864
+ "radius": {
2865
+ "van der waals": 198,
2866
+ "calculated": 115,
2867
+ "crystal": 140
2868
+ },
2869
+ "stable": {
2870
+ "127": {
2871
+ "mass": 126.904468,
2872
+ "abundance": 1.0
2873
+ }
2874
+ },
2875
+ "molar mass": 126.90447
2876
+ },
2877
+ "xenon": {
2878
+ "symbol": "xe",
2879
+ "number": 54,
2880
+ "ionization energy": 12.1298437,
2881
+ "electronegativity": {
2882
+ "pauling": null,
2883
+ "thermochemical": 3.12,
2884
+ "allen": 2.582
2885
+ },
2886
+ "ground configuration": "[cd]5p6",
2887
+ "radius": {
2888
+ "van der waals": 216,
2889
+ "calculated": 108,
2890
+ "crystal": null
2891
+ },
2892
+ "stable": {
2893
+ "124": {
2894
+ "mass": 123.9058954,
2895
+ "abundance": 0.000952
2896
+ },
2897
+ "126": {
2898
+ "mass": 125.904268,
2899
+ "abundance": 0.00089
2900
+ },
2901
+ "128": {
2902
+ "mass": 127.9035305,
2903
+ "abundance": 0.019102
2904
+ },
2905
+ "129": {
2906
+ "mass": 128.9047799,
2907
+ "abundance": 0.264006
2908
+ },
2909
+ "130": {
2910
+ "mass": 129.9035089,
2911
+ "abundance": 0.04071
2912
+ },
2913
+ "131": {
2914
+ "mass": 130.9050828,
2915
+ "abundance": 0.212324
2916
+ },
2917
+ "132": {
2918
+ "mass": 131.9041546,
2919
+ "abundance": 0.269086
2920
+ },
2921
+ "134": {
2922
+ "mass": 133.9053945,
2923
+ "abundance": 0.104357
2924
+ },
2925
+ "136": {
2926
+ "mass": 135.90722,
2927
+ "abundance": 0.088573
2928
+ }
2929
+ },
2930
+ "molar mass": 131.29276
2931
+ },
2932
+ "cesium": {
2933
+ "symbol": "cs",
2934
+ "number": 55,
2935
+ "ionization energy": 3.89390572743,
2936
+ "electronegativity": {
2937
+ "pauling": 0.79,
2938
+ "thermochemical": 1.97,
2939
+ "allen": null
2940
+ },
2941
+ "ground configuration": "[xe]6s",
2942
+ "radius": {
2943
+ "van der waals": 343,
2944
+ "calculated": 298,
2945
+ "crystal": 260
2946
+ },
2947
+ "stable": {
2948
+ "133": {
2949
+ "mass": 132.905447,
2950
+ "abundance": 1.0
2951
+ }
2952
+ },
2953
+ "molar mass": 132.90545
2954
+ },
2955
+ "caesium": {
2956
+ "symbol": "cs",
2957
+ "number": 55,
2958
+ "ionization energy": 3.89390572743,
2959
+ "electronegativity": {
2960
+ "pauling": 0.79,
2961
+ "thermochemical": 1.97,
2962
+ "allen": null
2963
+ },
2964
+ "ground configuration": "[xe]6s",
2965
+ "radius": {
2966
+ "van der waals": 343,
2967
+ "calculated": 298,
2968
+ "crystal": 260
2969
+ },
2970
+ "stable": {
2971
+ "133": {
2972
+ "mass": 132.905447,
2973
+ "abundance": 1.0
2974
+ }
2975
+ },
2976
+ "molar mass": 132.90545
2977
+ },
2978
+ "barium": {
2979
+ "symbol": "ba",
2980
+ "number": 56,
2981
+ "ionization energy": 5.2116646,
2982
+ "electronegativity": {
2983
+ "pauling": 0.89,
2984
+ "thermochemical": 2.02,
2985
+ "allen": null
2986
+ },
2987
+ "ground configuration": "[xe]6s2",
2988
+ "radius": {
2989
+ "van der waals": 268,
2990
+ "calculated": 253,
2991
+ "crystal": 215
2992
+ },
2993
+ "stable": {
2994
+ "130": {
2995
+ "mass": 129.906311,
2996
+ "abundance": 0.00106
2997
+ },
2998
+ "132": {
2999
+ "mass": 131.905056,
3000
+ "abundance": 0.00101
3001
+ },
3002
+ "134": {
3003
+ "mass": 133.904504,
3004
+ "abundance": 0.02417
3005
+ },
3006
+ "135": {
3007
+ "mass": 134.905684,
3008
+ "abundance": 0.06592
3009
+ },
3010
+ "136": {
3011
+ "mass": 135.904571,
3012
+ "abundance": 0.07854
3013
+ },
3014
+ "137": {
3015
+ "mass": 136.905822,
3016
+ "abundance": 0.11232
3017
+ },
3018
+ "138": {
3019
+ "mass": 137.905242,
3020
+ "abundance": 0.71698
3021
+ }
3022
+ },
3023
+ "molar mass": 137.32689
3024
+ },
3025
+ "lanthanum": {
3026
+ "symbol": "la",
3027
+ "number": 57,
3028
+ "ionization energy": 5.5769,
3029
+ "electronegativity": {
3030
+ "pauling": 1.1,
3031
+ "thermochemical": 2.49,
3032
+ "allen": null
3033
+ },
3034
+ "ground configuration": "[xe]5d 6s2",
3035
+ "radius": {
3036
+ "van der waals": null,
3037
+ "calculated": 622,
3038
+ "crystal": 195
3039
+ },
3040
+ "stable": {
3041
+ "138": {
3042
+ "mass": 137.907108,
3043
+ "abundance": 0.0009
3044
+ },
3045
+ "139": {
3046
+ "mass": 138.906349,
3047
+ "abundance": 0.9991
3048
+ }
3049
+ },
3050
+ "molar mass": 138.90545
3051
+ },
3052
+ "cerium": {
3053
+ "symbol": "ce",
3054
+ "number": 58,
3055
+ "ionization energy": 5.5386,
3056
+ "electronegativity": {
3057
+ "pauling": 1.12,
3058
+ "thermochemical": 2.61,
3059
+ "allen": null
3060
+ },
3061
+ "ground configuration": "[xe]4f3 6s2",
3062
+ "radius": {
3063
+ "van der waals": null,
3064
+ "calculated": 505,
3065
+ "crystal": 185
3066
+ },
3067
+ "stable": {
3068
+ "136": {
3069
+ "mass": 135.90714,
3070
+ "abundance": 0.00185
3071
+ },
3072
+ "138": {
3073
+ "mass": 137.905986,
3074
+ "abundance": 0.00251
3075
+ },
3076
+ "140": {
3077
+ "mass": 139.905435,
3078
+ "abundance": 0.8845
3079
+ },
3080
+ "142": {
3081
+ "mass": 141.909241,
3082
+ "abundance": 0.11114
3083
+ }
3084
+ },
3085
+ "molar mass": 140.11572
3086
+ },
3087
+ "praseodymium": {
3088
+ "symbol": "pr",
3089
+ "number": 59,
3090
+ "ionization energy": 5.4702,
3091
+ "electronegativity": {
3092
+ "pauling": 1.13,
3093
+ "thermochemical": 2.24,
3094
+ "allen": null
3095
+ },
3096
+ "ground configuration": "[xe]4f3 6s2",
3097
+ "radius": {
3098
+ "van der waals": null,
3099
+ "calculated": 247,
3100
+ "crystal": 185
3101
+ },
3102
+ "stable": {
3103
+ "141": {
3104
+ "mass": 140.907648,
3105
+ "abundance": 1.0
3106
+ }
3107
+ },
3108
+ "molar mass": 140.90765
3109
+ },
3110
+ "neodymium": {
3111
+ "symbol": "nd",
3112
+ "number": 60,
3113
+ "ionization energy": 5.525,
3114
+ "electronegativity": {
3115
+ "pauling": 1.14,
3116
+ "thermochemical": 2.11,
3117
+ "allen": null
3118
+ },
3119
+ "ground configuration": "[xe]4f6 6s2",
3120
+ "radius": {
3121
+ "van der waals": null,
3122
+ "calculated": 206,
3123
+ "crystal": 185
3124
+ },
3125
+ "stable": {
3126
+ "142": {
3127
+ "mass": 141.907719,
3128
+ "abundance": 0.272
3129
+ },
3130
+ "143": {
3131
+ "mass": 142.90981,
3132
+ "abundance": 0.122
3133
+ },
3134
+ "144": {
3135
+ "mass": 143.910083,
3136
+ "abundance": 0.238
3137
+ },
3138
+ "145": {
3139
+ "mass": 144.912569,
3140
+ "abundance": 0.083
3141
+ },
3142
+ "146": {
3143
+ "mass": 145.913113,
3144
+ "abundance": 0.172
3145
+ },
3146
+ "148": {
3147
+ "mass": 147.916889,
3148
+ "abundance": 0.057
3149
+ },
3150
+ "150": {
3151
+ "mass": 149.920887,
3152
+ "abundance": 0.056
3153
+ }
3154
+ },
3155
+ "molar mass": 144.23613
3156
+ },
3157
+ "promethium": {
3158
+ "symbol": "pm",
3159
+ "number": 61,
3160
+ "ionization energy": 5.58187,
3161
+ "electronegativity": {
3162
+ "pauling": null,
3163
+ "thermochemical": 2.24,
3164
+ "allen": null
3165
+ },
3166
+ "ground configuration": "[xe]4f6 6s2",
3167
+ "radius": {
3168
+ "van der waals": null,
3169
+ "calculated": 205,
3170
+ "crystal": 185
3171
+ },
3172
+ "stable": {},
3173
+ "molar mass": 0
3174
+ },
3175
+ "samarium": {
3176
+ "symbol": "sm",
3177
+ "number": 62,
3178
+ "ionization energy": 5.643722,
3179
+ "electronegativity": {
3180
+ "pauling": 1.17,
3181
+ "thermochemical": 1.9,
3182
+ "allen": null
3183
+ },
3184
+ "ground configuration": "[xe]4f6 6s2",
3185
+ "radius": {
3186
+ "van der waals": null,
3187
+ "calculated": 238,
3188
+ "crystal": 185
3189
+ },
3190
+ "stable": {
3191
+ "144": {
3192
+ "mass": 143.911996,
3193
+ "abundance": 0.0307
3194
+ },
3195
+ "147": {
3196
+ "mass": 146.914894,
3197
+ "abundance": 0.1499
3198
+ },
3199
+ "148": {
3200
+ "mass": 147.914818,
3201
+ "abundance": 0.1124
3202
+ },
3203
+ "149": {
3204
+ "mass": 148.91718,
3205
+ "abundance": 0.1382
3206
+ },
3207
+ "150": {
3208
+ "mass": 149.917272,
3209
+ "abundance": 0.0738
3210
+ },
3211
+ "152": {
3212
+ "mass": 151.919729,
3213
+ "abundance": 0.2675
3214
+ },
3215
+ "154": {
3216
+ "mass": 153.922206,
3217
+ "abundance": 0.2275
3218
+ }
3219
+ },
3220
+ "molar mass": 150.36634
3221
+ },
3222
+ "europium": {
3223
+ "symbol": "eu",
3224
+ "number": 63,
3225
+ "ionization energy": 5.670385,
3226
+ "electronegativity": {
3227
+ "pauling": null,
3228
+ "thermochemical": 1.81,
3229
+ "allen": null
3230
+ },
3231
+ "ground configuration": "[xe]4f7 6s2",
3232
+ "radius": {
3233
+ "van der waals": null,
3234
+ "calculated": 231,
3235
+ "crystal": 185
3236
+ },
3237
+ "stable": {
3238
+ "151": {
3239
+ "mass": 150.919846,
3240
+ "abundance": 0.4781
3241
+ },
3242
+ "153": {
3243
+ "mass": 152.921227,
3244
+ "abundance": 0.5219
3245
+ }
3246
+ },
3247
+ "molar mass": 151.96437
3248
+ },
3249
+ "gadolinium": {
3250
+ "symbol": "gd",
3251
+ "number": 64,
3252
+ "ionization energy": 6.1498,
3253
+ "electronegativity": {
3254
+ "pauling": 1.2,
3255
+ "thermochemical": 2.4,
3256
+ "allen": null
3257
+ },
3258
+ "ground configuration": "[xe]4f7 5d 6s2",
3259
+ "radius": {
3260
+ "van der waals": null,
3261
+ "calculated": 233,
3262
+ "crystal": 180
3263
+ },
3264
+ "stable": {
3265
+ "152": {
3266
+ "mass": 151.919789,
3267
+ "abundance": 0.002
3268
+ },
3269
+ "154": {
3270
+ "mass": 153.920862,
3271
+ "abundance": 0.0218
3272
+ },
3273
+ "155": {
3274
+ "mass": 154.922619,
3275
+ "abundance": 0.148
3276
+ },
3277
+ "156": {
3278
+ "mass": 155.92212,
3279
+ "abundance": 0.2047
3280
+ },
3281
+ "157": {
3282
+ "mass": 156.923957,
3283
+ "abundance": 0.1565
3284
+ },
3285
+ "158": {
3286
+ "mass": 157.924101,
3287
+ "abundance": 0.2484
3288
+ },
3289
+ "160": {
3290
+ "mass": 159.927051,
3291
+ "abundance": 0.2186
3292
+ }
3293
+ },
3294
+ "molar mass": 157.25212
3295
+ },
3296
+ "terbium": {
3297
+ "symbol": "tb",
3298
+ "number": 65,
3299
+ "ionization energy": 5.8638,
3300
+ "electronegativity": {
3301
+ "pauling": null,
3302
+ "thermochemical": 2.29,
3303
+ "allen": null
3304
+ },
3305
+ "ground configuration": "[xe]4f9 6s2",
3306
+ "radius": {
3307
+ "van der waals": null,
3308
+ "calculated": 225,
3309
+ "crystal": 175
3310
+ },
3311
+ "stable": {
3312
+ "159": {
3313
+ "mass": 158.925343,
3314
+ "abundance": 1.0
3315
+ }
3316
+ },
3317
+ "molar mass": 158.92534
3318
+ },
3319
+ "dysprosium": {
3320
+ "symbol": "dy",
3321
+ "number": 66,
3322
+ "ionization energy": 5.93905,
3323
+ "electronegativity": {
3324
+ "pauling": 1.22,
3325
+ "thermochemical": 2.07,
3326
+ "allen": null
3327
+ },
3328
+ "ground configuration": "[xe]4f10 6s2",
3329
+ "radius": {
3330
+ "van der waals": null,
3331
+ "calculated": 228,
3332
+ "crystal": 175
3333
+ },
3334
+ "stable": {
3335
+ "156": {
3336
+ "mass": 155.924278,
3337
+ "abundance": 0.00056
3338
+ },
3339
+ "158": {
3340
+ "mass": 157.924405,
3341
+ "abundance": 0.00095
3342
+ },
3343
+ "160": {
3344
+ "mass": 159.925194,
3345
+ "abundance": 0.02329
3346
+ },
3347
+ "161": {
3348
+ "mass": 160.92693,
3349
+ "abundance": 0.18889
3350
+ },
3351
+ "162": {
3352
+ "mass": 161.926795,
3353
+ "abundance": 0.25475
3354
+ },
3355
+ "163": {
3356
+ "mass": 162.928728,
3357
+ "abundance": 0.24896
3358
+ },
3359
+ "164": {
3360
+ "mass": 163.929171,
3361
+ "abundance": 0.2826
3362
+ }
3363
+ },
3364
+ "molar mass": 162.49946
3365
+ },
3366
+ "holmium": {
3367
+ "symbol": "ho",
3368
+ "number": 67,
3369
+ "ionization energy": 6.0215,
3370
+ "electronegativity": {
3371
+ "pauling": 1.23,
3372
+ "thermochemical": 2.12,
3373
+ "allen": null
3374
+ },
3375
+ "ground configuration": "[xe]4f11 6s2",
3376
+ "radius": {
3377
+ "van der waals": null,
3378
+ "calculated": 226,
3379
+ "crystal": 175
3380
+ },
3381
+ "stable": {
3382
+ "165": {
3383
+ "mass": 164.930319,
3384
+ "abundance": 1.0
3385
+ }
3386
+ },
3387
+ "molar mass": 164.93032
3388
+ },
3389
+ "erbium": {
3390
+ "symbol": "er",
3391
+ "number": 68,
3392
+ "ionization energy": 6.1077,
3393
+ "electronegativity": {
3394
+ "pauling": 1.24,
3395
+ "thermochemical": 2.02,
3396
+ "allen": null
3397
+ },
3398
+ "ground configuration": "[xe]4f12 6s2",
3399
+ "radius": {
3400
+ "van der waals": null,
3401
+ "calculated": 226,
3402
+ "crystal": 175
3403
+ },
3404
+ "stable": {
3405
+ "162": {
3406
+ "mass": 161.928775,
3407
+ "abundance": 0.00139
3408
+ },
3409
+ "164": {
3410
+ "mass": 163.929197,
3411
+ "abundance": 0.01601
3412
+ },
3413
+ "166": {
3414
+ "mass": 165.93029,
3415
+ "abundance": 0.33503
3416
+ },
3417
+ "167": {
3418
+ "mass": 166.932046,
3419
+ "abundance": 0.22869
3420
+ },
3421
+ "168": {
3422
+ "mass": 167.932368,
3423
+ "abundance": 0.26978
3424
+ },
3425
+ "170": {
3426
+ "mass": 169.932368,
3427
+ "abundance": 0.1491
3428
+ }
3429
+ },
3430
+ "molar mass": 167.25861
3431
+ },
3432
+ "thulium": {
3433
+ "symbol": "tm",
3434
+ "number": 69,
3435
+ "ionization energy": 6.18431,
3436
+ "electronegativity": {
3437
+ "pauling": 1.25,
3438
+ "thermochemical": 2.03,
3439
+ "allen": null
3440
+ },
3441
+ "ground configuration": "[xe]4f13 6s2",
3442
+ "radius": {
3443
+ "van der waals": null,
3444
+ "calculated": 222,
3445
+ "crystal": 175
3446
+ },
3447
+ "stable": {
3448
+ "169": {
3449
+ "mass": 168.934211,
3450
+ "abundance": 1.0
3451
+ }
3452
+ },
3453
+ "molar mass": 168.93421
3454
+ },
3455
+ "ytterbium": {
3456
+ "symbol": "yb",
3457
+ "number": 70,
3458
+ "ionization energy": 6.25416,
3459
+ "electronegativity": {
3460
+ "pauling": null,
3461
+ "thermochemical": 1.78,
3462
+ "allen": null
3463
+ },
3464
+ "ground configuration": "[xe]4f14 6s2",
3465
+ "radius": {
3466
+ "van der waals": null,
3467
+ "calculated": 222,
3468
+ "crystal": 175
3469
+ },
3470
+ "stable": {
3471
+ "168": {
3472
+ "mass": 167.933895,
3473
+ "abundance": 0.0013
3474
+ },
3475
+ "170": {
3476
+ "mass": 169.934759,
3477
+ "abundance": 0.0304
3478
+ },
3479
+ "171": {
3480
+ "mass": 170.936323,
3481
+ "abundance": 0.1428
3482
+ },
3483
+ "172": {
3484
+ "mass": 171.936378,
3485
+ "abundance": 0.2183
3486
+ },
3487
+ "173": {
3488
+ "mass": 172.938207,
3489
+ "abundance": 0.1613
3490
+ },
3491
+ "174": {
3492
+ "mass": 173.938858,
3493
+ "abundance": 0.3183
3494
+ },
3495
+ "176": {
3496
+ "mass": 175.942569,
3497
+ "abundance": 0.1276
3498
+ }
3499
+ },
3500
+ "molar mass": 173.03769
3501
+ },
3502
+ "lutetium": {
3503
+ "symbol": "lu",
3504
+ "number": 71,
3505
+ "ionization energy": 5.425871,
3506
+ "electronegativity": {
3507
+ "pauling": 1.27,
3508
+ "thermochemical": 2.68,
3509
+ "allen": 1.09
3510
+ },
3511
+ "ground configuration": "[xe]4f14 5d 6s2",
3512
+ "radius": {
3513
+ "van der waals": null,
3514
+ "calculated": 217,
3515
+ "crystal": 175
3516
+ },
3517
+ "stable": {
3518
+ "175": {
3519
+ "mass": 174.9407682,
3520
+ "abundance": 0.9741
3521
+ },
3522
+ "176": {
3523
+ "mass": 175.9426827,
3524
+ "abundance": 0.0259
3525
+ }
3526
+ },
3527
+ "molar mass": 174.96672
3528
+ },
3529
+ "hafnium": {
3530
+ "symbol": "hf",
3531
+ "number": 72,
3532
+ "ionization energy": 6.82507,
3533
+ "electronegativity": {
3534
+ "pauling": null,
3535
+ "thermochemical": 2.01,
3536
+ "allen": 1.16
3537
+ },
3538
+ "ground configuration": "[xe]4f14 5d2 6s2",
3539
+ "radius": {
3540
+ "van der waals": null,
3541
+ "calculated": 208,
3542
+ "crystal": 155
3543
+ },
3544
+ "stable": {
3545
+ "174": {
3546
+ "mass": 173.940042,
3547
+ "abundance": 0.0016
3548
+ },
3549
+ "176": {
3550
+ "mass": 175.941403,
3551
+ "abundance": 0.0526
3552
+ },
3553
+ "177": {
3554
+ "mass": 176.9432204,
3555
+ "abundance": 0.186
3556
+ },
3557
+ "178": {
3558
+ "mass": 177.9436981,
3559
+ "abundance": 0.2728
3560
+ },
3561
+ "179": {
3562
+ "mass": 178.9458154,
3563
+ "abundance": 0.1362
3564
+ },
3565
+ "180": {
3566
+ "mass": 179.9465488,
3567
+ "abundance": 0.3508
3568
+ }
3569
+ },
3570
+ "molar mass": 178.48497
3571
+ },
3572
+ "tantalum": {
3573
+ "symbol": "ta",
3574
+ "number": 73,
3575
+ "ionization energy": 7.549571,
3576
+ "electronegativity": {
3577
+ "pauling": null,
3578
+ "thermochemical": 2.32,
3579
+ "allen": 1.34
3580
+ },
3581
+ "ground configuration": "[xe]4f14 5d3 6s2",
3582
+ "radius": {
3583
+ "van der waals": null,
3584
+ "calculated": 200,
3585
+ "crystal": 145
3586
+ },
3587
+ "stable": {
3588
+ "180": {
3589
+ "mass": 179.947466,
3590
+ "abundance": 0.00012
3591
+ },
3592
+ "181": {
3593
+ "mass": 180.947996,
3594
+ "abundance": 0.99988
3595
+ }
3596
+ },
3597
+ "molar mass": 180.94788
3598
+ },
3599
+ "tungsten": {
3600
+ "symbol": "w",
3601
+ "number": 74,
3602
+ "ionization energy": 7.86403,
3603
+ "electronegativity": {
3604
+ "pauling": 2.36,
3605
+ "thermochemical": 2.42,
3606
+ "allen": 1.47
3607
+ },
3608
+ "ground configuration": "[xe]4f14 5d4 6s2",
3609
+ "radius": {
3610
+ "van der waals": null,
3611
+ "calculated": 193,
3612
+ "crystal": 135
3613
+ },
3614
+ "stable": {
3615
+ "180": {
3616
+ "mass": 179.946706,
3617
+ "abundance": 0.0012
3618
+ },
3619
+ "182": {
3620
+ "mass": 181.948205,
3621
+ "abundance": 0.265
3622
+ },
3623
+ "183": {
3624
+ "mass": 182.9502242,
3625
+ "abundance": 0.1431
3626
+ },
3627
+ "184": {
3628
+ "mass": 183.9509323,
3629
+ "abundance": 0.3064
3630
+ },
3631
+ "186": {
3632
+ "mass": 185.954362,
3633
+ "abundance": 0.2843
3634
+ }
3635
+ },
3636
+ "molar mass": 183.84178
3637
+ },
3638
+ "rhenium": {
3639
+ "symbol": "re",
3640
+ "number": 75,
3641
+ "ionization energy": 7.83352,
3642
+ "electronegativity": {
3643
+ "pauling": null,
3644
+ "thermochemical": 2.59,
3645
+ "allen": 1.6
3646
+ },
3647
+ "ground configuration": "[xe]4f14 5d5 6s2",
3648
+ "radius": {
3649
+ "van der waals": null,
3650
+ "calculated": 188,
3651
+ "crystal": 135
3652
+ },
3653
+ "stable": {
3654
+ "185": {
3655
+ "mass": 184.952955,
3656
+ "abundance": 0.374
3657
+ },
3658
+ "187": {
3659
+ "mass": 186.9557505,
3660
+ "abundance": 0.626
3661
+ }
3662
+ },
3663
+ "molar mass": 186.2067
3664
+ },
3665
+ "osmium": {
3666
+ "symbol": "os",
3667
+ "number": 76,
3668
+ "ionization energy": 8.43823,
3669
+ "electronegativity": {
3670
+ "pauling": null,
3671
+ "thermochemical": 2.72,
3672
+ "allen": 1.65
3673
+ },
3674
+ "ground configuration": "[xe]4f14 5d6 6s2",
3675
+ "radius": {
3676
+ "van der waals": null,
3677
+ "calculated": 185,
3678
+ "crystal": 130
3679
+ },
3680
+ "stable": {
3681
+ "184": {
3682
+ "mass": 183.952491,
3683
+ "abundance": 0.0002
3684
+ },
3685
+ "186": {
3686
+ "mass": 185.953838,
3687
+ "abundance": 0.0159
3688
+ },
3689
+ "187": {
3690
+ "mass": 186.9557476,
3691
+ "abundance": 0.0196
3692
+ },
3693
+ "188": {
3694
+ "mass": 187.9558357,
3695
+ "abundance": 0.1324
3696
+ },
3697
+ "189": {
3698
+ "mass": 188.958145,
3699
+ "abundance": 0.1615
3700
+ },
3701
+ "190": {
3702
+ "mass": 189.958445,
3703
+ "abundance": 0.2626
3704
+ },
3705
+ "192": {
3706
+ "mass": 191.961479,
3707
+ "abundance": 0.4078
3708
+ }
3709
+ },
3710
+ "molar mass": 190.22486
3711
+ },
3712
+ "iridium": {
3713
+ "symbol": "ir",
3714
+ "number": 77,
3715
+ "ionization energy": 8.96702,
3716
+ "electronegativity": {
3717
+ "pauling": 2.2,
3718
+ "thermochemical": 2.79,
3719
+ "allen": 1.68
3720
+ },
3721
+ "ground configuration": "[xe]4f14 5d7 6s2",
3722
+ "radius": {
3723
+ "van der waals": null,
3724
+ "calculated": 180,
3725
+ "crystal": 135
3726
+ },
3727
+ "stable": {
3728
+ "191": {
3729
+ "mass": 190.960591,
3730
+ "abundance": 0.373
3731
+ },
3732
+ "193": {
3733
+ "mass": 192.962923,
3734
+ "abundance": 0.627
3735
+ }
3736
+ },
3737
+ "molar mass": 192.21605
3738
+ },
3739
+ "platinum": {
3740
+ "symbol": "pt",
3741
+ "number": 78,
3742
+ "ionization energy": 8.95883,
3743
+ "electronegativity": {
3744
+ "pauling": 2.28,
3745
+ "thermochemical": 2.98,
3746
+ "allen": 1.72
3747
+ },
3748
+ "ground configuration": "[xe]4f14 5d9 6s",
3749
+ "radius": {
3750
+ "van der waals": null,
3751
+ "calculated": 177,
3752
+ "crystal": 135
3753
+ },
3754
+ "stable": {
3755
+ "190": {
3756
+ "mass": 189.95993,
3757
+ "abundance": 0.00014
3758
+ },
3759
+ "192": {
3760
+ "mass": 191.961035,
3761
+ "abundance": 0.00782
3762
+ },
3763
+ "194": {
3764
+ "mass": 193.962663,
3765
+ "abundance": 0.32967
3766
+ },
3767
+ "195": {
3768
+ "mass": 194.964774,
3769
+ "abundance": 0.33832
3770
+ },
3771
+ "196": {
3772
+ "mass": 195.964934,
3773
+ "abundance": 0.25242
3774
+ },
3775
+ "198": {
3776
+ "mass": 197.967875,
3777
+ "abundance": 0.07163
3778
+ }
3779
+ },
3780
+ "molar mass": 195.07779
3781
+ },
3782
+ "gold": {
3783
+ "symbol": "au",
3784
+ "number": 79,
3785
+ "ionization energy": 9.225554,
3786
+ "electronegativity": {
3787
+ "pauling": 2.54,
3788
+ "thermochemical": 2.81,
3789
+ "allen": 1.92
3790
+ },
3791
+ "ground configuration": "[xe]4f14 5d10 6s",
3792
+ "radius": {
3793
+ "van der waals": null,
3794
+ "calculated": 174,
3795
+ "crystal": 135
3796
+ },
3797
+ "stable": {
3798
+ "197": {
3799
+ "mass": 196.966551,
3800
+ "abundance": 1.0
3801
+ }
3802
+ },
3803
+ "molar mass": 196.96655
3804
+ },
3805
+ "mercury": {
3806
+ "symbol": "hg",
3807
+ "number": 80,
3808
+ "ionization energy": 10.437504,
3809
+ "electronegativity": {
3810
+ "pauling": 2.0,
3811
+ "thermochemical": 2.92,
3812
+ "allen": 1.76
3813
+ },
3814
+ "ground configuration": "[xe]4f14 5d10 6s2",
3815
+ "radius": {
3816
+ "van der waals": null,
3817
+ "calculated": 171,
3818
+ "crystal": null
3819
+ },
3820
+ "stable": {
3821
+ "196": {
3822
+ "mass": 195.965814,
3823
+ "abundance": 0.0015
3824
+ },
3825
+ "198": {
3826
+ "mass": 197.966752,
3827
+ "abundance": 0.0997
3828
+ },
3829
+ "199": {
3830
+ "mass": 198.968262,
3831
+ "abundance": 0.1687
3832
+ },
3833
+ "200": {
3834
+ "mass": 199.968309,
3835
+ "abundance": 0.231
3836
+ },
3837
+ "201": {
3838
+ "mass": 200.970285,
3839
+ "abundance": 0.1318
3840
+ },
3841
+ "202": {
3842
+ "mass": 201.970625,
3843
+ "abundance": 0.2986
3844
+ },
3845
+ "204": {
3846
+ "mass": 203.973475,
3847
+ "abundance": 0.0687
3848
+ }
3849
+ },
3850
+ "molar mass": 200.59915
3851
+ },
3852
+ "thallium": {
3853
+ "symbol": "tl",
3854
+ "number": 81,
3855
+ "ionization energy": 6.1082873,
3856
+ "electronegativity": {
3857
+ "pauling": 2.04,
3858
+ "thermochemical": 2.26,
3859
+ "allen": null
3860
+ },
3861
+ "ground configuration": "[hg]6p",
3862
+ "radius": {
3863
+ "van der waals": 196,
3864
+ "calculated": 156,
3865
+ "crystal": 190
3866
+ },
3867
+ "stable": {
3868
+ "203": {
3869
+ "mass": 202.972329,
3870
+ "abundance": 0.2952
3871
+ },
3872
+ "205": {
3873
+ "mass": 204.974412,
3874
+ "abundance": 0.7048
3875
+ }
3876
+ },
3877
+ "molar mass": 204.3834
3878
+ },
3879
+ "lead": {
3880
+ "symbol": "pb",
3881
+ "number": 82,
3882
+ "ionization energy": 7.4166799,
3883
+ "electronegativity": {
3884
+ "pauling": 2.33,
3885
+ "thermochemical": 2.62,
3886
+ "allen": null
3887
+ },
3888
+ "ground configuration": "[hg]6p2",
3889
+ "radius": {
3890
+ "van der waals": 202,
3891
+ "calculated": 154,
3892
+ "crystal": null
3893
+ },
3894
+ "stable": {
3895
+ "204": {
3896
+ "mass": 203.973028,
3897
+ "abundance": 0.014
3898
+ },
3899
+ "206": {
3900
+ "mass": 205.974449,
3901
+ "abundance": 0.241
3902
+ },
3903
+ "207": {
3904
+ "mass": 206.97588,
3905
+ "abundance": 0.221
3906
+ },
3907
+ "208": {
3908
+ "mass": 207.976636,
3909
+ "abundance": 0.524
3910
+ }
3911
+ },
3912
+ "molar mass": 207.21689
3913
+ },
3914
+ "bismuth": {
3915
+ "symbol": "bi",
3916
+ "number": 83,
3917
+ "ionization energy": 7.285516,
3918
+ "electronegativity": {
3919
+ "pauling": 2.02,
3920
+ "thermochemical": 2.69,
3921
+ "allen": null
3922
+ },
3923
+ "ground configuration": "[hg]6p3 ",
3924
+ "radius": {
3925
+ "van der waals": 207,
3926
+ "calculated": 143,
3927
+ "crystal": 160
3928
+ },
3929
+ "stable": {
3930
+ "209": {
3931
+ "mass": 208.980384,
3932
+ "abundance": 1.0
3933
+ }
3934
+ },
3935
+ "molar mass": 208.98038
3936
+ },
3937
+ "polonium": {
3938
+ "symbol": "po",
3939
+ "number": 84,
3940
+ "ionization energy": 8.41807,
3941
+ "electronegativity": {
3942
+ "pauling": null,
3943
+ "thermochemical": 2.85,
3944
+ "allen": null
3945
+ },
3946
+ "ground configuration": "[hg]6p4 ",
3947
+ "radius": {
3948
+ "van der waals": 197,
3949
+ "calculated": 135,
3950
+ "crystal": 190
3951
+ },
3952
+ "stable": {},
3953
+ "molar mass": 0
3954
+ },
3955
+ "astatine": {
3956
+ "symbol": "at",
3957
+ "number": 85,
3958
+ "ionization energy": 9.31751,
3959
+ "electronegativity": {
3960
+ "pauling": null,
3961
+ "thermochemical": 3.04,
3962
+ "allen": null
3963
+ },
3964
+ "ground configuration": "[hg]6p5",
3965
+ "radius": {
3966
+ "van der waals": 202,
3967
+ "calculated": 127,
3968
+ "crystal": null
3969
+ },
3970
+ "stable": {},
3971
+ "molar mass": 0
3972
+ },
3973
+ "radon": {
3974
+ "symbol": "rn",
3975
+ "number": 86,
3976
+ "ionization energy": 10.7485,
3977
+ "electronegativity": {
3978
+ "pauling": null,
3979
+ "thermochemical": 3.04,
3980
+ "allen": null
3981
+ },
3982
+ "ground configuration": "[hg]6p6 ",
3983
+ "radius": {
3984
+ "van der waals": 220,
3985
+ "calculated": 120,
3986
+ "crystal": null
3987
+ },
3988
+ "stable": {},
3989
+ "molar mass": 0
3990
+ },
3991
+ "francium": {
3992
+ "symbol": "fr",
3993
+ "number": 87,
3994
+ "ionization energy": 4.0727411,
3995
+ "electronegativity": {
3996
+ "pauling": null,
3997
+ "thermochemical": 2.01,
3998
+ "allen": null
3999
+ },
4000
+ "ground configuration": "[rn]7s",
4001
+ "radius": {
4002
+ "van der waals": 348,
4003
+ "calculated": null,
4004
+ "crystal": null
4005
+ },
4006
+ "stable": {},
4007
+ "molar mass": 0
4008
+ },
4009
+ "radium": {
4010
+ "symbol": "ra",
4011
+ "number": 88,
4012
+ "ionization energy": 5.2784239,
4013
+ "electronegativity": {
4014
+ "pauling": null,
4015
+ "thermochemical": 2.15,
4016
+ "allen": null
4017
+ },
4018
+ "ground configuration": "[rn]7s2 ",
4019
+ "radius": {
4020
+ "van der waals": 283,
4021
+ "calculated": null,
4022
+ "crystal": 215
4023
+ },
4024
+ "stable": {},
4025
+ "molar mass": 0
4026
+ },
4027
+ "actinium": {
4028
+ "symbol": "ac",
4029
+ "number": 89,
4030
+ "ionization energy": 5.380226,
4031
+ "electronegativity": {
4032
+ "pauling": null,
4033
+ "thermochemical": 2.22,
4034
+ "allen": null
4035
+ },
4036
+ "ground configuration": "[rn]6d 7s2",
4037
+ "radius": {
4038
+ "van der waals": null,
4039
+ "calculated": null,
4040
+ "crystal": 195
4041
+ },
4042
+ "stable": {},
4043
+ "molar mass": 0
4044
+ },
4045
+ "thorium": {
4046
+ "symbol": "th",
4047
+ "number": 90,
4048
+ "ionization energy": 6.3067,
4049
+ "electronegativity": {
4050
+ "pauling": null,
4051
+ "thermochemical": 2.62,
4052
+ "allen": null
4053
+ },
4054
+ "ground configuration": "[rn]6d2 7s2",
4055
+ "radius": {
4056
+ "van der waals": null,
4057
+ "calculated": null,
4058
+ "crystal": 180
4059
+ },
4060
+ "stable": {
4061
+ "232": {
4062
+ "mass": 232.0380495,
4063
+ "abundance": 1.0
4064
+ }
4065
+ },
4066
+ "molar mass": 232.03805
4067
+ },
4068
+ "protactinium": {
4069
+ "symbol": "pa",
4070
+ "number": 91,
4071
+ "ionization energy": 5.89,
4072
+ "electronegativity": {
4073
+ "pauling": null,
4074
+ "thermochemical": 2.33,
4075
+ "allen": null
4076
+ },
4077
+ "ground configuration": "[rn]5f2 6d 7s2",
4078
+ "radius": {
4079
+ "van der waals": null,
4080
+ "calculated": null,
4081
+ "crystal": 180
4082
+ },
4083
+ "stable": {
4084
+ "231": {
4085
+ "mass": 231.03588,
4086
+ "abundance": 1.0
4087
+ }
4088
+ },
4089
+ "molar mass": 231.03588
4090
+ },
4091
+ "uranium": {
4092
+ "symbol": "u",
4093
+ "number": 92,
4094
+ "ionization energy": 6.19405,
4095
+ "electronegativity": {
4096
+ "pauling": 1.38,
4097
+ "thermochemical": 2.45,
4098
+ "allen": null
4099
+ },
4100
+ "ground configuration": "[rn]5f3 6d 7s2",
4101
+ "radius": {
4102
+ "van der waals": null,
4103
+ "calculated": null,
4104
+ "crystal": 175
4105
+ },
4106
+ "stable": {
4107
+ "234": {
4108
+ "mass": 234.0409447,
4109
+ "abundance": 5.4e-05
4110
+ },
4111
+ "235": {
4112
+ "mass": 235.0439222,
4113
+ "abundance": 0.007204
4114
+ },
4115
+ "238": {
4116
+ "mass": 238.0507835,
4117
+ "abundance": 0.992742
4118
+ }
4119
+ },
4120
+ "molar mass": 238.02891
4121
+ },
4122
+ "neptunium": {
4123
+ "symbol": "np",
4124
+ "number": 93,
4125
+ "ionization energy": 6.26554,
4126
+ "electronegativity": {
4127
+ "pauling": 1.36,
4128
+ "thermochemical": 2.35,
4129
+ "allen": null
4130
+ },
4131
+ "ground configuration": "[rn]5f4 6d 7s2",
4132
+ "radius": {
4133
+ "van der waals": null,
4134
+ "calculated": null,
4135
+ "crystal": 175
4136
+ },
4137
+ "stable": {},
4138
+ "molar mass": 0
4139
+ },
4140
+ "plutonium": {
4141
+ "symbol": "pu",
4142
+ "number": 94,
4143
+ "ionization energy": 6.02576,
4144
+ "electronegativity": {
4145
+ "pauling": 1.28,
4146
+ "thermochemical": 2.22,
4147
+ "allen": null
4148
+ },
4149
+ "ground configuration": "[rn]5f6 7s2",
4150
+ "radius": {
4151
+ "van der waals": null,
4152
+ "calculated": null,
4153
+ "crystal": 175
4154
+ },
4155
+ "stable": {},
4156
+ "molar mass": 0
4157
+ },
4158
+ "americium": {
4159
+ "symbol": "am",
4160
+ "number": 95,
4161
+ "ionization energy": 5.97381,
4162
+ "electronegativity": {
4163
+ "pauling": null,
4164
+ "thermochemical": 2.28,
4165
+ "allen": null
4166
+ },
4167
+ "ground configuration": "[rn]5f7 7s2",
4168
+ "radius": {
4169
+ "van der waals": null,
4170
+ "calculated": null,
4171
+ "crystal": 175
4172
+ },
4173
+ "stable": {},
4174
+ "molar mass": 0
4175
+ },
4176
+ "curium": {
4177
+ "symbol": "cm",
4178
+ "number": 96,
4179
+ "ionization energy": 5.99141,
4180
+ "electronegativity": {
4181
+ "pauling": null,
4182
+ "thermochemical": 2.31,
4183
+ "allen": null
4184
+ },
4185
+ "ground configuration": "[rn]5f7 6d 7s2",
4186
+ "radius": {
4187
+ "van der waals": null,
4188
+ "calculated": null,
4189
+ "crystal": null
4190
+ },
4191
+ "stable": {},
4192
+ "molar mass": 0
4193
+ },
4194
+ "berkelium": {
4195
+ "symbol": "bk",
4196
+ "number": 97,
4197
+ "ionization energy": 6.19785,
4198
+ "electronegativity": {
4199
+ "pauling": null,
4200
+ "thermochemical": 2.08,
4201
+ "allen": null
4202
+ },
4203
+ "ground configuration": "[rn]5f9 7s2",
4204
+ "radius": {
4205
+ "van der waals": null,
4206
+ "calculated": null,
4207
+ "crystal": null
4208
+ },
4209
+ "stable": {},
4210
+ "molar mass": 0
4211
+ },
4212
+ "californium": {
4213
+ "symbol": "cf",
4214
+ "number": 98,
4215
+ "ionization energy": 6.28166,
4216
+ "electronegativity": {
4217
+ "pauling": null,
4218
+ "thermochemical": 2.18,
4219
+ "allen": null
4220
+ },
4221
+ "ground configuration": "[rn]5f10 7s2",
4222
+ "radius": {
4223
+ "van der waals": null,
4224
+ "calculated": null,
4225
+ "crystal": null
4226
+ },
4227
+ "stable": {},
4228
+ "molar mass": 0
4229
+ },
4230
+ "einsteinium": {
4231
+ "symbol": "es",
4232
+ "number": 99,
4233
+ "ionization energy": 6.36758,
4234
+ "electronegativity": {
4235
+ "pauling": null,
4236
+ "thermochemical": 2.29,
4237
+ "allen": null
4238
+ },
4239
+ "ground configuration": "[rn]5f11 7s2",
4240
+ "radius": {
4241
+ "van der waals": null,
4242
+ "calculated": null,
4243
+ "crystal": null
4244
+ },
4245
+ "stable": {},
4246
+ "molar mass": 0
4247
+ },
4248
+ "fermium": {
4249
+ "symbol": "fm",
4250
+ "number": 100,
4251
+ "ionization energy": 6.5,
4252
+ "electronegativity": {
4253
+ "pauling": null,
4254
+ "thermochemical": 2.38,
4255
+ "allen": null
4256
+ },
4257
+ "ground configuration": "[rn]5f12 7s2",
4258
+ "radius": {
4259
+ "van der waals": null,
4260
+ "calculated": null,
4261
+ "crystal": null
4262
+ },
4263
+ "stable": {},
4264
+ "molar mass": 0
4265
+ },
4266
+ "mendelevium": {
4267
+ "symbol": "md",
4268
+ "number": 101,
4269
+ "ionization energy": 6.58,
4270
+ "electronegativity": {
4271
+ "pauling": null,
4272
+ "thermochemical": 2.47,
4273
+ "allen": null
4274
+ },
4275
+ "ground configuration": "rn]5f13 7s2",
4276
+ "radius": {
4277
+ "van der waals": null,
4278
+ "calculated": null,
4279
+ "crystal": null
4280
+ },
4281
+ "stable": {},
4282
+ "molar mass": 0
4283
+ },
4284
+ "nobelium": {
4285
+ "symbol": "no",
4286
+ "number": 102,
4287
+ "ionization energy": 6.62621,
4288
+ "electronegativity": {
4289
+ "pauling": null,
4290
+ "thermochemical": 2.06,
4291
+ "allen": null
4292
+ },
4293
+ "ground configuration": "[rn]5f14 7s2 ",
4294
+ "radius": {
4295
+ "van der waals": null,
4296
+ "calculated": null,
4297
+ "crystal": null
4298
+ },
4299
+ "stable": {},
4300
+ "molar mass": 0
4301
+ },
4302
+ "lawrencium": {
4303
+ "symbol": "lr",
4304
+ "number": 103,
4305
+ "ionization energy": 4.96,
4306
+ "electronegativity": {
4307
+ "pauling": null,
4308
+ "thermochemical": 2.1,
4309
+ "allen": null
4310
+ },
4311
+ "ground configuration": "[rn]5f14 7s2 7p",
4312
+ "radius": {
4313
+ "van der waals": null,
4314
+ "calculated": null,
4315
+ "crystal": null
4316
+ },
4317
+ "stable": {},
4318
+ "molar mass": 0
4319
+ },
4320
+ "rutherfordium": {
4321
+ "symbol": "rf",
4322
+ "number": 104,
4323
+ "ionization energy": 6.02,
4324
+ "electronegativity": {
4325
+ "pauling": null,
4326
+ "thermochemical": 2.27,
4327
+ "allen": null
4328
+ },
4329
+ "ground configuration": "[rn]5f14 6d2 7s2",
4330
+ "radius": {
4331
+ "van der waals": null,
4332
+ "calculated": null,
4333
+ "crystal": null
4334
+ },
4335
+ "stable": {},
4336
+ "molar mass": 0
4337
+ },
4338
+ "dubnium": {
4339
+ "symbol": "db",
4340
+ "number": 105,
4341
+ "ionization energy": 6.8,
4342
+ "electronegativity": {
4343
+ "pauling": null,
4344
+ "thermochemical": 2.38,
4345
+ "allen": null
4346
+ },
4347
+ "ground configuration": "[rn]5f14 6d3 7s2",
4348
+ "radius": {
4349
+ "van der waals": null,
4350
+ "calculated": null,
4351
+ "crystal": null
4352
+ },
4353
+ "stable": {},
4354
+ "molar mass": 0
4355
+ },
4356
+ "seaborgium": {
4357
+ "symbol": "sg",
4358
+ "number": 106,
4359
+ "ionization energy": 7.8,
4360
+ "electronegativity": {
4361
+ "pauling": null,
4362
+ "thermochemical": 2.51,
4363
+ "allen": null
4364
+ },
4365
+ "ground configuration": "[rn] 5f14 6d4 7s2",
4366
+ "radius": {
4367
+ "van der waals": null,
4368
+ "calculated": null,
4369
+ "crystal": null
4370
+ },
4371
+ "stable": {},
4372
+ "molar mass": 0
4373
+ },
4374
+ "bohrium": {
4375
+ "symbol": "bh",
4376
+ "number": 107,
4377
+ "ionization energy": 7.7,
4378
+ "electronegativity": {
4379
+ "pauling": null,
4380
+ "thermochemical": 2.48,
4381
+ "allen": null
4382
+ },
4383
+ "ground configuration": "[rn]5f14 6d5 7s2",
4384
+ "radius": {
4385
+ "van der waals": null,
4386
+ "calculated": null,
4387
+ "crystal": null
4388
+ },
4389
+ "stable": {},
4390
+ "molar mass": 0
4391
+ },
4392
+ "hassium": {
4393
+ "symbol": "hs",
4394
+ "number": 108,
4395
+ "ionization energy": 7.6,
4396
+ "electronegativity": {
4397
+ "pauling": null,
4398
+ "thermochemical": 2.52,
4399
+ "allen": null
4400
+ },
4401
+ "ground configuration": "[rn]5f14 6d6 7s2",
4402
+ "radius": {
4403
+ "van der waals": null,
4404
+ "calculated": null,
4405
+ "crystal": null
4406
+ },
4407
+ "stable": {},
4408
+ "molar mass": 0
4409
+ },
4410
+ "meitnerium": {
4411
+ "symbol": "mt",
4412
+ "number": 109,
4413
+ "ionization energy": null,
4414
+ "electronegativity": {
4415
+ "pauling": null,
4416
+ "thermochemical": 2.66,
4417
+ "allen": null
4418
+ },
4419
+ "ground configuration": null,
4420
+ "radius": {
4421
+ "van der waals": null,
4422
+ "calculated": null,
4423
+ "crystal": null
4424
+ },
4425
+ "stable": {},
4426
+ "molar mass": 0
4427
+ },
4428
+ "darmstadtium": {
4429
+ "symbol": "ds",
4430
+ "number": 110,
4431
+ "ionization energy": null,
4432
+ "electronegativity": {
4433
+ "pauling": null,
4434
+ "thermochemical": 2.73,
4435
+ "allen": null
4436
+ },
4437
+ "ground configuration": null,
4438
+ "radius": {
4439
+ "van der waals": null,
4440
+ "calculated": null,
4441
+ "crystal": null
4442
+ },
4443
+ "stable": {},
4444
+ "molar mass": 0
4445
+ },
4446
+ "roentgenium": {
4447
+ "symbol": "rg",
4448
+ "number": 111,
4449
+ "ionization energy": null,
4450
+ "electronegativity": {
4451
+ "pauling": null,
4452
+ "thermochemical": 2.83,
4453
+ "allen": null
4454
+ },
4455
+ "ground configuration": null,
4456
+ "radius": {
4457
+ "van der waals": null,
4458
+ "calculated": null,
4459
+ "crystal": null
4460
+ },
4461
+ "stable": {},
4462
+ "molar mass": 0
4463
+ },
4464
+ "copernicium": {
4465
+ "symbol": "cn",
4466
+ "number": 112,
4467
+ "ionization energy": null,
4468
+ "electronegativity": {
4469
+ "pauling": null,
4470
+ "thermochemical": 3.03,
4471
+ "allen": null
4472
+ },
4473
+ "ground configuration": null,
4474
+ "radius": {
4475
+ "van der waals": null,
4476
+ "calculated": null,
4477
+ "crystal": null
4478
+ },
4479
+ "stable": {},
4480
+ "molar mass": 0
4481
+ },
4482
+ "nihonium": {
4483
+ "symbol": "nh",
4484
+ "number": 113,
4485
+ "ionization energy": null,
4486
+ "electronegativity": {
4487
+ "pauling": null,
4488
+ "thermochemical": 2.49,
4489
+ "allen": null
4490
+ },
4491
+ "ground configuration": null,
4492
+ "radius": {
4493
+ "van der waals": null,
4494
+ "calculated": null,
4495
+ "crystal": null
4496
+ },
4497
+ "stable": {},
4498
+ "molar mass": 0
4499
+ },
4500
+ "flerovium": {
4501
+ "symbol": "fl",
4502
+ "number": 114,
4503
+ "ionization energy": null,
4504
+ "electronegativity": {
4505
+ "pauling": null,
4506
+ "thermochemical": 2.57,
4507
+ "allen": null
4508
+ },
4509
+ "ground configuration": null,
4510
+ "radius": {
4511
+ "van der waals": null,
4512
+ "calculated": null,
4513
+ "crystal": null
4514
+ },
4515
+ "stable": {},
4516
+ "molar mass": 0
4517
+ },
4518
+ "moscovium": {
4519
+ "symbol": "mc",
4520
+ "number": 115,
4521
+ "ionization energy": null,
4522
+ "electronegativity": {
4523
+ "pauling": null,
4524
+ "thermochemical": 2.21,
4525
+ "allen": null
4526
+ },
4527
+ "ground configuration": null,
4528
+ "radius": {
4529
+ "van der waals": null,
4530
+ "calculated": null,
4531
+ "crystal": null
4532
+ },
4533
+ "stable": {},
4534
+ "molar mass": 0
4535
+ },
4536
+ "livermorium": {
4537
+ "symbol": "lv",
4538
+ "number": 116,
4539
+ "ionization energy": null,
4540
+ "electronegativity": {
4541
+ "pauling": null,
4542
+ "thermochemical": 2.42,
4543
+ "allen": null
4544
+ },
4545
+ "ground configuration": null,
4546
+ "radius": {
4547
+ "van der waals": null,
4548
+ "calculated": null,
4549
+ "crystal": null
4550
+ },
4551
+ "stable": {},
4552
+ "molar mass": 0
4553
+ },
4554
+ "tennessine": {
4555
+ "symbol": "ts",
4556
+ "number": 117,
4557
+ "ionization energy": null,
4558
+ "electronegativity": {
4559
+ "pauling": null,
4560
+ "thermochemical": 2.61,
4561
+ "allen": null
4562
+ },
4563
+ "ground configuration": null,
4564
+ "radius": {
4565
+ "van der waals": null,
4566
+ "calculated": null,
4567
+ "crystal": null
4568
+ },
4569
+ "stable": {},
4570
+ "molar mass": 0
4571
+ },
4572
+ "oganesson": {
4573
+ "symbol": "og",
4574
+ "number": 118,
4575
+ "ionization energy": null,
4576
+ "electronegativity": {
4577
+ "pauling": null,
4578
+ "thermochemical": 2.59,
4579
+ "allen": null
4580
+ },
4581
+ "ground configuration": null,
4582
+ "radius": {
4583
+ "van der waals": null,
4584
+ "calculated": null,
4585
+ "crystal": null
4586
+ },
4587
+ "stable": {},
4588
+ "molar mass": 0
4589
+ }
4590
+ },
4591
+ "Sources": {
4592
+ "Atom Molar Masses": "STANDARD ATOMIC WEIGHTS, ciaaw 2020. Available online at www.ciaaw.org/atomic-masses.htm",
4593
+ "Isotopic Abundances": "CIAAW. Isotopic compositions of the elements 2019. Available online at www.ciaaw.org.",
4594
+ "Model Peptide SASAs or ASAs": "Uttamkumar Samanta, Ranjit P. Bahadur, Pinak Chakrabarti, Quantifying the accessible surface area of protein residues in their local environment, Protein Engineering, Design and Selection, Volume 15, Issue 8, August 2002, Pages 659-667, https://doi.org/10.1093/protein/15.8.659",
4595
+ "Atom Ionization Energies and Atom Ground State": "Kramida, A., Ralchenko, Yu., Reader, J., and NIST ASD Team (2021). NIST Atomic Spectra Database (ver. 5.9), [Online]. Available: https://physics.nist.gov/asd [2022, June 28]. National Institute of Standards and Technology, Gaithersburg, MD. DOI: https://doi.org/10.18434/T4W30F",
4596
+ "Pauling Electronegativity": "A.L. Allred, Electronegativity values from thermochemical data, Journal of Inorganic and Nuclear Chemistry, Volume 17, Issues 3-4, 1961, Pages 215-221, ISSN 0022-1902, https://doi.org/10.1016/0022-1902(61)80142-5. (https://www.sciencedirect.com/science/article/pii/0022190261801425)",
4597
+ "Thermochemical Electronegativity": "Tantardini, C., Oganov, A.R. Thermochemical electronegativities of the elements. Nat Commun 12, 2087 (2021). https://doi.org/10.1038/s41467-021-22429-0",
4598
+ "Allen Electronegativity (alkali metals, non-metals)": "Electronegativity is the average one-electron energy of the valence-shell electrons in ground-state free atoms, Leland C. Allen, Journal of the American Chemical Society 1989 111 (25), 9003-9014, DOI: 10.1021/ja00207a003",
4599
+ "Allen Electronegativity (metals)": "Configuration Energies of the d-Block Elements, Joseph B. Mann, Terry L. Meek, Eugene T. Knight, Joseph F. Capitani, and Leland C. Allen, Journal of the American Chemical Society 2000 122 (21), 5132-5137, DOI: 10.1021/ja9928677",
4600
+ "Van der Waals Radius": "Consistent van der Waals Radii for the Whole Main Group, Manjeera Mantina, Adam C. Chamberlin, Rosendo Valero, Christopher J. Cramer, and Donald G. Truhlar, The Journal of Physical Chemistry A 2009 113 (19), 5806-5812, DOI: 10.1021/jp8111556",
4601
+ "Calculated Radius": "Clementi, E., et al. Atomic Screening Constants from SCF Functions. II. Atoms with 37 to 86 Electrons. The Journal of Chemical Physics, vol. 47, no. 4, 10 Apr. 1967, pp. 1300-1307., https://doi.org/10.1063/1.1712084.",
4602
+ "Crystal Radius": "Slater, J. C. Atomic Radii in Crystals. The Journal of Chemical Physics, vol. 41, no. 10, 20 July 1964, pp. 3199-3204., https://doi.org/10.1063/1.1725697. "
4603
+ },
4604
+ "Special Thanks and Acknowledgment": [
4605
+ "This could not have been put together without the following individuals, 200ish man hours of manual data input, several hundred dollars of pizza, and collective rage against PDFs that don't support highlighting text. Thank you all for being the best <3",
4606
+ "Bechthold, H. C.",
4607
+ "Farwell, Taylor Cameron",
4608
+ "Holliday, Noah",
4609
+ "Howald, Curtis M.",
4610
+ "Jenkins, Chloe E.",
4611
+ "Loosli, Sarah",
4612
+ "Rivers, Ava D.",
4613
+ "Smith, Savannah R.",
4614
+ "Draney, Joshua",
4615
+ "Dunn, Kemery",
4616
+ "Dunn, Emma",
4617
+ "Mikami, Kyler M.",
4618
+ "Giraldez Chavez, Jose Humberto",
4619
+ "Hammarstrom, McKay",
4620
+ "Hine, Kutter R."
4621
+ ]
4622
+ }