-
Notifications
You must be signed in to change notification settings - Fork 0
/
Table.json
4959 lines (4959 loc) · 190 KB
/
Table.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"elements": [
{
"name": "Hydrogen",
"appearance": "colorless gas",
"atomic_mass": 1.008,
"boil": 20.271,
"category": "diatomic nonmetal",
"density": 0.08988,
"discovered_by": "Henry Cavendish",
"melt": 13.99,
"molar_heat": 28.836,
"named_by": "Antoine Lavoisier",
"number": 1,
"period": 1,
"phase": "Gas",
"source": "https://en.wikipedia.org/wiki/Hydrogen",
"spectral_img": "https://en.wikipedia.org/wiki/File:Hydrogen_Spectra.jpg",
"summary": "Hydrogen is a chemical element with chemical symbol H and atomic number 1. With an atomic weight of 1.00794 u, hydrogen is the lightest element on the periodic table. Its monatomic form (H) is the most abundant chemical substance in the Universe, constituting roughly 75% of all baryonic mass.",
"symbol": "H",
"xpos": 1,
"ypos": 1,
"shells": [
1
],
"electron_configuration": "1s1",
"electron_configuration_semantic": "1s1",
"electron_affinity": 72.769,
"electronegativity_pauling": 2.2,
"ionization_energies": [
1312
],
"cpk-hex": "ffffff"
},
{
"name": "Helium",
"appearance": "colorless gas, exhibiting a red-orange glow when placed in a high-voltage electric field",
"atomic_mass": 4.0026022,
"boil": 4.222,
"category": "noble gas",
"density": 0.1786,
"discovered_by": "Pierre Janssen",
"melt": 0.95,
"molar_heat": null,
"named_by": null,
"number": 2,
"period": 1,
"phase": "Gas",
"source": "https://en.wikipedia.org/wiki/Helium",
"spectral_img": "https://en.wikipedia.org/wiki/File:Helium_spectrum.jpg",
"summary": "Helium is a chemical element with symbol He and atomic number 2. It is a colorless, odorless, tasteless, non-toxic, inert, monatomic gas that heads the noble gas group in the periodic table. Its boiling and melting points are the lowest among all the elements.",
"symbol": "He",
"xpos": 18,
"ypos": 1,
"shells": [
2
],
"electron_configuration": "1s2",
"electron_configuration_semantic": "1s2",
"electron_affinity": -48,
"electronegativity_pauling": null,
"ionization_energies": [
2372.3,
5250.5
],
"cpk-hex": "d9ffff"
},
{
"name": "Lithium",
"appearance": "silvery-white",
"atomic_mass": 6.94,
"boil": 1603,
"category": "alkali metal",
"density": 0.534,
"discovered_by": "Johan August Arfwedson",
"melt": 453.65,
"molar_heat": 24.86,
"named_by": null,
"number": 3,
"period": 2,
"phase": "Solid",
"source": "https://en.wikipedia.org/wiki/Lithium",
"spectral_img": null,
"summary": "Lithium (from Greek:λίθος lithos, \"stone\") is a chemical element with the symbol Li and atomic number 3. It is a soft, silver-white metal belonging to the alkali metal group of chemical elements. Under standard conditions it is the lightest metal and the least dense solid element.",
"symbol": "Li",
"xpos": 1,
"ypos": 2,
"shells": [
2,
1
],
"electron_configuration": "1s2 2s1",
"electron_configuration_semantic": "[He] 2s1",
"electron_affinity": 59.6326,
"electronegativity_pauling": 0.98,
"ionization_energies": [
520.2,
7298.1,
11815
],
"cpk-hex": "cc80ff"
},
{
"name": "Beryllium",
"appearance": "white-gray metallic",
"atomic_mass": 9.01218315,
"boil": 2742,
"category": "alkaline earth metal",
"density": 1.85,
"discovered_by": "Louis Nicolas Vauquelin",
"melt": 1560,
"molar_heat": 16.443,
"named_by": null,
"number": 4,
"period": 2,
"phase": "Solid",
"source": "https://en.wikipedia.org/wiki/Beryllium",
"spectral_img": null,
"summary": "Beryllium is a chemical element with symbol Be and atomic number 4. It is created through stellar nucleosynthesis and is a relatively rare element in the universe. It is a divalent element which occurs naturally only in combination with other elements in minerals.",
"symbol": "Be",
"xpos": 2,
"ypos": 2,
"shells": [
2,
2
],
"electron_configuration": "1s2 2s2",
"electron_configuration_semantic": "[He] 2s2",
"electron_affinity": -48,
"electronegativity_pauling": 1.57,
"ionization_energies": [
899.5,
1757.1,
14848.7,
21006.6
],
"cpk-hex": "c2ff00"
},
{
"name": "Boron",
"appearance": "black-brown",
"atomic_mass": 10.81,
"boil": 4200,
"category": "metalloid",
"density": 2.08,
"discovered_by": "Joseph Louis Gay-Lussac",
"melt": 2349,
"molar_heat": 11.087,
"named_by": null,
"number": 5,
"period": 2,
"phase": "Solid",
"source": "https://en.wikipedia.org/wiki/Boron",
"spectral_img": null,
"summary": "Boron is a metalloid chemical element with symbol B and atomic number 5. Produced entirely by cosmic ray spallation and supernovae and not by stellar nucleosynthesis, it is a low-abundance element in both the Solar system and the Earth's crust. Boron is concentrated on Earth by the water-solubility of its more common naturally occurring compounds, the borate minerals.",
"symbol": "B",
"xpos": 13,
"ypos": 2,
"shells": [
2,
3
],
"electron_configuration": "1s2 2s2 2p1",
"electron_configuration_semantic": "[He] 2s2 2p1",
"electron_affinity": 26.989,
"electronegativity_pauling": 2.04,
"ionization_energies": [
800.6,
2427.1,
3659.7,
25025.8,
32826.7
],
"cpk-hex": "ffb5b5"
},
{
"name": "Carbon",
"appearance": null,
"atomic_mass": 12.011,
"boil": null,
"category": "polyatomic nonmetal",
"density": 1.821,
"discovered_by": "Ancient Egypt",
"melt": null,
"molar_heat": 8.517,
"named_by": null,
"number": 6,
"period": 2,
"phase": "Solid",
"source": "https://en.wikipedia.org/wiki/Carbon",
"spectral_img": "https://en.wikipedia.org/wiki/File:Carbon_Spectra.jpg",
"summary": "Carbon (from Latin:carbo \"coal\") is a chemical element with symbol C and atomic number 6. On the periodic table, it is the first (row 2) of six elements in column (group) 14, which have in common the composition of their outer electron shell. It is nonmetallic and tetravalent—making four electrons available to form covalent chemical bonds.",
"symbol": "C",
"xpos": 14,
"ypos": 2,
"shells": [
2,
4
],
"electron_configuration": "1s2 2s2 2p2",
"electron_configuration_semantic": "[He] 2s2 2p2",
"electron_affinity": 121.7763,
"electronegativity_pauling": 2.55,
"ionization_energies": [
1086.5,
2352.6,
4620.5,
6222.7,
37831,
47277
],
"cpk-hex": "909090"
},
{
"name": "Nitrogen",
"appearance": "colorless gas, liquid or solid",
"atomic_mass": 14.007,
"boil": 77.355,
"category": "diatomic nonmetal",
"density": 1.251,
"discovered_by": "Daniel Rutherford",
"melt": 63.15,
"molar_heat": null,
"named_by": "Jean-Antoine Chaptal",
"number": 7,
"period": 2,
"phase": "Gas",
"source": "https://en.wikipedia.org/wiki/Nitrogen",
"spectral_img": "https://en.wikipedia.org/wiki/File:Nitrogen_Spectra.jpg",
"summary": "Nitrogen is a chemical element with symbol N and atomic number 7. It is the lightest pnictogen and at room temperature, it is a transparent, odorless diatomic gas. Nitrogen is a common element in the universe, estimated at about seventh in total abundance in the Milky Way and the Solar System.",
"symbol": "N",
"xpos": 15,
"ypos": 2,
"shells": [
2,
5
],
"electron_configuration": "1s2 2s2 2p3",
"electron_configuration_semantic": "[He] 2s2 2p3",
"electron_affinity": -6.8,
"electronegativity_pauling": 3.04,
"ionization_energies": [
1402.3,
2856,
4578.1,
7475,
9444.9,
53266.6,
64360
],
"cpk-hex": "3050f8"
},
{
"name": "Oxygen",
"appearance": null,
"atomic_mass": 15.999,
"boil": 90.188,
"category": "diatomic nonmetal",
"density": 1.429,
"discovered_by": "Carl Wilhelm Scheele",
"melt": 54.36,
"molar_heat": null,
"named_by": "Antoine Lavoisier",
"number": 8,
"period": 2,
"phase": "Gas",
"source": "https://en.wikipedia.org/wiki/Oxygen",
"spectral_img": "https://en.wikipedia.org/wiki/File:Oxygen_spectre.jpg",
"summary": "Oxygen is a chemical element with symbol O and atomic number 8. It is a member of the chalcogen group on the periodic table and is a highly reactive nonmetal and oxidizing agent that readily forms compounds (notably oxides) with most elements. By mass, oxygen is the third-most abundant element in the universe, after hydrogen and helium.",
"symbol": "O",
"xpos": 16,
"ypos": 2,
"shells": [
2,
6
],
"electron_configuration": "1s2 2s2 2p4",
"electron_configuration_semantic": "[He] 2s2 2p4",
"electron_affinity": 140.976,
"electronegativity_pauling": 3.44,
"ionization_energies": [
1313.9,
3388.3,
5300.5,
7469.2,
10989.5,
13326.5,
71330,
84078
],
"cpk-hex": "ff0d0d"
},
{
"name": "Fluorine",
"appearance": null,
"atomic_mass": 18.9984031636,
"boil": 85.03,
"category": "diatomic nonmetal",
"density": 1.696,
"discovered_by": "André-Marie Ampère",
"melt": 53.48,
"molar_heat": null,
"named_by": "Humphry Davy",
"number": 9,
"period": 2,
"phase": "Gas",
"source": "https://en.wikipedia.org/wiki/Fluorine",
"spectral_img": null,
"summary": "Fluorine is a chemical element with symbol F and atomic number 9. It is the lightest halogen and exists as a highly toxic pale yellow diatomic gas at standard conditions. As the most electronegative element, it is extremely reactive:almost all other elements, including some noble gases, form compounds with fluorine.",
"symbol": "F",
"xpos": 17,
"ypos": 2,
"shells": [
2,
7
],
"electron_configuration": "1s2 2s2 2p5",
"electron_configuration_semantic": "[He] 2s2 2p5",
"electron_affinity": 328.1649,
"electronegativity_pauling": 3.98,
"ionization_energies": [
1681,
3374.2,
6050.4,
8407.7,
11022.7,
15164.1,
17868,
92038.1,
106434.3
],
"cpk-hex": "90e050"
},
{
"name": "Neon",
"appearance": "colorless gas exhibiting an orange-red glow when placed in a high voltage electric field",
"atomic_mass": 20.17976,
"boil": 27.104,
"category": "noble gas",
"density": 0.9002,
"discovered_by": "Morris Travers",
"melt": 24.56,
"molar_heat": null,
"named_by": null,
"number": 10,
"period": 2,
"phase": "Gas",
"source": "https://en.wikipedia.org/wiki/Neon",
"spectral_img": "https://en.wikipedia.org/wiki/File:Neon_spectra.jpg",
"summary": "Neon is a chemical element with symbol Ne and atomic number 10. It is in group 18 (noble gases) of the periodic table. Neon is a colorless, odorless, inert monatomic gas under standard conditions, with about two-thirds the density of air.",
"symbol": "Ne",
"xpos": 18,
"ypos": 2,
"shells": [
2,
8
],
"electron_configuration": "1s2 2s2 2p6",
"electron_configuration_semantic": "[He] 2s2 2p6",
"electron_affinity": -116,
"electronegativity_pauling": null,
"ionization_energies": [
2080.7,
3952.3,
6122,
9371,
12177,
15238,
19999,
23069.5,
115379.5,
131432
],
"cpk-hex": "b3e3f5"
},
{
"name": "Sodium",
"appearance": "silvery white metallic",
"atomic_mass": 22.989769282,
"boil": 1156.09,
"category": "alkali metal",
"density": 0.968,
"discovered_by": "Humphry Davy",
"melt": 370.944,
"molar_heat": 28.23,
"named_by": null,
"number": 11,
"period": 3,
"phase": "Solid",
"source": "https://en.wikipedia.org/wiki/Sodium",
"spectral_img": "https://en.wikipedia.org/wiki/File:Sodium_Spectra.jpg",
"summary": "Sodium /ˈsoʊdiəm/ is a chemical element with symbol Na (from Ancient Greek Νάτριο) and atomic number 11. It is a soft, silver-white, highly reactive metal. In the Periodic table it is in column 1 (alkali metals), and shares with the other six elements in that column that it has a single electron in its outer shell, which it readily donates, creating a positively charged atom - a cation.",
"symbol": "Na",
"xpos": 1,
"ypos": 3,
"shells": [
2,
8,
1
],
"electron_configuration": "1s2 2s2 2p6 3s1",
"electron_configuration_semantic": "[Ne] 3s1",
"electron_affinity": 52.867,
"electronegativity_pauling": 0.93,
"ionization_energies": [
495.8,
4562,
6910.3,
9543,
13354,
16613,
20117,
25496,
28932,
141362,
159076
],
"cpk-hex": "ab5cf2"
},
{
"name": "Magnesium",
"appearance": "shiny grey solid",
"atomic_mass": 24.305,
"boil": 1363,
"category": "alkaline earth metal",
"density": 1.738,
"discovered_by": "Joseph Black",
"melt": 923,
"molar_heat": 24.869,
"named_by": null,
"number": 12,
"period": 3,
"phase": "Solid",
"source": "https://en.wikipedia.org/wiki/Magnesium",
"spectral_img": "https://en.wikipedia.org/wiki/File:Magnesium_Spectra.jpg",
"summary": "Magnesium is a chemical element with symbol Mg and atomic number 12. It is a shiny gray solid which bears a close physical resemblance to the other five elements in the second column (Group 2, or alkaline earth metals) of the periodic table:they each have the same electron configuration in their outer electron shell producing a similar crystal structure. Magnesium is the ninth most abundant element in the universe.",
"symbol": "Mg",
"xpos": 2,
"ypos": 3,
"shells": [
2,
8,
2
],
"electron_configuration": "1s2 2s2 2p6 3s2",
"electron_configuration_semantic": "[Ne] 3s2",
"electron_affinity": -40,
"electronegativity_pauling": 1.31,
"ionization_energies": [
737.7,
1450.7,
7732.7,
10542.5,
13630,
18020,
21711,
25661,
31653,
35458,
169988,
189368
],
"cpk-hex": "8aff00"
},
{
"name": "Aluminium",
"appearance": "silvery gray metallic",
"atomic_mass": 26.98153857,
"boil": 2743,
"category": "post-transition metal",
"density": 2.7,
"discovered_by": null,
"melt": 933.47,
"molar_heat": 24.2,
"named_by": "Humphry Davy",
"number": 13,
"period": 3,
"phase": "Solid",
"source": "https://en.wikipedia.org/wiki/Aluminium",
"spectral_img": null,
"summary": "Aluminium (or aluminum; see different endings) is a chemical element in the boron group with symbol Al and atomic number 13. It is a silvery-white, soft, nonmagnetic, ductile metal. Aluminium is the third most abundant element (after oxygen and silicon), and the most abundant metal, in the Earth's crust.",
"symbol": "Al",
"xpos": 13,
"ypos": 3,
"shells": [
2,
8,
3
],
"electron_configuration": "1s2 2s2 2p6 3s2 3p1",
"electron_configuration_semantic": "[Ne] 3s2 3p1",
"electron_affinity": 41.762,
"electronegativity_pauling": 1.61,
"ionization_energies": [
577.5,
1816.7,
2744.8,
11577,
14842,
18379,
23326,
27465,
31853,
38473,
42647,
201266,
222316
],
"cpk-hex": "bfa6a6"
},
{
"name": "Silicon",
"appearance": "crystalline, reflective with bluish-tinged faces",
"atomic_mass": 28.085,
"boil": 3538,
"category": "metalloid",
"density": 2.329,
"discovered_by": "Jöns Jacob Berzelius",
"melt": 1687,
"molar_heat": 19.789,
"named_by": "Thomas Thomson (chemist)",
"number": 14,
"period": 3,
"phase": "Solid",
"source": "https://en.wikipedia.org/wiki/Silicon",
"spectral_img": "https://en.wikipedia.org/wiki/File:Silicon_Spectra.jpg",
"summary": "Silicon is a chemical element with symbol Si and atomic number 14. It is a tetravalent metalloid, more reactive than germanium, the metalloid directly below it in the table. Controversy about silicon's character dates to its discovery.",
"symbol": "Si",
"xpos": 14,
"ypos": 3,
"shells": [
2,
8,
4
],
"electron_configuration": "1s2 2s2 2p6 3s2 3p2",
"electron_configuration_semantic": "[Ne] 3s2 3p2",
"electron_affinity": 134.0684,
"electronegativity_pauling": 1.9,
"ionization_energies": [
786.5,
1577.1,
3231.6,
4355.5,
16091,
19805,
23780,
29287,
33878,
38726,
45962,
50502,
235196,
257923
],
"cpk-hex": "f0c8a0"
},
{
"name": "Phosphorus",
"appearance": "colourless, waxy white, yellow, scarlet, red, violet, black",
"atomic_mass": 30.9737619985,
"boil": null,
"category": "polyatomic nonmetal",
"density": 1.823,
"discovered_by": "Hennig Brand",
"melt": null,
"molar_heat": 23.824,
"named_by": null,
"number": 15,
"period": 3,
"phase": "Solid",
"source": "https://en.wikipedia.org/wiki/Phosphorus",
"spectral_img": null,
"summary": "Phosphorus is a chemical element with symbol P and atomic number 15. As an element, phosphorus exists in two major forms—white phosphorus and red phosphorus—but due to its high reactivity, phosphorus is never found as a free element on Earth. Instead phosphorus-containing minerals are almost always present in their maximally oxidised state, as inorganic phosphate rocks.",
"symbol": "P",
"xpos": 15,
"ypos": 3,
"shells": [
2,
8,
5
],
"electron_configuration": "1s2 2s2 2p6 3s2 3p3",
"electron_configuration_semantic": "[Ne] 3s2 3p3",
"electron_affinity": 72.037,
"electronegativity_pauling": 2.19,
"ionization_energies": [
1011.8,
1907,
2914.1,
4963.6,
6273.9,
21267,
25431,
29872,
35905,
40950,
46261,
54110,
59024,
271791,
296195
],
"cpk-hex": "ff8000"
},
{
"name": "Sulfur",
"appearance": "lemon yellow sintered microcrystals",
"atomic_mass": 32.06,
"boil": 717.8,
"category": "polyatomic nonmetal",
"density": 2.07,
"discovered_by": "Ancient china",
"melt": 388.36,
"molar_heat": 22.75,
"named_by": null,
"number": 16,
"period": 3,
"phase": "Solid",
"source": "https://en.wikipedia.org/wiki/Sulfur",
"spectral_img": "https://en.wikipedia.org/wiki/File:Sulfur_Spectrum.jpg",
"summary": "Sulfur or sulphur (see spelling differences) is a chemical element with symbol S and atomic number 16. It is an abundant, multivalent non-metal. Under normal conditions, sulfur atoms form cyclic octatomic molecules with chemical formula S8.",
"symbol": "S",
"xpos": 16,
"ypos": 3,
"shells": [
2,
8,
6
],
"electron_configuration": "1s2 2s2 2p6 3s2 3p4",
"electron_configuration_semantic": "[Ne] 3s2 3p4",
"electron_affinity": 200.4101,
"electronegativity_pauling": 2.58,
"ionization_energies": [
999.6,
2252,
3357,
4556,
7004.3,
8495.8,
27107,
31719,
36621,
43177,
48710,
54460,
62930,
68216,
311048,
337138
],
"cpk-hex": "ffff30"
},
{
"name": "Chlorine",
"appearance": "pale yellow-green gas",
"atomic_mass": 35.45,
"boil": 239.11,
"category": "diatomic nonmetal",
"density": 3.2,
"discovered_by": "Carl Wilhelm Scheele",
"melt": 171.6,
"molar_heat": null,
"named_by": null,
"number": 17,
"period": 3,
"phase": "Gas",
"source": "https://en.wikipedia.org/wiki/Chlorine",
"spectral_img": "https://en.wikipedia.org/wiki/File:Chlorine_spectrum_visible.png",
"summary": "Chlorine is a chemical element with symbol Cl and atomic number 17. It also has a relative atomic mass of 35.5. Chlorine is in the halogen group (17) and is the second lightest halogen following fluorine.",
"symbol": "Cl",
"xpos": 17,
"ypos": 3,
"shells": [
2,
8,
7
],
"electron_configuration": "1s2 2s2 2p6 3s2 3p5",
"electron_configuration_semantic": "[Ne] 3s2 3p5",
"electron_affinity": 348.575,
"electronegativity_pauling": 3.16,
"ionization_energies": [
1251.2,
2298,
3822,
5158.6,
6542,
9362,
11018,
33604,
38600,
43961,
51068,
57119,
63363,
72341,
78095,
352994,
380760
],
"cpk-hex": "1ff01f"
},
{
"name": "Argon",
"appearance": "colorless gas exhibiting a lilac/violet glow when placed in a high voltage electric field",
"atomic_mass": 39.9481,
"boil": 87.302,
"category": "noble gas",
"density": 1.784,
"discovered_by": "Lord Rayleigh",
"melt": 83.81,
"molar_heat": null,
"named_by": null,
"number": 18,
"period": 3,
"phase": "Gas",
"source": "https://en.wikipedia.org/wiki/Argon",
"spectral_img": "https://en.wikipedia.org/wiki/File:Argon_Spectrum.png",
"summary": "Argon is a chemical element with symbol Ar and atomic number 18. It is in group 18 of the periodic table and is a noble gas. Argon is the third most common gas in the Earth's atmosphere, at 0.934% (9,340 ppmv), making it over twice as abundant as the next most common atmospheric gas, water vapor (which averages about 4000 ppmv, but varies greatly), and 23 times as abundant as the next most common non-condensing atmospheric gas, carbon dioxide (400 ppmv), and more than 500 times as abundant as the next most common noble gas, neon (18 ppmv).",
"symbol": "Ar",
"xpos": 18,
"ypos": 3,
"shells": [
2,
8,
8
],
"electron_configuration": "1s2 2s2 2p6 3s2 3p6",
"electron_configuration_semantic": "[Ne] 3s2 3p6",
"electron_affinity": -96,
"electronegativity_pauling": null,
"ionization_energies": [
1520.6,
2665.8,
3931,
5771,
7238,
8781,
11995,
13842,
40760,
46186,
52002,
59653,
66199,
72918,
82473,
88576,
397605,
427066
],
"cpk-hex": "80d1e3"
},
{
"name": "Potassium",
"appearance": "silvery gray",
"atomic_mass": 39.09831,
"boil": 1032,
"category": "alkali metal",
"density": 0.862,
"discovered_by": "Humphry Davy",
"melt": 336.7,
"molar_heat": 29.6,
"named_by": null,
"number": 19,
"period": 4,
"phase": "Solid",
"source": "https://en.wikipedia.org/wiki/Potassium",
"spectral_img": "https://en.wikipedia.org/wiki/File:Potassium_Spectrum.jpg",
"summary": "Potassium is a chemical element with symbol K (derived from Neo-Latin, kalium) and atomic number 19. It was first isolated from potash, the ashes of plants, from which its name is derived. In the Periodic table, potassium is one of seven elements in column (group) 1 (alkali metals):they all have a single valence electron in their outer electron shell, which they readily give up to create an atom with a positive charge - a cation, and combine with anions to form salts.",
"symbol": "K",
"xpos": 1,
"ypos": 4,
"shells": [
2,
8,
8,
1
],
"electron_configuration": "1s2 2s2 2p6 3s2 3p6 4s1",
"electron_configuration_semantic": "[Ar] 4s1",
"electron_affinity": 48.383,
"electronegativity_pauling": 0.82,
"ionization_energies": [
418.8,
3052,
4420,
5877,
7975,
9590,
11343,
14944,
16963.7,
48610,
54490,
60730,
68950,
75900,
83080,
93400,
99710,
444880,
476063
],
"cpk-hex": "8f40d4"
},
{
"name": "Calcium",
"appearance": null,
"atomic_mass": 40.0784,
"boil": 1757,
"category": "alkaline earth metal",
"density": 1.55,
"discovered_by": "Humphry Davy",
"melt": 1115,
"molar_heat": 25.929,
"named_by": null,
"number": 20,
"period": 4,
"phase": "Solid",
"source": "https://en.wikipedia.org/wiki/Calcium",
"spectral_img": "https://en.wikipedia.org/wiki/File:Calcium_Spectrum.png",
"summary": "Calcium is a chemical element with symbol Ca and atomic number 20. Calcium is a soft gray alkaline earth metal, fifth-most-abundant element by mass in the Earth's crust. The ion Ca2+ is also the fifth-most-abundant dissolved ion in seawater by both molarity and mass, after sodium, chloride, magnesium, and sulfate.",
"symbol": "Ca",
"xpos": 2,
"ypos": 4,
"shells": [
2,
8,
8,
2
],
"electron_configuration": "1s2 2s2 2p6 3s2 3p6 4s2",
"electron_configuration_semantic": "[Ar] 4s2",
"electron_affinity": 2.37,
"electronegativity_pauling": 1,
"ionization_energies": [
589.8,
1145.4,
4912.4,
6491,
8153,
10496,
12270,
14206,
18191,
20385,
57110,
63410,
70110,
78890,
86310,
94000,
104900,
111711,
494850,
527762
],
"cpk-hex": "3dff00"
},
{
"name": "Scandium",
"appearance": "silvery white",
"atomic_mass": 44.9559085,
"boil": 3109,
"category": "transition metal",
"density": 2.985,
"discovered_by": "Lars Fredrik Nilson",
"melt": 1814,
"molar_heat": 25.52,
"named_by": null,
"number": 21,
"period": 4,
"phase": "Solid",
"source": "https://en.wikipedia.org/wiki/Scandium",
"spectral_img": null,
"summary": "Scandium is a chemical element with symbol Sc and atomic number 21. A silvery-white metallic d-block element, it has historically been sometimes classified as a rare earth element, together with yttrium and the lanthanoids. It was discovered in 1879 by spectral analysis of the minerals euxenite and gadolinite from Scandinavia.",
"symbol": "Sc",
"xpos": 3,
"ypos": 4,
"shells": [
2,
8,
9,
2
],
"electron_configuration": "1s2 2s2 2p6 3s2 3p6 4s2 3d1",
"electron_configuration_semantic": "[Ar] 3d1 4s2",
"electron_affinity": 18,
"electronegativity_pauling": 1.36,
"ionization_energies": [
633.1,
1235,
2388.6,
7090.6,
8843,
10679,
13310,
15250,
17370,
21726,
24102,
66320,
73010,
80160,
89490,
97400,
105600,
117000,
124270,
547530,
582163
],
"cpk-hex": "e6e6e6"
},
{
"name": "Titanium",
"appearance": "silvery grey-white metallic",
"atomic_mass": 47.8671,
"boil": 3560,
"category": "transition metal",
"density": 4.506,
"discovered_by": "William Gregor",
"melt": 1941,
"molar_heat": 25.06,
"named_by": "Martin Heinrich Klaproth",
"number": 22,
"period": 4,
"phase": "Solid",
"source": "https://en.wikipedia.org/wiki/Titanium",
"spectral_img": null,
"summary": "Titanium is a chemical element with symbol Ti and atomic number 22. It is a lustrous transition metal with a silver color, low density and high strength. It is highly resistant to corrosion in sea water, aqua regia and chlorine.",
"symbol": "Ti",
"xpos": 4,
"ypos": 4,
"shells": [
2,
8,
10,
2
],
"electron_configuration": "1s2 2s2 2p6 3s2 3p6 4s2 3d2",
"electron_configuration_semantic": "[Ar] 3d2 4s2",
"electron_affinity": 7.289,
"electronegativity_pauling": 1.54,
"ionization_energies": [
658.8,
1309.8,
2652.5,
4174.6,
9581,
11533,
13590,
16440,
18530,
20833,
25575,
28125,
76015,
83280,
90880,
100700,
109100,
117800,
129900,
137530,
602930,
639294
],
"cpk-hex": "bfc2c7"
},
{
"name": "Vanadium",
"appearance": "blue-silver-grey metal",
"atomic_mass": 50.94151,
"boil": 3680,
"category": "transition metal",
"density": 6,
"discovered_by": "Andrés Manuel del Río",
"melt": 2183,
"molar_heat": 24.89,
"named_by": "Isotopes of vanadium",
"number": 23,
"period": 4,
"phase": "Solid",
"source": "https://en.wikipedia.org/wiki/Vanadium",
"spectral_img": null,
"summary": "Vanadium is a chemical element with symbol V and atomic number 23. It is a hard, silvery grey, ductile and malleable transition metal. The element is found only in chemically combined form in nature, but once isolated artificially, the formation of an oxide layer stabilizes the free metal somewhat against further oxidation.",
"symbol": "V",
"xpos": 5,
"ypos": 4,
"shells": [
2,
8,
11,
2
],
"electron_configuration": "1s2 2s2 2p6 3s2 3p6 4s2 3d3",