Skip to content
Snippets Groups Projects
Atom.cpp 232 KiB
Newer Older
1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000
static const Atom Mo85("Mo", 42, 85, 0.000000, 84.936590, 9.04786272462);
static const Atom Mo86("Mo", 42, 86, 0.000000, 85.930700, 9.15376020429);
static const Atom Mo87("Mo", 42, 87, 0.000000, 86.927330, 9.25992612675);
static const Atom Mo88("Mo", 42, 88, 0.000000, 87.921953, 9.3658782537);
static const Atom Mo89("Mo", 42, 89, 0.000000, 88.919481, 9.47213983552);
static const Atom Mo90("Mo", 42, 90, 0.000000, 89.913936, 9.57807406629);
static const Atom Mo91("Mo", 42, 91, 0.000000, 90.911751, 9.68436622076);
static const Atom Mo92("Mo", 42, 92, 14.840000, 91.906810, 9.79036479258);
static const Atom Mo93("Mo", 42, 93, 0.000000, 92.906812, 9.89688991703);
static const Atom Mo94("Mo", 42, 94, 9.250000, 93.905088, 10.0032311369);
static const Atom Mo95("Mo", 42, 95, 15.920000, 94.905841, 10.1098363574);
static const Atom Mo96("Mo", 42, 96, 16.680000, 95.904679, 10.216237423);
static const Atom Mo97("Mo", 42, 97, 9.550000, 96.906021, 10.3229053014);
static const Atom Mo98("Mo", 42, 98, 24.130000, 97.905408, 10.4293648918);
static const Atom Mo99("Mo", 42, 99, 0.000000, 98.907712, 10.5361352153);
static const Atom Mo100("Mo", 42, 100, 9.630000, 99.907477, 10.6426351359);
static const Atom Mo101("Mo", 42, 101, 0.000000, 100.910347, 10.7494657738);
static const Atom Mo102("Mo", 42, 102, 0.000000, 101.910297, 10.855985359);
static const Atom Mo103("Mo", 42, 103, 0.000000, 102.913200, 10.9628195122);
static const Atom Mo104("Mo", 42, 104, 0.000000, 103.913760, 11.0694040775);
static const Atom Mo105("Mo", 42, 105, 0.000000, 104.916970, 11.1762709339);
static const Atom Mo106("Mo", 42, 106, 0.000000, 105.918134, 11.2829198403);
static const Atom Mo107("Mo", 42, 107, 0.000000, 106.921690, 11.3898235543);
static const Atom Mo108("Mo", 42, 108, 0.000000, 107.923580, 11.4965497978);
static const Atom Mo109("Mo", 42, 109, 0.000000, 108.927810, 11.6035253096);
static const Atom Mo110("Mo", 42, 110, 0.000000, 109.929730, 11.7102547488);
static const Atom Mo111("Mo", 42, 111, 0.000000, 110.934510, 11.8172888493);
static const Atom Mo112("Mo", 42, 112, 0.000000, 111.936840, 11.9240619637);
static const Atom Mo113("Mo", 42, 113, 0.000000, 112.942030, 12.0311397394);
static const Atom Tc("Tc", 43, 0, 0.000000, 98.000000, 11.5);
static const Atom Tc85("Tc", 43, 85, 0.000000, 84.948940, 9.96849806122);
static const Atom Tc86("Tc", 43, 86, 0.000000, 85.942880, 10.0851338776);
static const Atom Tc87("Tc", 43, 87, 0.000000, 86.936530, 10.2017356633);
static const Atom Tc88("Tc", 43, 88, 0.000000, 87.932830, 10.3186484184);
static const Atom Tc89("Tc", 43, 89, 0.000000, 88.927540, 10.4353745918);
static const Atom Tc90("Tc", 43, 90, 0.000000, 89.923560, 10.5522544898);
static const Atom Tc91("Tc", 43, 91, 0.000000, 90.918430, 10.6689994388);
static const Atom Tc92("Tc", 43, 92, 0.000000, 91.915260, 10.7859743878);
static const Atom Tc93("Tc", 43, 93, 0.000000, 92.910248, 10.9027331837);
static const Atom Tc94("Tc", 43, 94, 0.000000, 93.909656, 11.0200106531);
static const Atom Tc95("Tc", 43, 95, 0.000000, 94.907656, 11.137122898);
static const Atom Tc96("Tc", 43, 96, 0.000000, 95.907871, 11.2544950663);
static const Atom Tc97("Tc", 43, 97, 0.000000, 96.906365, 11.3716652806);
static const Atom Tc98("Tc", 43, 98, 0.000000, 97.907216, 11.4891120816);
static const Atom Tc99("Tc", 43, 99, 0.000000, 98.906255, 11.6063462031);
static const Atom Tc100("Tc", 43, 100, 0.000000, 99.907658, 11.7238577796);
static const Atom Tc101("Tc", 43, 101, 0.000000, 100.907314, 11.841164398);
static const Atom Tc102("Tc", 43, 102, 0.000000, 101.909213, 11.9587341786);
static const Atom Tc103("Tc", 43, 103, 0.000000, 102.909179, 12.0760771276);
static const Atom Tc104("Tc", 43, 104, 0.000000, 103.911440, 12.1936893878);
static const Atom Tc105("Tc", 43, 105, 0.000000, 104.911660, 12.3110621429);
static const Atom Tc106("Tc", 43, 106, 0.000000, 105.914355, 12.4287253316);
static const Atom Tc107("Tc", 43, 107, 0.000000, 106.915080, 12.5461573469);
static const Atom Tc108("Tc", 43, 108, 0.000000, 107.918480, 12.6639032653);
static const Atom Tc109("Tc", 43, 109, 0.000000, 108.919630, 12.7813851531);
static const Atom Tc110("Tc", 43, 110, 0.000000, 109.923390, 12.8991733163);
static const Atom Tc111("Tc", 43, 111, 0.000000, 110.925050, 13.016715051);
static const Atom Tc112("Tc", 43, 112, 0.000000, 111.929240, 13.1345536735);
static const Atom Tc113("Tc", 43, 113, 0.000000, 112.931330, 13.2521458673);
static const Atom Tc114("Tc", 43, 114, 0.000000, 113.935880, 13.3700267347);
static const Atom Tc115("Tc", 43, 115, 0.000000, 114.938280, 13.4876553061);
static const Atom Ru("Ru", 44, 0, 0.000000, 101.070000, 12.41);
static const Atom Ru87("Ru", 44, 87, 0.000000, 86.949180, 10.6761583437);
static const Atom Ru88("Ru", 44, 88, 0.000000, 87.940420, 10.7978689245);
static const Atom Ru89("Ru", 44, 89, 0.000000, 88.936110, 10.9201259038);
static const Atom Ru90("Ru", 44, 90, 0.000000, 89.929780, 11.0421348551);
static const Atom Ru91("Ru", 44, 91, 0.000000, 90.926380, 11.1645035698);
static const Atom Ru92("Ru", 44, 92, 0.000000, 91.920120, 11.2865211161);
static const Atom Ru93("Ru", 44, 93, 0.000000, 92.917050, 11.4089303503);
static const Atom Ru94("Ru", 44, 94, 0.000000, 93.911360, 11.5310178846);
static const Atom Ru95("Ru", 44, 95, 0.000000, 94.910413, 11.6536877939);
static const Atom Ru96("Ru", 44, 96, 5.540000, 95.907598, 11.7761283386);
static const Atom Ru97("Ru", 44, 97, 0.000000, 96.907555, 11.8989092466);
static const Atom Ru98("Ru", 44, 98, 1.870000, 97.905287, 12.0214169553);
static const Atom Ru99("Ru", 44, 99, 12.760000, 98.905939, 12.1442832365);
static const Atom Ru100("Ru", 44, 100, 12.600000, 99.904220, 12.2668582812);
static const Atom Ru101("Ru", 44, 101, 17.060000, 100.905582, 12.3898117651);
static const Atom Ru102("Ru", 44, 102, 31.550000, 101.904349, 12.5124465944);
static const Atom Ru103("Ru", 44, 103, 0.000000, 102.906324, 12.6354751867);
static const Atom Ru104("Ru", 44, 104, 18.620000, 103.905430, 12.7581516404);
static const Atom Ru105("Ru", 44, 105, 0.000000, 104.907750, 12.8812226922);
static const Atom Ru106("Ru", 44, 106, 0.000000, 105.907327, 13.0039569414);
static const Atom Ru107("Ru", 44, 107, 0.000000, 106.909910, 13.1270602859);
static const Atom Ru108("Ru", 44, 108, 0.000000, 107.910190, 13.2498808539);
static const Atom Ru109("Ru", 44, 109, 0.000000, 108.913200, 13.3730366281);
static const Atom Ru110("Ru", 44, 110, 0.000000, 109.913970, 13.4959173612);
static const Atom Ru111("Ru", 44, 111, 0.000000, 110.917560, 13.6191443514);
static const Atom Ru112("Ru", 44, 112, 0.000000, 111.918550, 13.7420520976);
static const Atom Ru113("Ru", 44, 113, 0.000000, 112.922540, 13.8653282022);
static const Atom Ru114("Ru", 44, 114, 0.000000, 113.924000, 13.9882936579);
static const Atom Ru115("Ru", 44, 115, 0.000000, 114.928310, 14.1116090541);
static const Atom Ru116("Ru", 44, 116, 0.000000, 115.930160, 14.2346223964);
static const Atom Ru117("Ru", 44, 117, 0.000000, 116.934790, 14.3579770842);
static const Atom Ru118("Ru", 44, 118, 0.000000, 117.937030, 14.4810383131);
static const Atom Rh("Rh", 45, 0, 0.000000, 102.905500, 12.41);
static const Atom Rh89("Rh", 45, 89, 0.000000, 88.949380, 10.7269466238);
static const Atom Rh90("Rh", 45, 90, 0.000000, 89.942870, 10.8467576242);
static const Atom Rh91("Rh", 45, 91, 0.000000, 90.936550, 10.9665915379);
static const Atom Rh92("Rh", 45, 92, 0.000000, 91.931980, 11.0866364946);
static const Atom Rh93("Rh", 45, 93, 0.000000, 92.925740, 11.206480056);
static const Atom Rh94("Rh", 45, 94, 0.000000, 93.921700, 11.3265889287);
static const Atom Rh95("Rh", 45, 95, 0.000000, 94.915900, 11.4464855523);
static const Atom Rh96("Rh", 45, 96, 0.000000, 95.914518, 11.5669149694);
static const Atom Rh97("Rh", 45, 97, 0.000000, 96.911340, 11.6871277959);
static const Atom Rh98("Rh", 45, 98, 0.000000, 97.910716, 11.8076486248);
static const Atom Rh99("Rh", 45, 99, 0.000000, 98.908132, 11.9279330854);
static const Atom Rh100("Rh", 45, 100, 0.000000, 99.908117, 12.0485273573);
static const Atom Rh101("Rh", 45, 101, 0.000000, 100.906164, 12.1688879141);
static const Atom Rh102("Rh", 45, 102, 0.000000, 101.906843, 12.2895658797);
static const Atom Rh103("Rh", 45, 103, 100.000000, 102.905504, 12.4100004824);
static const Atom Rh104("Rh", 45, 104, 0.000000, 103.906655, 12.5307353693);
static const Atom Rh105("Rh", 45, 105, 0.000000, 104.905692, 12.6512153162);
static const Atom Rh106("Rh", 45, 106, 0.000000, 105.907285, 12.7720035066);
static const Atom Rh107("Rh", 45, 107, 0.000000, 106.906751, 12.8925351892);
static const Atom Rh108("Rh", 45, 108, 0.000000, 107.908730, 13.0133699297);
static const Atom Rh109("Rh", 45, 109, 0.000000, 108.908736, 13.1339667341);
static const Atom Rh110("Rh", 45, 110, 0.000000, 109.910950, 13.2548298147);
static const Atom Rh111("Rh", 45, 111, 0.000000, 110.911660, 13.3755115188);
static const Atom Rh112("Rh", 45, 112, 0.000000, 111.914610, 13.4964633581);
static const Atom Rh113("Rh", 45, 113, 0.000000, 112.915420, 13.6171571218);
static const Atom Rh114("Rh", 45, 114, 0.000000, 113.918850, 13.7381668473);
static const Atom Rh115("Rh", 45, 115, 0.000000, 114.920120, 13.8589160851);
static const Atom Rh116("Rh", 45, 116, 0.000000, 115.923710, 13.9799451059);
static const Atom Rh117("Rh", 45, 117, 0.000000, 116.925350, 14.1007389644);
static const Atom Rh118("Rh", 45, 118, 0.000000, 117.929430, 14.2218270773);
static const Atom Rh119("Rh", 45, 119, 0.000000, 118.931360, 14.3426559086);
static const Atom Rh120("Rh", 45, 120, 0.000000, 119.935780, 14.4637850241);
static const Atom Rh121("Rh", 45, 121, 0.000000, 120.938080, 14.584658476);
static const Atom Pd("Pd", 46, 0, 0.000000, 106.420000, 12.02);
static const Atom Pd91("Pd", 46, 91, 0.000000, 90.949480, 10.2726249727);
static const Atom Pd92("Pd", 46, 92, 0.000000, 91.940420, 10.3845503514);
static const Atom Pd93("Pd", 46, 93, 0.000000, 92.935910, 10.4969896467);
static const Atom Pd94("Pd", 46, 94, 0.000000, 93.928770, 10.6091318869);
static const Atom Pd95("Pd", 46, 95, 0.000000, 94.924690, 10.72161975);
static const Atom Pd96("Pd", 46, 96, 0.000000, 95.918220, 10.8338376659);
static const Atom Pd97("Pd", 46, 97, 0.000000, 96.916480, 10.946589829);
static const Atom Pd98("Pd", 46, 98, 0.000000, 97.912721, 11.0591139487);
static const Atom Pd99("Pd", 46, 99, 0.000000, 98.911768, 11.1719550024);
static const Atom Pd100("Pd", 46, 100, 0.000000, 99.908505, 11.2845351447);
static const Atom Pd101("Pd", 46, 101, 0.000000, 100.908289, 11.3974594416);
static const Atom Pd102("Pd", 46, 102, 1.020000, 101.905608, 11.5101053201);
static const Atom Pd103("Pd", 46, 103, 0.000000, 102.906087, 11.6231081163);
static const Atom Pd104("Pd", 46, 104, 11.140000, 103.904035, 11.7358250395);
static const Atom Pd105("Pd", 46, 105, 22.330000, 104.905084, 11.8488922165);
static const Atom Pd106("Pd", 46, 106, 27.330000, 105.903483, 11.9616600795);
static const Atom Pd107("Pd", 46, 107, 0.000000, 106.905128, 12.074794574);
static const Atom Pd108("Pd", 46, 108, 26.460000, 107.903894, 12.1876038891);
static const Atom Pd109("Pd", 46, 109, 0.000000, 108.905954, 12.3007852573);
static const Atom Pd110("Pd", 46, 110, 11.720000, 109.905152, 12.4136433663);
static const Atom Pd111("Pd", 46, 111, 0.000000, 110.907640, 12.5268730765);
static const Atom Pd112("Pd", 46, 112, 0.000000, 111.907313, 12.6397848361);
static const Atom Pd113("Pd", 46, 113, 0.000000, 112.910150, 12.7530539654);
static const Atom Pd114("Pd", 46, 114, 0.000000, 113.910365, 12.8660269432);
static const Atom Pd115("Pd", 46, 115, 0.000000, 114.913680, 12.979350062);
static const Atom Pd116("Pd", 46, 116, 0.000000, 115.914160, 13.0923529712);
static const Atom Pd117("Pd", 46, 117, 0.000000, 116.917840, 13.2057173163);
static const Atom Pd118("Pd", 46, 118, 0.000000, 117.918980, 13.3187947717);
static const Atom Pd119("Pd", 46, 119, 0.000000, 118.922680, 13.4321613757);
static const Atom Pd120("Pd", 46, 120, 0.000000, 119.924030, 13.5452625503);
static const Atom Pd121("Pd", 46, 121, 0.000000, 120.928180, 13.6586799812);
static const Atom Pd122("Pd", 46, 122, 0.000000, 121.929800, 13.7718116519);
static const Atom Pd123("Pd", 46, 123, 0.000000, 122.934260, 13.885264097);
static const Atom Ag("Ag", 47, 0, 0.000000, 107.868200, 10.5);
static const Atom Ag94("Ag", 47, 94, 0.000000, 93.942780, 9.14448549248);
static const Atom Ag95("Ag", 47, 95, 0.000000, 94.935480, 9.24111591739);
static const Atom Ag96("Ag", 47, 96, 0.000000, 95.930680, 9.33798969483);
static const Atom Ag97("Ag", 47, 97, 0.000000, 96.924000, 9.43468047117);
static const Atom Ag98("Ag", 47, 98, 0.000000, 97.921760, 9.53180344161);
static const Atom Ag99("Ag", 47, 99, 0.000000, 98.917600, 9.6287395173);
static const Atom Ag100("Ag", 47, 100, 0.000000, 99.916070, 9.72593159986);
static const Atom Ag101("Ag", 47, 101, 0.000000, 100.912800, 9.82295430905);
static const Atom Ag102("Ag", 47, 102, 0.000000, 101.912000, 9.92021745056);
static const Atom Ag103("Ag", 47, 103, 0.000000, 102.908972, 10.0172637163);
static const Atom Ag104("Ag", 47, 104, 0.000000, 103.908628, 10.1145712453);
static const Atom Ag105("Ag", 47, 105, 0.000000, 104.906528, 10.2117078435);
static const Atom Ag106("Ag", 47, 106, 0.000000, 105.906666, 10.3090622908);
static const Atom Ag107("Ag", 47, 107, 51.839000, 106.905093, 10.4062501877);
static const Atom Ag108("Ag", 47, 108, 0.000000, 107.905954, 10.5036750127);
static const Atom Ag109("Ag", 47, 109, 48.161000, 108.904756, 10.6008994124);
static const Atom Ag110("Ag", 47, 110, 0.000000, 109.906110, 10.6983722265);
static const Atom Ag111("Ag", 47, 111, 0.000000, 110.905295, 10.7956339079);
static const Atom Ag112("Ag", 47, 112, 0.000000, 111.907004, 10.893141278);
static const Atom Ag113("Ag", 47, 113, 0.000000, 112.906566, 10.9904396569);
static const Atom Ag114("Ag", 47, 114, 0.000000, 113.908808, 11.0879989098);
static const Atom Ag115("Ag", 47, 115, 0.000000, 114.908760, 11.1853352517);
static const Atom Ag116("Ag", 47, 116, 0.000000, 115.911360, 11.2829293527);
static const Atom Ag117("Ag", 47, 117, 0.000000, 116.911680, 11.3803015161);
static const Atom Ag118("Ag", 47, 118, 0.000000, 117.914580, 11.4779248194);
static const Atom Ag119("Ag", 47, 119, 0.000000, 118.915670, 11.5753719354);
static const Atom Ag120("Ag", 47, 120, 0.000000, 119.918790, 11.6730166537);
static const Atom Ag121("Ag", 47, 121, 0.000000, 120.919850, 11.7704608494);
static const Atom Ag122("Ag", 47, 122, 0.000000, 121.923320, 11.8681396371);
static const Atom Ag123("Ag", 47, 123, 0.000000, 122.924900, 11.9656344502);
static const Atom Ag124("Ag", 47, 124, 0.000000, 123.928530, 12.0633288124);
static const Atom Ag125("Ag", 47, 125, 0.000000, 124.930540, 12.1608654821);
static const Atom Ag126("Ag", 47, 126, 0.000000, 125.934500, 12.2585919669);
static const Atom Ag127("Ag", 47, 127, 0.000000, 126.936880, 12.3561646528);
static const Atom Cd("Cd", 48, 0, 0.000000, 112.411000, 8.65);
static const Atom Cd128("Cd", 48, 128, 0.000000, 127.927760, 9.84401103095);
static const Atom Cd129("Cd", 48, 129, 0.000000, 128.932260, 9.92130706959);
static const Atom Cd130("Cd", 48, 130, 0.000000, 129.933980, 9.99838918789);
static const Atom Cd96("Cd", 48, 96, 0.000000, 95.939770, 7.38254272714);
static const Atom Cd97("Cd", 48, 97, 0.000000, 96.934940, 7.45912082447);
static const Atom Cd98("Cd", 48, 98, 0.000000, 97.927580, 7.53550423891);
static const Atom Cd99("Cd", 48, 99, 0.000000, 98.925010, 7.61225624272);
static const Atom Cd100("Cd", 48, 100, 0.000000, 99.920230, 7.68883818754);
static const Atom Cd101("Cd", 48, 101, 0.000000, 100.918680, 7.76566868011);
static const Atom Cd102("Cd", 48, 102, 0.000000, 101.914780, 7.84231834073);
static const Atom Cd103("Cd", 48, 103, 0.000000, 102.913419, 7.9191633768);
static const Atom Cd104("Cd", 48, 104, 0.000000, 103.909848, 7.9958383539);
static const Atom Cd105("Cd", 48, 105, 0.000000, 104.909468, 8.07275887769);
static const Atom Cd106("Cd", 48, 106, 1.250000, 105.906458, 8.1494770236);
static const Atom Cd107("Cd", 48, 107, 0.000000, 106.906614, 8.22643879247);
static const Atom Cd108("Cd", 48, 108, 0.890000, 107.904183, 8.30320149229);
static const Atom Cd109("Cd", 48, 109, 0.000000, 108.904986, 8.38021304766);
static const Atom Cd110("Cd", 48, 110, 12.490000, 109.903006, 8.45701045182);
static const Atom Cd111("Cd", 48, 111, 12.800000, 110.904182, 8.53405070945);
static const Atom Cd112("Cd", 48, 112, 24.130000, 111.902757, 8.61089083613);
static const Atom Cd113("Cd", 48, 113, 12.220000, 112.904401, 8.68796708316);
static const Atom Cd114("Cd", 48, 114, 28.730000, 113.903358, 8.76483660465);
static const Atom Cd115("Cd", 48, 115, 0.000000, 114.905431, 8.84194587852);
static const Atom Cd116("Cd", 48, 116, 7.490000, 115.904755, 8.91884362518);
static const Atom Cd117("Cd", 48, 117, 0.000000, 116.907218, 8.99598291715);
static const Atom Cd118("Cd", 48, 118, 0.000000, 117.906914, 9.07290928913);
static const Atom Cd119("Cd", 48, 119, 0.000000, 118.909920, 9.15009036482);
static const Atom Cd120("Cd", 48, 120, 0.000000, 119.909851, 9.22703481999);
static const Atom Cd121("Cd", 48, 121, 0.000000, 120.912980, 9.30422536051);
static const Atom Cd122("Cd", 48, 122, 0.000000, 121.913500, 9.38121513909);
static const Atom Cd123("Cd", 48, 123, 0.000000, 122.917000, 9.45843422797);
static const Atom Cd124("Cd", 48, 124, 0.000000, 123.917650, 9.53543401002);
static const Atom Cd125("Cd", 48, 125, 0.000000, 124.921250, 9.61266079387);
static const Atom Cd126("Cd", 48, 126, 0.000000, 125.922350, 9.68969520332);
static const Atom Cd127("Cd", 48, 127, 0.000000, 126.926430, 9.76695892306);
static const Atom In("In", 49, 0, 0.000000, 114.818000, 7.31);
static const Atom In128("In", 49, 128, 0.000000, 127.920170, 8.14416243707);
static const Atom In129("In", 49, 129, 0.000000, 128.921660, 8.2079232751);
static const Atom In130("In", 49, 130, 0.000000, 129.924850, 8.27179234528);
static const Atom In131("In", 49, 131, 0.000000, 130.926770, 8.33558055967);
static const Atom In132("In", 49, 132, 0.000000, 131.932920, 8.39963808114);
static const Atom In133("In", 49, 133, 0.000000, 132.938340, 8.46364912644);
static const Atom In134("In", 49, 134, 0.000000, 133.944660, 8.52771747113);
static const Atom In98("In", 49, 98, 0.000000, 97.942240, 6.23558827362);
static const Atom In99("In", 49, 99, 0.000000, 98.934610, 6.29876847794);
static const Atom In100("In", 49, 100, 0.000000, 99.931150, 6.36221416938);
static const Atom In101("In", 49, 101, 0.000000, 100.926560, 6.42558791827);
static const Atom In102("In", 49, 102, 0.000000, 101.924710, 6.48913611193);
static const Atom In103("In", 49, 103, 0.000000, 102.919914, 6.55249674563);
static const Atom In104("In", 49, 104, 0.000000, 103.918340, 6.6160625111);
static const Atom In105("In", 49, 105, 0.000000, 104.914673, 6.67949502369);
static const Atom In106("In", 49, 106, 0.000000, 105.913461, 6.74308383625);
static const Atom In107("In", 49, 107, 0.000000, 106.910292, 6.80654805449);
static const Atom In108("In", 49, 108, 0.000000, 107.909720, 6.87017761327);
static const Atom In109("In", 49, 109, 0.000000, 108.907154, 6.93368022209);
static const Atom In110("In", 49, 110, 0.000000, 109.907169, 6.9973471528);
static const Atom In111("In", 49, 111, 0.000000, 110.905111, 7.06088210394);
static const Atom In112("In", 49, 112, 0.000000, 111.905533, 7.1245749467);
static const Atom In113("In", 49, 113, 4.290000, 112.904061, 7.1881472061);
static const Atom In114("In", 49, 114, 0.000000, 113.904917, 7.25186767989);
static const Atom In115("In", 49, 115, 95.710000, 114.903878, 7.31546750666);
static const Atom In116("In", 49, 116, 0.000000, 115.905260, 7.37922146876);
static const Atom In117("In", 49, 117, 0.000000, 116.904516, 7.44284007699);
static const Atom In118("In", 49, 118, 0.000000, 117.906355, 7.50662313444);
static const Atom In119("In", 49, 119, 0.000000, 118.905846, 7.57025670418);
static const Atom In120("In", 49, 120, 0.000000, 119.907960, 7.63405726977);
static const Atom In121("In", 49, 121, 0.000000, 120.907849, 7.69771617856);
static const Atom In122("In", 49, 122, 0.000000, 121.910280, 7.76153692627);
static const Atom In123("In", 49, 123, 0.000000, 122.910439, 7.82521302487);
static const Atom In124("In", 49, 124, 0.000000, 123.913180, 7.88905350903);
static const Atom In125("In", 49, 125, 0.000000, 124.913600, 7.95274622446);
static const Atom In126("In", 49, 126, 0.000000, 125.916460, 8.01659428487);
static const Atom In127("In", 49, 127, 0.000000, 126.917340, 8.08031628664);
static const Atom Sn("Sn", 50, 0, 0.000000, 118.710000, 7.31);
static const Atom Sn128("Sn", 50, 128, 0.000000, 127.910535, 7.8765564051);
static const Atom Sn129("Sn", 50, 129, 0.000000, 128.913440, 7.93831392806);
static const Atom Sn130("Sn", 50, 130, 0.000000, 129.913850, 7.99991781232);
static const Atom Sn131("Sn", 50, 131, 0.000000, 130.916920, 8.06168549575);
static const Atom Sn132("Sn", 50, 132, 0.000000, 131.917744, 8.12331487356);
static const Atom Sn133("Sn", 50, 133, 0.000000, 132.923810, 8.18526704658);
static const Atom Sn134("Sn", 50, 134, 0.000000, 133.928460, 8.24713202426);
static const Atom Sn135("Sn", 50, 135, 0.000000, 134.934730, 8.30909675933);
static const Atom Sn136("Sn", 50, 136, 0.000000, 135.939340, 8.37095927386);
static const Atom Sn137("Sn", 50, 137, 0.000000, 136.945790, 8.43293509308);
static const Atom Sn100("Sn", 50, 100, 0.000000, 99.938950, 6.15410432567);
static const Atom Sn101("Sn", 50, 101, 0.000000, 100.936060, 6.21550500042);
static const Atom Sn102("Sn", 50, 102, 0.000000, 101.930490, 6.27674064443);
static const Atom Sn103("Sn", 50, 103, 0.000000, 102.928130, 6.33817395586);
static const Atom Sn104("Sn", 50, 104, 0.000000, 103.923190, 6.39944839441);
static const Atom Sn105("Sn", 50, 105, 0.000000, 104.921390, 6.46091618987);
static const Atom Sn106("Sn", 50, 106, 0.000000, 105.916880, 6.52221710724);
static const Atom Sn107("Sn", 50, 107, 0.000000, 106.915670, 6.5837212341);
static const Atom Sn108("Sn", 50, 108, 0.000000, 107.911970, 6.64507203016);
static const Atom Sn109("Sn", 50, 109, 0.000000, 108.911287, 6.70660860896);
static const Atom Sn110("Sn", 50, 110, 0.000000, 109.907853, 6.76797578494);
static const Atom Sn111("Sn", 50, 111, 0.000000, 110.907735, 6.82954715567);
static const Atom Sn112("Sn", 50, 112, 0.970000, 111.904821, 6.89094635254);
static const Atom Sn113("Sn", 50, 113, 0.000000, 112.905173, 6.95254666523);
static const Atom Sn114("Sn", 50, 114, 0.660000, 113.902782, 7.01397806773);
static const Atom Sn115("Sn", 50, 115, 0.340000, 114.903346, 7.07559143509);
static const Atom Sn116("Sn", 50, 116, 14.540000, 115.901744, 7.13707142313);
static const Atom Sn117("Sn", 50, 117, 7.680000, 116.902954, 7.1987245703);
static const Atom Sn118("Sn", 50, 118, 24.220000, 117.901606, 7.26022019931);
static const Atom Sn119("Sn", 50, 119, 8.590000, 118.903309, 7.32190370474);
static const Atom Sn120("Sn", 50, 120, 32.580000, 119.902197, 7.38341384168);
static const Atom Sn121("Sn", 50, 121, 0.000000, 120.904237, 7.44511811759);
static const Atom Sn122("Sn", 50, 122, 4.630000, 121.903440, 7.50664768875);
static const Atom Sn123("Sn", 50, 123, 0.000000, 122.905722, 7.56836683589);
static const Atom Sn124("Sn", 50, 124, 5.790000, 123.905275, 7.62991792878);
static const Atom Sn125("Sn", 50, 125, 0.000000, 124.907785, 7.69165114665);
static const Atom Sn126("Sn", 50, 126, 0.000000, 125.907654, 7.75322172302);
static const Atom Sn127("Sn", 50, 127, 0.000000, 126.910351, 7.81496643762);
static const Atom Sb("Sb", 51, 0, 0.000000, 121.760000, 6.691);
static const Atom Sb128("Sb", 51, 128, 0.000000, 127.909167, 7.02891127133);
static const Atom Sb129("Sb", 51, 129, 0.000000, 128.909150, 7.08386270245);
static const Atom Sb130("Sb", 51, 130, 0.000000, 129.911546, 7.13894673362);
static const Atom Sb131("Sb", 51, 131, 0.000000, 130.911950, 7.19392129969);
static const Atom Sb132("Sb", 51, 132, 0.000000, 131.914413, 7.24900901267);
static const Atom Sb133("Sb", 51, 133, 0.000000, 132.915240, 7.30400682359);
static const Atom Sb134("Sb", 51, 134, 0.000000, 133.920550, 7.35925098596);
static const Atom Sb135("Sb", 51, 135, 0.000000, 134.925170, 7.41445723119);
static const Atom Sb136("Sb", 51, 136, 0.000000, 135.930660, 7.46971128499);
static const Atom Sb137("Sb", 51, 137, 0.000000, 136.935310, 7.52491917879);
static const Atom Sb138("Sb", 51, 138, 0.000000, 137.940960, 7.58018202497);
static const Atom Sb139("Sb", 51, 139, 0.000000, 138.945710, 7.63539541401);
static const Atom Sb103("Sb", 51, 103, 0.000000, 102.940120, 5.65680307917);
static const Atom Sb104("Sb", 51, 104, 0.000000, 103.936290, 5.71154497692);
static const Atom Sb105("Sb", 51, 105, 0.000000, 104.931530, 5.76623576897);
static const Atom Sb106("Sb", 51, 106, 0.000000, 105.928760, 5.82103591623);
static const Atom Sb107("Sb", 51, 107, 0.000000, 106.924150, 5.87573495113);
static const Atom Sb108("Sb", 51, 108, 0.000000, 107.922160, 5.93057796124);
static const Atom Sb109("Sb", 51, 109, 0.000000, 108.918136, 5.98530919823);
static const Atom Sb110("Sb", 51, 110, 0.000000, 109.916760, 6.04018594908);
static const Atom Sb111("Sb", 51, 111, 0.000000, 110.913210, 6.09494323349);
static const Atom Sb112("Sb", 51, 112, 0.000000, 111.912395, 6.14985081262);
static const Atom Sb113("Sb", 51, 113, 0.000000, 112.909378, 6.20463738665);
static const Atom Sb114("Sb", 51, 114, 0.000000, 113.909100, 6.2595744752);
static const Atom Sb115("Sb", 51, 115, 0.000000, 114.906599, 6.31438940464);
static const Atom Sb116("Sb", 51, 116, 0.000000, 115.906797, 6.36935265052);
static const Atom Sb117("Sb", 51, 117, 0.000000, 116.904840, 6.42419747405);
static const Atom Sb118("Sb", 51, 118, 0.000000, 117.905532, 6.47918786639);
static const Atom Sb119("Sb", 51, 119, 0.000000, 118.903946, 6.53405307725);
static const Atom Sb120("Sb", 51, 120, 0.000000, 119.905074, 6.58906742883);
static const Atom Sb121("Sb", 51, 121, 57.210000, 120.903818, 6.64395077397);
static const Atom Sb122("Sb", 51, 122, 0.000000, 121.905175, 6.69897773161);
static const Atom Sb123("Sb", 51, 123, 42.790000, 122.904216, 6.75387735914);
static const Atom Sb124("Sb", 51, 124, 0.000000, 123.905937, 6.80892434143);
static const Atom Sb125("Sb", 51, 125, 0.000000, 124.905248, 6.86383881708);
static const Atom Sb126("Sb", 51, 126, 0.000000, 125.907250, 6.91890119703);
static const Atom Sb127("Sb", 51, 127, 0.000000, 126.906915, 6.97383515329);
static const Atom Te("Te", 52, 0, 0.000000, 127.600000, 6.24);
static const Atom Te128("Te", 52, 128, 31.740000, 127.904461, 6.25488902144);
static const Atom Te129("Te", 52, 129, 0.000000, 128.906596, 6.30389623072);
static const Atom Te130("Te", 52, 130, 34.080000, 129.906223, 6.3527808015);
static const Atom Te131("Te", 52, 131, 0.000000, 130.908522, 6.4017960553);
static const Atom Te132("Te", 52, 132, 0.000000, 131.908524, 6.45069897931);
static const Atom Te133("Te", 52, 133, 0.000000, 132.910940, 6.49971994984);
static const Atom Te134("Te", 52, 134, 0.000000, 133.911540, 6.54865211285);
static const Atom Te135("Te", 52, 135, 0.000000, 134.916450, 6.59779504702);
static const Atom Te136("Te", 52, 136, 0.000000, 135.920100, 6.64687636364);
static const Atom Te137("Te", 52, 137, 0.000000, 136.925320, 6.69603445768);
static const Atom Te138("Te", 52, 138, 0.000000, 137.929220, 6.745128);
static const Atom Te139("Te", 52, 139, 0.000000, 138.934730, 6.79430027586);
static const Atom Te140("Te", 52, 140, 0.000000, 139.938700, 6.84339724138);
static const Atom Te141("Te", 52, 141, 0.000000, 140.944390, 6.89257831975);
static const Atom Te142("Te", 52, 142, 0.000000, 141.948500, 6.94168213166);
static const Atom Te106("Te", 52, 106, 0.000000, 105.937700, 5.18065241379);
static const Atom Te107("Te", 52, 107, 0.000000, 106.935040, 5.22942515361);
static const Atom Te108("Te", 52, 108, 0.000000, 107.929490, 5.27805656426);
static const Atom Te109("Te", 52, 109, 0.000000, 108.927460, 5.32686011285);
static const Atom Te110("Te", 52, 110, 0.000000, 109.922410, 5.37551597492);
static const Atom Te111("Te", 52, 111, 0.000000, 110.921120, 5.4243557116);
static const Atom Te112("Te", 52, 112, 0.000000, 111.917060, 5.47305998746);
static const Atom Te113("Te", 52, 113, 0.000000, 112.915930, 5.52190754859);
static const Atom Te114("Te", 52, 114, 0.000000, 113.912060, 5.57062111599);
static const Atom Te115("Te", 52, 115, 0.000000, 114.911580, 5.61950046395);
static const Atom Te116("Te", 52, 116, 0.000000, 115.908420, 5.66824875235);
static const Atom Te117("Te", 52, 117, 0.000000, 116.908634, 5.71716203887);
static const Atom Te118("Te", 52, 118, 0.000000, 117.905825, 5.76592749216);
static const Atom Te119("Te", 52, 119, 0.000000, 118.906408, 5.81485882382);
static const Atom Te120("Te", 52, 120, 0.090000, 119.904020, 5.8636448652);
static const Atom Te121("Te", 52, 121, 0.000000, 120.904930, 5.91259218809);
static const Atom Te122("Te", 52, 122, 2.550000, 121.903047, 5.96140293028);
static const Atom Te123("Te", 52, 123, 0.890000, 122.904273, 6.01036570157);
static const Atom Te124("Te", 52, 124, 4.740000, 123.902820, 6.05919744263);
static const Atom Te125("Te", 52, 125, 7.070000, 124.904425, 6.10817876276);
static const Atom Te126("Te", 52, 126, 18.840000, 125.903306, 6.15702685204);
static const Atom Te127("Te", 52, 127, 0.000000, 126.905217, 6.2060231511);
static const Atom I("I", 53, 0, 0.000000, 126.904470, 4.93);
static const Atom I128("I", 53, 128, 0.000000, 127.905805, 4.96889998162);
static const Atom I129("I", 53, 129, 0.000000, 128.904987, 5.00771632323);
static const Atom I130("I", 53, 130, 0.000000, 129.906674, 5.04662997939);
static const Atom I131("I", 53, 131, 0.000000, 130.906124, 5.08545674007);
static const Atom I132("I", 53, 132, 0.000000, 131.907995, 5.1243775365);
static const Atom I133("I", 53, 133, 0.000000, 132.907806, 5.16321831359);
static const Atom I134("I", 53, 134, 0.000000, 133.909877, 5.20214688742);
static const Atom I135("I", 53, 135, 0.000000, 134.910050, 5.24100172752);
static const Atom I136("I", 53, 136, 0.000000, 135.914660, 5.28002893673);
static const Atom I137("I", 53, 137, 0.000000, 136.917873, 5.31900187511);
static const Atom I138("I", 53, 138, 0.000000, 137.922380, 5.35802508296);
static const Atom I139("I", 53, 139, 0.000000, 138.926090, 5.39701732886);
static const Atom I140("I", 53, 140, 0.000000, 139.931210, 5.43606435061);
static const Atom I141("I", 53, 141, 0.000000, 140.934830, 5.47505310018);
static const Atom I142("I", 53, 142, 0.000000, 141.940180, 5.51410905699);
static const Atom I143("I", 53, 143, 0.000000, 142.944070, 5.55310829555);
static const Atom I144("I", 53, 144, 0.000000, 143.949610, 5.59217163351);
static const Atom I108("I", 53, 108, 0.000000, 107.943290, 4.19339381584);
static const Atom I109("I", 53, 109, 0.000000, 108.938190, 4.2320438098);
static const Atom I110("I", 53, 110, 0.000000, 109.935210, 4.27077616179);
static const Atom I111("I", 53, 111, 0.000000, 110.930280, 4.30943275993);
static const Atom I112("I", 53, 112, 0.000000, 111.927970, 4.34819114015);
static const Atom I113("I", 53, 113, 0.000000, 112.923640, 4.38687104717);
static const Atom I114("I", 53, 114, 0.000000, 113.921850, 4.42564962842);
static const Atom I115("I", 53, 115, 0.000000, 114.917920, 4.46434507468);
static const Atom I116("I", 53, 116, 0.000000, 115.916740, 4.50314735328);
static const Atom I117("I", 53, 117, 0.000000, 116.913650, 4.54187543197);
static const Atom I118("I", 53, 118, 0.000000, 117.913380, 4.58071306235);
static const Atom I119("I", 53, 119, 0.000000, 118.910180, 4.61943686775);
static const Atom I120("I", 53, 120, 0.000000, 119.910048, 4.65827985917);
static const Atom I121("I", 53, 121, 0.000000, 120.907366, 4.69702378789);
static const Atom I122("I", 53, 122, 0.000000, 121.907592, 4.73588068695);
static const Atom I123("I", 53, 123, 0.000000, 122.905598, 4.77465134317);
static const Atom I124("I", 53, 124, 0.000000, 123.906211, 4.81352329198);
static const Atom I125("I", 53, 125, 0.000000, 124.904624, 4.85230974774);
static const Atom I126("I", 53, 126, 0.000000, 125.905619, 4.89119651711);
static const Atom I127("I", 53, 127, 100.000000, 126.904468, 4.9299999223);
static const Atom Xe("Xe", 54, 0, 0.000000, 131.293000, 3.52);
static const Atom Xe128("Xe", 54, 128, 1.920000, 127.903530, 3.42912742498);
static const Atom Xe129("Xe", 54, 129, 26.440000, 128.904779, 3.45597117775);
static const Atom Xe130("Xe", 54, 130, 4.080000, 129.903508, 3.48274734988);
static const Atom Xe131("Xe", 54, 131, 21.180000, 130.905082, 3.5095998133);
static const Atom Xe132("Xe", 54, 132, 26.890000, 131.904155, 3.53638521353);
static const Atom Xe133("Xe", 54, 133, 0.000000, 132.905906, 3.56324243577);
static const Atom Xe134("Xe", 54, 134, 10.440000, 133.905394, 3.59003898639);
static const Atom Xe135("Xe", 54, 135, 0.000000, 134.907207, 3.61689784406);
static const Atom Xe136("Xe", 54, 136, 8.870000, 135.907220, 3.64370845666);
static const Atom Xe137("Xe", 54, 137, 0.000000, 136.911563, 3.6706351577);
static const Atom Xe138("Xe", 54, 138, 0.000000, 137.913990, 3.69751049028);
static const Atom Xe139("Xe", 54, 139, 0.000000, 138.918787, 3.72444936318);
static const Atom Xe140("Xe", 54, 140, 0.000000, 139.921640, 3.75133611693);
static const Atom Xe141("Xe", 54, 141, 0.000000, 140.926650, 3.77828070042);
static const Atom Xe142("Xe", 54, 142, 0.000000, 141.929700, 3.80517273579);
static const Atom Xe143("Xe", 54, 143, 0.000000, 142.934890, 3.83212214513);
static const Atom Xe144("Xe", 54, 144, 0.000000, 143.938230, 3.85902195547);
static const Atom Xe145("Xe", 54, 145, 0.000000, 144.943670, 3.88597806738);
static const Atom Xe146("Xe", 54, 146, 0.000000, 145.947300, 3.9128856527);
static const Atom Xe147("Xe", 54, 147, 0.000000, 146.953010, 3.93984900337);
static const Atom Xe110("Xe", 54, 110, 0.000000, 109.944480, 2.94764054138);
static const Atom Xe111("Xe", 54, 111, 0.000000, 110.941630, 2.9743743962);
static const Atom Xe112("Xe", 54, 112, 0.000000, 111.935670, 3.00102487109);
static const Atom Xe113("Xe", 54, 113, 0.000000, 112.933380, 3.02777373965);
static const Atom Xe114("Xe", 54, 114, 0.000000, 113.928150, 3.05444378604);
static const Atom Xe115("Xe", 54, 115, 0.000000, 114.926540, 3.08121088558);
static const Atom Xe116("Xe", 54, 116, 0.000000, 115.921740, 3.10789246037);
static const Atom Xe117("Xe", 54, 117, 0.000000, 116.920560, 3.13467108833);
static const Atom Xe118("Xe", 54, 118, 0.000000, 117.916570, 3.16137437944);
static const Atom Xe119("Xe", 54, 119, 0.000000, 118.915550, 3.18815729704);
static const Atom Xe120("Xe", 54, 120, 0.000000, 119.912150, 3.21487640621);
static const Atom Xe121("Xe", 54, 121, 0.000000, 120.911386, 3.24166618723);
static const Atom Xe122("Xe", 54, 122, 0.000000, 121.908550, 3.26840041739);
static const Atom Xe123("Xe", 54, 123, 0.000000, 122.908471, 3.29520856344);
static const Atom Xe124("Xe", 54, 124, 0.090000, 123.905896, 3.32194978572);
static const Atom Xe125("Xe", 54, 125, 0.000000, 124.906398, 3.34877351926);
static const Atom Xe126("Xe", 54, 126, 0.090000, 125.904269, 3.37552669891);
static const Atom Xe127("Xe", 54, 127, 0.000000, 126.905180, 3.40236138713);
static const Atom Cs("Cs", 55, 0, 0.000000, 132.905450, 1.873);
static const Atom Cs128("Cs", 55, 128, 0.000000, 127.907748, 1.8025687585);
static const Atom Cs129("Cs", 55, 129, 0.000000, 128.906063, 1.81663773757);
static const Atom Cs130("Cs", 55, 130, 0.000000, 129.906706, 1.83073952451);
static const Atom Cs131("Cs", 55, 131, 0.000000, 130.905460, 1.84481469029);
static const Atom Cs132("Cs", 55, 132, 0.000000, 131.906430, 1.85892108555);
static const Atom Cs133("Cs", 55, 133, 100.000000, 132.905447, 1.87299995772);
static const Atom Cs134("Cs", 55, 134, 0.000000, 133.906713, 1.88711052443);
static const Atom Cs135("Cs", 55, 135, 0.000000, 134.905972, 1.90119280704);
static const Atom Cs136("Cs", 55, 136, 0.000000, 135.907306, 1.91530433205);
static const Atom Cs137("Cs", 55, 137, 0.000000, 136.907084, 1.92939392878);
static const Atom Cs138("Cs", 55, 138, 0.000000, 137.911011, 1.94354199623);
static const Atom Cs139("Cs", 55, 139, 0.000000, 138.913358, 1.95766779717);
static const Atom Cs140("Cs", 55, 140, 0.000000, 139.917277, 1.97181575188);
static const Atom Cs141("Cs", 55, 141, 0.000000, 140.920044, 1.98594747177);
static const Atom Cs142("Cs", 55, 142, 0.000000, 141.924292, 2.00010006298);
static const Atom Cs143("Cs", 55, 143, 0.000000, 142.927330, 2.014235602);
static const Atom Cs144("Cs", 55, 144, 0.000000, 143.932030, 2.02839456313);
static const Atom Cs145("Cs", 55, 145, 0.000000, 144.935390, 2.04253464);
static const Atom Cs146("Cs", 55, 146, 0.000000, 145.940160, 2.05669458762);
static const Atom Cs147("Cs", 55, 147, 0.000000, 146.943860, 2.07083945602);
static const Atom Cs148("Cs", 55, 148, 0.000000, 147.948900, 2.08500320867);
static const Atom Cs149("Cs", 55, 149, 0.000000, 148.952720, 2.0991497682);
static const Atom Cs150("Cs", 55, 150, 0.000000, 149.957970, 2.11331648032);
static const Atom Cs151("Cs", 55, 151, 0.000000, 150.962000, 2.12746599933);
static const Atom Cs112("Cs", 55, 112, 0.000000, 111.950330, 1.57768524985);
static const Atom Cs113("Cs", 55, 113, 0.000000, 112.944540, 1.59169637829);
static const Atom Cs114("Cs", 55, 114, 0.000000, 113.941420, 1.6057451343);
static const Atom Cs115("Cs", 55, 115, 0.000000, 114.935940, 1.61976063149);
static const Atom Cs116("Cs", 55, 116, 0.000000, 115.932910, 1.63381065585);
static const Atom Cs117("Cs", 55, 117, 0.000000, 116.928640, 1.64784320523);
static const Atom Cs118("Cs", 55, 118, 0.000000, 117.926555, 1.66190654721);
static const Atom Cs119("Cs", 55, 119, 0.000000, 118.922371, 1.67594030857);
static const Atom Cs120("Cs", 55, 120, 0.000000, 119.920678, 1.6900091749);
static const Atom Cs121("Cs", 55, 121, 0.000000, 120.917184, 1.70405266023);
static const Atom Cs122("Cs", 55, 122, 0.000000, 121.916122, 1.71813041908);
static const Atom Cs123("Cs", 55, 123, 0.000000, 122.912990, 1.73217900598);
static const Atom Cs124("Cs", 55, 124, 0.000000, 123.912246, 1.74626124631);
static const Atom Cs125("Cs", 55, 125, 0.000000, 124.909725, 1.76031844386);
static const Atom Cs126("Cs", 55, 126, 0.000000, 125.909448, 1.7744072655);
static const Atom Cs127("Cs", 55, 127, 0.000000, 126.907418, 1.78847138258);
static const Atom Ba("Ba", 56, 0, 0.000000, 137.327000, 3.5);
static const Atom Ba128("Ba", 56, 128, 0.000000, 127.908309, 3.25994947461);
static const Atom Ba129("Ba", 56, 129, 0.000000, 128.908674, 3.28544538947);
static const Atom Ba130("Ba", 56, 130, 0.106000, 129.906310, 3.31087175137);
static const Atom Ba131("Ba", 56, 131, 0.000000, 130.906931, 3.3363741908);
static const Atom Ba132("Ba", 56, 132, 0.101000, 131.905056, 3.36181301565);
static const Atom Ba133("Ba", 56, 133, 0.000000, 132.906002, 3.38732373823);
static const Atom Ba134("Ba", 56, 134, 2.417000, 133.904503, 3.41277214605);
static const Atom Ba135("Ba", 56, 135, 6.592000, 134.905683, 3.43828883249);
static const Atom Ba136("Ba", 56, 136, 7.854000, 135.904570, 3.46374707814);
static const Atom Ba137("Ba", 56, 137, 11.232000, 136.905821, 3.48926557414);
static const Atom Ba138("Ba", 56, 138, 71.698000, 137.905241, 3.51473740415);
static const Atom Ba139("Ba", 56, 139, 0.000000, 138.908835, 3.54031561528);
static const Atom Ba140("Ba", 56, 140, 0.000000, 139.910599, 3.56584718591);
static const Atom Ba141("Ba", 56, 141, 0.000000, 140.914406, 3.59143082569);
static const Atom Ba142("Ba", 56, 142, 0.000000, 141.916448, 3.6169694816);
static const Atom Ba143("Ba", 56, 143, 0.000000, 142.920617, 3.64256234754);
static const Atom Ba144("Ba", 56, 144, 0.000000, 143.922940, 3.66810816518);
static const Atom Ba145("Ba", 56, 145, 0.000000, 144.926920, 3.69369621415);
static const Atom Ba146("Ba", 56, 146, 0.000000, 145.930110, 3.71926412869);
static const Atom Ba147("Ba", 56, 147, 0.000000, 146.933990, 3.74484962899);
static const Atom Ba148("Ba", 56, 148, 0.000000, 147.937680, 3.77043028683);
static const Atom Ba149("Ba", 56, 149, 0.000000, 148.942460, 3.79603872509);
static const Atom Ba150("Ba", 56, 150, 0.000000, 149.945620, 3.82160587503);
static const Atom Ba151("Ba", 56, 151, 0.000000, 150.950700, 3.84722195927);
static const Atom Ba152("Ba", 56, 152, 0.000000, 151.954160, 3.87279675519);
static const Atom Ba153("Ba", 56, 153, 0.000000, 152.959610, 3.89842226947);
static const Atom Ba114("Ba", 56, 114, 0.000000, 113.950940, 2.90422342292);
static const Atom Ba115("Ba", 56, 115, 0.000000, 114.947710, 2.92962771341);
static const Atom Ba116("Ba", 56, 116, 0.000000, 115.941680, 2.95496064139);
static const Atom Ba117("Ba", 56, 117, 0.000000, 116.938860, 2.98037538139);
static const Atom Ba118("Ba", 56, 118, 0.000000, 117.933440, 3.0057238562);
static const Atom Ba119("Ba", 56, 119, 0.000000, 118.931050, 3.03114955544);
static const Atom Ba120("Ba", 56, 120, 0.000000, 119.926050, 3.05650873463);
static const Atom Ba121("Ba", 56, 121, 0.000000, 120.924490, 3.08195558776);
static const Atom Ba122("Ba", 56, 122, 0.000000, 121.920260, 3.10733439163);
static const Atom Ba123("Ba", 56, 123, 0.000000, 122.918850, 3.13278506776);
static const Atom Ba124("Ba", 56, 124, 0.000000, 123.915088, 3.15817579937);
static const Atom Ba125("Ba", 56, 125, 0.000000, 124.914620, 3.18365048388);
static const Atom Ba126("Ba", 56, 126, 0.000000, 125.911244, 3.20905105333);
static const Atom Ba127("Ba", 56, 127, 0.000000, 126.911120, 3.23453450523);
static const Atom La("La", 57, 0, 0.000000, 138.905500, 6.145);
static const Atom La128("La", 57, 128, 0.000000, 127.915450, 5.6588143756);
static const Atom La129("La", 57, 129, 0.000000, 128.912670, 5.70293010104);
static const Atom La130("La", 57, 130, 0.000000, 129.912320, 5.74715332654);
static const Atom La131("La", 57, 131, 0.000000, 130.910110, 5.79129426805);
static const Atom La132("La", 57, 132, 0.000000, 131.910110, 5.8355329771);
static const Atom La133("La", 57, 133, 0.000000, 132.908400, 5.87969603795);
static const Atom La134("La", 57, 134, 0.000000, 133.908490, 5.92393872849);
static const Atom La135("La", 57, 135, 0.000000, 134.906971, 5.96811023894);
static const Atom La136("La", 57, 136, 0.000000, 135.907650, 6.01237898607);
static const Atom La137("La", 57, 137, 0.000000, 136.906470, 6.05656549345);
static const Atom La138("La", 57, 138, 0.090000, 137.907107, 6.10083238256);
static const Atom La139("La", 57, 139, 99.910000, 138.906348, 6.14503751443);
static const Atom La140("La", 57, 140, 0.000000, 139.909473, 6.18941446944);
static const Atom La141("La", 57, 141, 0.000000, 140.910957, 6.23371882874);
static const Atom La142("La", 57, 142, 0.000000, 141.914074, 6.27809542984);
static const Atom La143("La", 57, 143, 0.000000, 142.916059, 6.32242195273);
static const Atom La144("La", 57, 144, 0.000000, 143.919590, 6.36681686866);
static const Atom La145("La", 57, 145, 0.000000, 144.921640, 6.41114626707);
static const Atom La146("La", 57, 146, 0.000000, 145.925700, 6.45556458528);
static const Atom La147("La", 57, 147, 0.000000, 146.927820, 6.49989708039);
static const Atom La148("La", 57, 148, 0.000000, 147.932190, 6.5443291126);
static const Atom La149("La", 57, 149, 0.000000, 148.934370, 6.58866426203);
static const Atom La150("La", 57, 150, 0.000000, 149.938570, 6.63308877366);
static const Atom La151("La", 57, 151, 0.000000, 150.941560, 6.67745975645);
static const Atom La152("La", 57, 152, 0.000000, 151.946110, 6.72189975163);
static const Atom La153("La", 57, 153, 0.000000, 152.949450, 6.76628621797);
static const Atom La154("La", 57, 154, 0.000000, 153.954400, 6.81074390863);
static const Atom La155("La", 57, 155, 0.000000, 154.958130, 6.85514762806);
static const Atom La117("La", 57, 117, 0.000000, 116.950010, 5.17371746583);
static const Atom La118("La", 57, 118, 0.000000, 117.946570, 5.21780399372);
static const Atom La119("La", 57, 119, 0.000000, 118.940990, 5.26179585078);
static const Atom La120("La", 57, 120, 0.000000, 119.938070, 5.3059053828);
static const Atom La121("La", 57, 121, 0.000000, 120.933010, 5.34992024398);
static const Atom La122("La", 57, 122, 0.000000, 121.930710, 5.394057204);
static const Atom La123("La", 57, 123, 0.000000, 122.926240, 5.43809816602);
static const Atom La124("La", 57, 124, 0.000000, 123.924530, 5.48226122688);
static const Atom La125("La", 57, 125, 0.000000, 124.920670, 5.52632917451);
static const Atom La126("La", 57, 126, 0.000000, 125.919370, 5.57051037324);
static const Atom La127("La", 57, 127, 0.000000, 126.916160, 5.61460707603);
static const Atom Ce("Ce", 58, 0, 0.000000, 140.116000, 6.77);
static const Atom Ce128("Ce", 58, 128, 0.000000, 127.918870, 6.18066994419);
static const Atom Ce129("Ce", 58, 129, 0.000000, 128.918090, 6.22894936553);
static const Atom Ce130("Ce", 58, 130, 0.000000, 129.914690, 6.27710219604);
static const Atom Ce131("Ce", 58, 131, 0.000000, 130.914420, 6.3254062591);
static const Atom Ce132("Ce", 58, 132, 0.000000, 131.911490, 6.37358179865);
static const Atom Ce133("Ce", 58, 133, 0.000000, 132.911550, 6.42190180636);
static const Atom Ce134("Ce", 58, 134, 0.000000, 133.909030, 6.47009715593);
static const Atom Ce135("Ce", 58, 135, 0.000000, 134.909146, 6.51841986939);
static const Atom Ce136("Ce", 58, 136, 0.185000, 135.907140, 6.56664005396);
static const Atom Ce137("Ce", 58, 137, 0.000000, 136.907780, 6.61498808559);
static const Atom Ce138("Ce", 58, 138, 0.251000, 137.905986, 6.66321851337);
static const Atom Ce139("Ce", 58, 139, 0.000000, 138.906647, 6.71156755966);
static const Atom Ce140("Ce", 58, 140, 88.450000, 139.905434, 6.75982605969);
static const Atom Ce141("Ce", 58, 141, 0.000000, 140.908271, 6.80828024401);
static const Atom Ce142("Ce", 58, 142, 11.114000, 141.909240, 6.85664417197);
static const Atom Ce143("Ce", 58, 143, 0.000000, 142.912381, 6.90511304469);
static const Atom Ce144("Ce", 58, 144, 0.000000, 143.913643, 6.95349112956);
static const Atom Ce145("Ce", 58, 145, 0.000000, 144.917230, 7.00198155171);
static const Atom Ce146("Ce", 58, 146, 0.000000, 145.918690, 7.05036920337);
static const Atom Ce147("Ce", 58, 147, 0.000000, 146.922510, 7.09887088341);
static const Atom Ce148("Ce", 58, 148, 0.000000, 147.924390, 7.14727882826);
static const Atom Ce149("Ce", 58, 149, 0.000000, 148.928290, 7.19578437366);
static const Atom Ce150("Ce", 58, 150, 0.000000, 149.930230, 7.24419521753);
static const Atom Ce151("Ce", 58, 151, 0.000000, 150.934040, 7.2926964144);
static const Atom Ce152("Ce", 58, 152, 0.000000, 151.936380, 7.34112658512);
static const Atom Ce153("Ce", 58, 153, 0.000000, 152.940580, 7.38964662565);
static const Atom Ce154("Ce", 58, 154, 0.000000, 153.943320, 7.43809612321);
static const Atom Ce155("Ce", 58, 155, 0.000000, 154.948040, 7.48664128865);
static const Atom Ce156("Ce", 58, 156, 0.000000, 155.951260, 7.53511397842);
static const Atom Ce157("Ce", 58, 157, 0.000000, 156.956340, 7.58367653801);
static const Atom Ce119("Ce", 58, 119, 0.000000, 118.952760, 5.74745343287);
static const Atom Ce120("Ce", 58, 120, 0.000000, 119.946640, 5.79547484085);
static const Atom Ce121("Ce", 58, 121, 0.000000, 120.943670, 5.84364844771);
static const Atom Ce122("Ce", 58, 122, 0.000000, 121.938010, 5.89169208156);
static const Atom Ce123("Ce", 58, 123, 0.000000, 122.935510, 5.93988839747);
static const Atom Ce124("Ce", 58, 124, 0.000000, 123.930520, 5.98796440378);
static const Atom Ce125("Ce", 58, 125, 0.000000, 124.928540, 6.03618584459);
static const Atom Ce126("Ce", 58, 126, 0.000000, 125.924100, 6.0842884253);
static const Atom Ce127("Ce", 58, 127, 0.000000, 126.922750, 6.13254030589);
static const Atom Pr("Pr", 59, 0, 0.000000, 140.907650, 6.773);
static const Atom Pr128("Pr", 59, 128, 0.000000, 127.928800, 6.14914635508);
static const Atom Pr129("Pr", 59, 129, 0.000000, 128.924860, 6.19702391446);
static const Atom Pr130("Pr", 59, 130, 0.000000, 129.923380, 6.24501971852);
static const Atom Pr131("Pr", 59, 131, 0.000000, 130.920060, 6.2929270794);
static const Atom Pr132("Pr", 59, 132, 0.000000, 131.919120, 6.34094883961);
static const Atom Pr133("Pr", 59, 133, 0.000000, 132.916200, 6.38887542727);
static const Atom Pr134("Pr", 59, 134, 0.000000, 133.915670, 6.43691689493);
static const Atom Pr135("Pr", 59, 135, 0.000000, 134.913140, 6.4848622287);
static const Atom Pr136("Pr", 59, 136, 0.000000, 135.912650, 6.53290561903);
static const Atom Pr137("Pr", 59, 137, 0.000000, 136.910680, 6.58087787029);
static const Atom Pr138("Pr", 59, 138, 0.000000, 137.910749, 6.62894813005);
static const Atom Pr139("Pr", 59, 139, 0.000000, 138.908932, 6.67692773555);
static const Atom Pr140("Pr", 59, 140, 0.000000, 139.909071, 6.72500135999);
static const Atom Pr141("Pr", 59, 141, 100.000000, 140.907648, 6.77299990387);
static const Atom Pr142("Pr", 59, 142, 0.000000, 141.910040, 6.82118182313);
static const Atom Pr143("Pr", 59, 143, 0.000000, 142.910812, 6.86928587395);
static const Atom Pr144("Pr", 59, 144, 0.000000, 143.913301, 6.9174724557);
static const Atom Pr145("Pr", 59, 145, 0.000000, 144.914507, 6.96559736757);
static const Atom Pr146("Pr", 59, 146, 0.000000, 145.917590, 7.0138125011);
static const Atom Pr147("Pr", 59, 147, 0.000000, 146.918980, 7.06194625728);
static const Atom Pr148("Pr", 59, 148, 0.000000, 147.922180, 7.11016701464);
static const Atom Pr149("Pr", 59, 149, 0.000000, 148.923791, 7.15831139362);
static const Atom Pr150("Pr", 59, 150, 0.000000, 149.927000, 7.20653258358);
static const Atom Pr151("Pr", 59, 151, 0.000000, 150.928230, 7.25465864905);
static const Atom Pr152("Pr", 59, 152, 0.000000, 151.931600, 7.30288757779);
static const Atom Pr153("Pr", 59, 153, 0.000000, 152.933650, 7.35105305816);
static const Atom Pr154("Pr", 59, 154, 0.000000, 153.937390, 7.39929977166);
static const Atom Pr155("Pr", 59, 155, 0.000000, 154.939990, 7.44749168885);
static const Atom Pr156("Pr", 59, 156, 0.000000, 155.944120, 7.49575714846);
static const Atom Pr157("Pr", 59, 157, 0.000000, 156.947170, 7.54397069577);
static const Atom Pr158("Pr", 59, 158, 0.000000, 157.951780, 7.59225922752);
static const Atom Pr159("Pr", 59, 159, 0.000000, 158.955230, 7.64049200161);
static const Atom Pr121("Pr", 59, 121, 0.000000, 120.955360, 5.81395441113);
static const Atom Pr122("Pr", 59, 122, 0.000000, 121.951650, 5.86184302591);
static const Atom Pr123("Pr", 59, 123, 0.000000, 122.945960, 5.90963646814);
static const Atom Pr124("Pr", 59, 124, 0.000000, 123.942960, 5.95755921045);
static const Atom Pr125("Pr", 59, 125, 0.000000, 124.937830, 6.00537957017);
static const Atom Pr126("Pr", 59, 126, 0.000000, 125.935310, 6.0533253846);
static const Atom Pr127("Pr", 59, 127, 0.000000, 126.930830, 6.10117698784);
static const Atom Nd("Nd", 60, 0, 0.000000, 144.240000, 7.008);
static const Atom Nd128("Nd", 60, 128, 0.000000, 127.935390, 6.21582926456);
static const Atom Nd129("Nd", 60, 129, 0.000000, 128.933250, 6.2643109817);
static const Atom Nd130("Nd", 60, 130, 0.000000, 129.928780, 6.31267949418);
static const Atom Nd131("Nd", 60, 131, 0.000000, 130.927100, 6.36118356073);
static const Atom Nd132("Nd", 60, 132, 0.000000, 131.923120, 6.4095758802);
static const Atom Nd133("Nd", 60, 133, 0.000000, 132.922210, 6.45811735774);
static const Atom Nd134("Nd", 60, 134, 0.000000, 133.918650, 6.50653008319);
static const Atom Nd135("Nd", 60, 135, 0.000000, 134.918240, 6.55509585358);
static const Atom Nd136("Nd", 60, 136, 0.000000, 135.915020, 6.60352509817);
static const Atom Nd137("Nd", 60, 137, 0.000000, 136.914640, 6.65209232612);
static const Atom Nd138("Nd", 60, 138, 0.000000, 137.911930, 6.70054634942);
static const Atom Nd139("Nd", 60, 139, 0.000000, 138.911920, 6.74913155408);
static const Atom Nd140("Nd", 60, 140, 0.000000, 139.909310, 6.79759043594);
static const Atom Nd141("Nd", 60, 141, 0.000000, 140.909605, 6.84619045923);
static const Atom Nd142("Nd", 60, 142, 27.200000, 141.907719, 6.89468451714);
static const Atom Nd143("Nd", 60, 143, 12.200000, 142.909810, 6.94337180033);
static const Atom Nd144("Nd", 60, 144, 23.800000, 143.910083, 6.99197075474);
static const Atom Nd145("Nd", 60, 145, 8.300000, 144.912569, 7.04067722928);
static const Atom Nd146("Nd", 60, 146, 17.200000, 145.913112, 7.08928930183);
static const Atom Nd147("Nd", 60, 147, 0.000000, 146.916096, 7.13801997205);
static const Atom Nd148("Nd", 60, 148, 5.700000, 147.916889, 7.18664419101);
static const Atom Nd149("Nd", 60, 149, 0.000000, 148.920144, 7.23538802795);
static const Atom Nd150("Nd", 60, 150, 5.600000, 149.920887, 7.28400981764);
static const Atom Nd151("Nd", 60, 151, 0.000000, 150.923825, 7.33273825291);
static const Atom Nd152("Nd", 60, 152, 0.000000, 151.924680, 7.38136548419);
static const Atom Nd153("Nd", 60, 153, 0.000000, 152.927695, 7.43009766057);
static const Atom Nd154("Nd", 60, 154, 0.000000, 153.929480, 7.47877007654);
static const Atom Nd155("Nd", 60, 155, 0.000000, 154.932630, 7.52750881198);
static const Atom Nd156("Nd", 60, 156, 0.000000, 155.935200, 7.57621936772);
static const Atom Nd157("Nd", 60, 157, 0.000000, 156.939270, 7.625002802);
static const Atom Nd158("Nd", 60, 158, 0.000000, 157.941870, 7.67371481531);
static const Atom Nd159("Nd", 60, 159, 0.000000, 158.946390, 7.72252011314);
static const Atom Nd160("Nd", 60, 160, 0.000000, 159.949390, 7.77125156073);
static const Atom Nd161("Nd", 60, 161, 0.000000, 160.954330, 7.82007726456);
static const Atom Nd126("Nd", 60, 126, 0.000000, 125.943070, 6.11903102163);
static const Atom Nd127("Nd", 60, 127, 0.000000, 126.940500, 6.16749184692);
static const Atom Pm("Pm", 61, 0, 0.000000, 145.000000, 7.264);
static const Atom Pm128("Pm", 61, 128, 0.000000, 127.948260, 6.4097666251);
static const Atom Pm129("Pm", 61, 129, 0.000000, 128.943160, 6.45960768441);
static const Atom Pm130("Pm", 61, 130, 0.000000, 129.940450, 6.50956847448);
static const Atom Pm131("Pm", 61, 131, 0.000000, 130.935800, 6.55943207724);
static const Atom Pm132("Pm", 61, 132, 0.000000, 131.933750, 6.60942593103);
static const Atom Pm133("Pm", 61, 133, 0.000000, 132.929720, 6.65932059366);
static const Atom Pm134("Pm", 61, 134, 0.000000, 133.928490, 6.70935552662);
static const Atom Pm135("Pm", 61, 135, 0.000000, 134.924620, 6.75925820469);
static const Atom Pm136("Pm", 61, 136, 0.000000, 135.923450, 6.80929614345);
static const Atom Pm137("Pm", 61, 137, 0.000000, 136.920710, 6.85925543062);
static const Atom Pm138("Pm", 61, 138, 0.000000, 137.919450, 6.90928886069);
static const Atom Pm139("Pm", 61, 139, 0.000000, 138.916760, 6.95925065269);
static const Atom Pm140("Pm", 61, 140, 0.000000, 139.915800, 7.00929911172);
static const Atom Pm141("Pm", 61, 141, 0.000000, 140.913607, 7.05928580171);
static const Atom Pm142("Pm", 61, 142, 0.000000, 141.912950, 7.10934944);
static const Atom Pm143("Pm", 61, 143, 0.000000, 142.910928, 7.1593446965);
static const Atom Pm144("Pm", 61, 144, 0.000000, 143.912586, 7.2095243083);
static const Atom Pm145("Pm", 61, 145, 0.000000, 144.912744, 7.25962877528);
static const Atom Pm146("Pm", 61, 146, 0.000000, 145.914692, 7.30982291509);
static const Atom Pm147("Pm", 61, 147, 0.000000, 146.915134, 7.35994160949);
static const Atom Pm148("Pm", 61, 148, 0.000000, 147.917468, 7.41015508657);
static const Atom Pm149("Pm", 61, 149, 0.000000, 148.918329, 7.46029477142);
static const Atom Pm150("Pm", 61, 150, 0.000000, 149.920979, 7.51052407901);
static const Atom Pm151("Pm", 61, 151, 0.000000, 150.921203, 7.56063185236);
static const Atom Pm152("Pm", 61, 152, 0.000000, 151.923490, 7.6108429749);
static const Atom Pm153("Pm", 61, 153, 0.000000, 152.924113, 7.66097073677);
static const Atom Pm154("Pm", 61, 154, 0.000000, 153.926550, 7.71118937379);
static const Atom Pm155("Pm", 61, 155, 0.000000, 154.928100, 7.76136357517);
static const Atom Pm156("Pm", 61, 156, 0.000000, 155.931060, 7.81160841269);
static const Atom Pm157("Pm", 61, 157, 0.000000, 156.933200, 7.86181217103);
static const Atom Pm158("Pm", 61, 158, 0.000000, 157.936690, 7.91208355972);
static const Atom Pm159("Pm", 61, 159, 0.000000, 158.939130, 7.96230234703);
static const Atom Pm160("Pm", 61, 160, 0.000000, 159.942990, 8.01259227145);
static const Atom Pm161("Pm", 61, 161, 0.000000, 160.945860, 8.06283260028);
static const Atom Pm162("Pm", 61, 162, 0.000000, 161.950290, 8.11315107972);
static const Atom Pm163("Pm", 61, 163, 0.000000, 162.953520, 8.16340944331);
static const Atom Sm("Sm", 62, 0, 0.000000, 150.360000, 7.52);
static const Atom Sm130("Sm", 62, 130, 0.000000, 129.948630, 6.49916);
static const Atom Sm131("Sm", 62, 131, 0.000000, 130.945890, 6.54903626496);
static const Atom Sm132("Sm", 62, 132, 0.000000, 131.940820, 6.59879599894);
static const Atom Sm133("Sm", 62, 133, 0.000000, 132.938730, 6.64870477255);
static const Atom Sm134("Sm", 62, 134, 0.000000, 133.934020, 6.69848251131);
static const Atom Sm135("Sm", 62, 135, 0.000000, 134.932350, 6.7484122905);
static const Atom Sm136("Sm", 62, 136, 0.000000, 135.928300, 6.79822303804);
static const Atom Sm137("Sm", 62, 137, 0.000000, 136.927050, 6.84817382283);
static const Atom Sm138("Sm", 62, 138, 0.000000, 137.923540, 6.89801157755);
static const Atom Sm139("Sm", 62, 139, 0.000000, 138.922302, 6.94796296249);
static const Atom Sm140("Sm", 62, 140, 0.000000, 139.918991, 6.99781066986);
static const Atom Sm141("Sm", 62, 141, 0.000000, 140.918469, 7.04779786433);
static const Atom Sm142("Sm", 62, 142, 0.000000, 141.915193, 7.09764732216);
static const Atom Sm143("Sm", 62, 143, 0.000000, 142.914624, 7.147632166);
static const Atom Sm144("Sm", 62, 144, 3.070000, 143.911995, 7.19751398244);
static const Atom Sm145("Sm", 62, 145, 0.000000, 144.913406, 7.24759785262);
static const Atom Sm146("Sm", 62, 146, 0.000000, 145.913037, 7.29759269912);
static const Atom Sm147("Sm", 62, 147, 14.990000, 146.914893, 7.34769882522);
static const Atom Sm148("Sm", 62, 148, 11.240000, 147.914818, 7.39770837563);
static const Atom Sm149("Sm", 62, 149, 13.820000, 148.917180, 7.44783980846);
static const Atom Sm150("Sm", 62, 150, 7.380000, 149.917271, 7.49785766108);
static const Atom Sm151("Sm", 62, 151, 0.000000, 150.919928, 7.54800384783);
static const Atom Sm152("Sm", 62, 152, 26.750000, 151.919728, 7.59800714658);
static const Atom Sm153("Sm", 62, 153, 0.000000, 152.922094, 7.64813877946);
static const Atom Sm154("Sm", 62, 154, 22.750000, 153.922205, 7.69815763235);
static const Atom Sm155("Sm", 62, 155, 0.000000, 154.924636, 7.74829251609);
static const Atom Sm156("Sm", 62, 156, 0.000000, 155.925526, 7.79835032934);
static const Atom Sm157("Sm", 62, 157, 0.000000, 156.928350, 7.84850486832);
static const Atom Sm158("Sm", 62, 158, 0.000000, 157.929990, 7.89860019154);
static const Atom Sm159("Sm", 62, 159, 0.000000, 158.933200, 7.94877403565);
static const Atom Sm160("Sm", 62, 160, 0.000000, 159.935140, 7.99888436286);
static const Atom Sm161("Sm", 62, 161, 0.000000, 160.938830, 8.04908221335);
static const Atom Sm162("Sm", 62, 162, 0.000000, 161.941220, 8.09921504655);
static const Atom Sm163("Sm", 62, 163, 0.000000, 162.945360, 8.14943540303);
static const Atom Sm164("Sm", 62, 164, 0.000000, 163.948280, 8.19959474328);
static const Atom Sm165("Sm", 62, 165, 0.000000, 164.952980, 8.24984310721);
static const Atom Eu("Eu", 63, 0, 0.000000, 151.964000, 5.244);
static const Atom Eu132("Eu", 63, 132, 0.000000, 131.954160, 4.55349697981);
static const Atom Eu133("Eu", 63, 133, 0.000000, 132.948900, 4.58782363981);
static const Atom Eu134("Eu", 63, 134, 0.000000, 133.946320, 4.62224278171);
static const Atom Eu135("Eu", 63, 135, 0.000000, 134.941720, 4.6565922171);
static const Atom Eu136("Eu", 63, 136, 0.000000, 135.939500, 4.69102378195);
static const Atom Eu137("Eu", 63, 137, 0.000000, 136.935210, 4.72538391487);
static const Atom Eu138("Eu", 63, 138, 0.000000, 137.933450, 4.75983135348);
static const Atom Eu139("Eu", 63, 139, 0.000000, 138.929840, 4.79421495196);
static const Atom Eu140("Eu", 63, 140, 0.000000, 139.928080, 4.82866239057);
static const Atom Eu141("Eu", 63, 141, 0.000000, 140.924890, 4.86306048248);
static const Atom Eu142("Eu", 63, 142, 0.000000, 141.923400, 4.89751723829);
static const Atom Eu143("Eu", 63, 143, 0.000000, 142.920287, 4.93191798734);
static const Atom Eu144("Eu", 63, 144, 0.000000, 143.918774, 4.96637394946);
static const Atom Eu145("Eu", 63, 145, 0.000000, 144.916261, 5.00079540341);
static const Atom Eu146("Eu", 63, 146, 0.000000, 145.917200, 5.03533597957);
static const Atom Eu147("Eu", 63, 147, 0.000000, 146.916741, 5.06982831331);
static const Atom Eu148("Eu", 63, 148, 0.000000, 147.918154, 5.10438524635);
static const Atom Eu149("Eu", 63, 149, 0.000000, 148.917926, 5.13888555147);
static const Atom Eu150("Eu", 63, 150, 0.000000, 149.919698, 5.17345487294);
static const Atom Eu151("Eu", 63, 151, 47.810000, 150.919846, 5.20796815314);
static const Atom Eu152("Eu", 63, 152, 0.000000, 151.921740, 5.24254168461);
static const Atom Eu153("Eu", 63, 153, 52.190000, 152.921226, 5.2770321204);
static const Atom Eu154("Eu", 63, 154, 0.000000, 153.922975, 5.31160064818);
static const Atom Eu155("Eu", 63, 155, 0.000000, 154.922889, 5.34610585347);
static const Atom Eu156("Eu", 63, 156, 0.000000, 155.924751, 5.38067828067);
static const Atom Eu157("Eu", 63, 157, 0.000000, 156.925419, 5.41520950512);
static const Atom Eu158("Eu", 63, 158, 0.000000, 157.927840, 5.44980122239);
static const Atom Eu159("Eu", 63, 159, 0.000000, 158.929084, 5.48435232355);
static const Atom Eu160("Eu", 63, 160, 0.000000, 159.931970, 5.51896008713);
static const Atom Eu161("Eu", 63, 161, 0.000000, 160.933680, 5.55352726909);
static const Atom Eu162("Eu", 63, 162, 0.000000, 161.937040, 5.58815138954);
static const Atom Eu163("Eu", 63, 163, 0.000000, 162.939210, 5.62273444526);
static const Atom Eu164("Eu", 63, 164, 0.000000, 163.942990, 5.65737305915);
static const Atom Eu165("Eu", 63, 165, 0.000000, 164.945720, 5.69197543945);
static const Atom Eu166("Eu", 63, 166, 0.000000, 165.949970, 5.72663027217);
static const Atom Eu167("Eu", 63, 167, 0.000000, 166.953050, 5.76124473033);
static const Atom Gd("Gd", 64, 0, 0.000000, 157.250000, 7.901);
static const Atom Gd136("Gd", 64, 136, 0.000000, 135.947070, 6.83063783828);
static const Atom Gd137("Gd", 64, 137, 0.000000, 136.944650, 6.88076107886);
static const Atom Gd138("Gd", 64, 138, 0.000000, 137.939970, 6.9307707661);
static const Atom Gd139("Gd", 64, 139, 0.000000, 138.938080, 6.98092063644);
static const Atom Gd140("Gd", 64, 140, 0.000000, 139.933950, 7.03095795835);
static const Atom Gd141("Gd", 64, 141, 0.000000, 140.932210, 7.08111536541);
static const Atom Gd142("Gd", 64, 142, 0.000000, 141.928230, 7.13116022404);
static const Atom Gd143("Gd", 64, 143, 0.000000, 142.926740, 7.18133019231);
static const Atom Gd144("Gd", 64, 144, 0.000000, 143.922790, 7.23137655828);
static const Atom Gd145("Gd", 64, 145, 0.000000, 144.921690, 7.28156612203);
static const Atom Gd146("Gd", 64, 146, 0.000000, 145.918305, 7.33164087634);
static const Atom Gd147("Gd", 64, 147, 0.000000, 146.919089, 7.38192510136);
static const Atom Gd148("Gd", 64, 148, 0.000000, 147.918110, 7.43212074474);
static const Atom Gd149("Gd", 64, 149, 0.000000, 148.919336, 7.48242717797);
static const Atom Gd150("Gd", 64, 150, 0.000000, 149.918655, 7.53263779431);
static const Atom Gd151("Gd", 64, 151, 0.000000, 150.920344, 7.5829674909);
static const Atom Gd152("Gd", 64, 152, 0.200000, 151.919788, 7.63318438784);
static const Atom Gd153("Gd", 64, 153, 0.000000, 152.921746, 7.68352760029);
static const Atom Gd154("Gd", 64, 154, 2.180000, 153.920862, 7.73372801693);
static const Atom Gd155("Gd", 64, 155, 14.800000, 154.922619, 7.78406113017);
static const Atom Gd156("Gd", 64, 156, 20.470000, 155.922120, 7.83428089107);
static const Atom Gd157("Gd", 64, 157, 15.650000, 156.923957, 7.88461802389);
static const Atom Gd158("Gd", 64, 158, 24.840000, 157.924101, 7.93487009222);
static const Atom Gd159("Gd", 64, 159, 0.000000, 158.926385, 7.98522968448);
static const Atom Gd160("Gd", 64, 160, 21.860000, 159.927051, 8.03550798061);
static const Atom Gd161("Gd", 64, 161, 0.000000, 160.929666, 8.08588420392);
static const Atom Gd162("Gd", 64, 162, 0.000000, 161.930981, 8.13619510894);
static const Atom Gd163("Gd", 64, 163, 0.000000, 162.933990, 8.18659112871);
static const Atom Gd164("Gd", 64, 164, 0.000000, 163.935860, 8.23692991962);
static const Atom Gd165("Gd", 64, 165, 0.000000, 164.939380, 8.2873516145);
static const Atom Gd166("Gd", 64, 166, 0.000000, 165.941600, 8.3377079911);
static const Atom Gd167("Gd", 64, 167, 0.000000, 166.945570, 8.38815229615);
static const Atom Gd168("Gd", 64, 168, 0.000000, 167.948360, 8.43853731231);
static const Atom Gd169("Gd", 64, 169, 0.000000, 168.952870, 8.48900874957);
static const Atom Tb("Tb", 65, 0, 0.000000, 158.925340, 8.23);
static const Atom Tb138("Tb", 65, 138, 0.000000, 137.952870, 7.14393387549);
static const Atom Tb139("Tb", 65, 139, 0.000000, 138.948030, 7.19546855712);
static const Atom Tb140("Tb", 65, 140, 0.000000, 139.945540, 7.24712493426);
static const Atom Tb141("Tb", 65, 141, 0.000000, 140.941160, 7.29868343714);
static const Atom Tb142("Tb", 65, 142, 0.000000, 141.938860, 7.35034965349);
static const Atom Tb143("Tb", 65, 143, 0.000000, 142.934750, 7.40192213841);
static const Atom Tb144("Tb", 65, 144, 0.000000, 143.932530, 7.45359249758);
static const Atom Tb145("Tb", 65, 145, 0.000000, 144.928880, 7.50518880375);
static const Atom Tb146("Tb", 65, 146, 0.000000, 145.927180, 7.55688609129);
static const Atom Tb147("Tb", 65, 147, 0.000000, 146.924037, 7.60850865262);
static const Atom Tb148("Tb", 65, 148, 0.000000, 147.924300, 7.66030759475);
static const Atom Tb149("Tb", 65, 149, 0.000000, 148.923242, 7.71203812847);
static const Atom Tb150("Tb", 65, 150, 0.000000, 149.923654, 7.76384478661);
static const Atom Tb151("Tb", 65, 151, 0.000000, 150.923098, 7.81560131657);
static const Atom Tb152("Tb", 65, 152, 0.000000, 151.924070, 7.86743697449);
static const Atom Tb153("Tb", 65, 153, 0.000000, 152.923431, 7.91918920627);
static const Atom Tb154("Tb", 65, 154, 0.000000, 153.924690, 7.97103972658);
static const Atom Tb155("Tb", 65, 155, 0.000000, 154.923500, 8.02276342464);
static const Atom Tb156("Tb", 65, 156, 0.000000, 155.924744, 8.07461316817);
static const Atom Tb157("Tb", 65, 157, 0.000000, 156.924021, 8.12636104997);
static const Atom Tb158("Tb", 65, 158, 0.000000, 157.925410, 8.17821830238);
static const Atom Tb159("Tb", 65, 159, 100.000000, 158.925343, 8.23000015536);
static const Atom Tb160("Tb", 65, 160, 0.000000, 159.927164, 8.28187977902);
static const Atom Tb161("Tb", 65, 161, 0.000000, 160.927566, 8.33368591931);
static const Atom Tb162("Tb", 65, 162, 0.000000, 161.929480, 8.38557035901);
static const Atom Tb163("Tb", 65, 163, 0.000000, 162.930644, 8.43741595972);
static const Atom Tb164("Tb", 65, 164, 0.000000, 163.933350, 8.4893414134);
static const Atom Tb165("Tb", 65, 165, 0.000000, 164.934880, 8.54120596753);
static const Atom Tb166("Tb", 65, 166, 0.000000, 165.938050, 8.5931554496);
static const Atom Tb167("Tb", 65, 167, 0.000000, 166.940050, 8.64504434283);
static const Atom Tb168("Tb", 65, 168, 0.000000, 167.943640, 8.69701557473);
static const Atom Tb169("Tb", 65, 169, 0.000000, 168.946220, 8.74893450346);
static const Atom Tb170("Tb", 65, 170, 0.000000, 169.950250, 8.8009285209);
static const Atom Tb171("Tb", 65, 171, 0.000000, 170.953300, 8.85287178873);
static const Atom Dy("Dy", 66, 0, 0.000000, 162.500000, 8.551);
static const Atom Dy140("Dy", 66, 140, 0.000000, 139.953790, 7.36458374332);
static const Atom Dy141("Dy", 66, 141, 0.000000, 140.951190, 7.41706846578);
static const Atom Dy142("Dy", 66, 142, 0.000000, 141.946270, 7.46943110628);
static const Atom Dy143("Dy", 66, 143, 0.000000, 142.943830, 7.52192424818);
static const Atom Dy144("Dy", 66, 144, 0.000000, 143.939070, 7.57429530812);
static const Atom Dy145("Dy", 66, 145, 0.000000, 144.936950, 7.62680528892);
static const Atom Dy146("Dy", 66, 146, 0.000000, 145.932720, 7.67920423828);
static const Atom Dy147("Dy", 66, 147, 0.000000, 146.930880, 7.73172895311);
static const Atom Dy148("Dy", 66, 148, 0.000000, 147.927180, 7.78415579188);
static const Atom Dy149("Dy", 66, 149, 0.000000, 148.927334, 7.83678543406);
static const Atom Dy150("Dy", 66, 150, 0.000000, 149.925580, 7.88931467434);
static const Atom Dy151("Dy", 66, 151, 0.000000, 150.926180, 7.94196778572);
static const Atom Dy152("Dy", 66, 152, 0.000000, 151.924714, 7.99451218101);
static const Atom Dy153("Dy", 66, 153, 0.000000, 152.925761, 8.04718881422);
static const Atom Dy154("Dy", 66, 154, 0.000000, 153.924422, 8.09973989244);
static const Atom Dy155("Dy", 66, 155, 0.000000, 154.925749, 8.15243125969);
static const Atom Dy156("Dy", 66, 156, 0.060000, 155.924278, 8.20497539186);
static const Atom Dy157("Dy", 66, 157, 0.000000, 156.925461, 8.25765918161);
static const Atom Dy158("Dy", 66, 158, 0.100000, 157.924405, 8.31022515172);
static const Atom Dy159("Dy", 66, 159, 0.000000, 158.925736, 8.36291672945);
static const Atom Dy160("Dy", 66, 160, 2.340000, 159.925194, 8.41550974704);
static const Atom Dy161("Dy", 66, 161, 18.910000, 160.926930, 8.46822263649);
static const Atom Dy162("Dy", 66, 162, 25.510000, 161.926795, 8.52083707105);
static const Atom Dy163("Dy", 66, 163, 24.900000, 162.928728, 8.57356032694);
static const Atom Dy164("Dy", 66, 164, 28.180000, 163.929171, 8.62620517674);
static const Atom Dy165("Dy", 66, 165, 0.000000, 164.931700, 8.67895979508);
static const Atom Dy166("Dy", 66, 166, 0.000000, 165.932803, 8.7316393751);
static const Atom Dy167("Dy", 66, 167, 0.000000, 166.935650, 8.78441072708);
static const Atom Dy168("Dy", 66, 168, 0.000000, 167.937230, 8.83711540757);
static const Atom Dy169("Dy", 66, 169, 0.000000, 168.940300, 8.88989849415);
static const Atom Dy170("Dy", 66, 170, 0.000000, 169.942670, 8.94264474566);
static const Atom Dy171("Dy", 66, 171, 0.000000, 170.946480, 8.99546677218);
static const Atom Dy172("Dy", 66, 172, 0.000000, 171.949110, 9.04822670529);
static const Atom Dy173("Dy", 66, 173, 0.000000, 172.953440, 9.10107609502);
static const Atom Ho("Ho", 67, 0, 0.000000, 164.930320, 8.795);
static const Atom Ho142("Ho", 67, 142, 0.000000, 141.959860, 7.57008759032);
static const Atom Ho143("Ho", 67, 143, 0.000000, 142.954690, 7.62313744707);
static const Atom Ho144("Ho", 67, 144, 0.000000, 143.951640, 7.67630035399);
static const Atom Ho145("Ho", 67, 145, 0.000000, 144.946880, 7.72937207422);
static const Atom Ho146("Ho", 67, 146, 0.000000, 145.944100, 7.78254937903);
static const Atom Ho147("Ho", 67, 147, 0.000000, 146.939840, 7.83564776204);
static const Atom Ho148("Ho", 67, 148, 0.000000, 147.937270, 7.88883626522);
static const Atom Ho149("Ho", 67, 149, 0.000000, 148.933790, 7.94197624215);
static const Atom Ho150("Ho", 67, 150, 0.000000, 149.933350, 7.99527832875);
static const Atom Ho151("Ho", 67, 151, 0.000000, 150.931681, 8.04851487825);
static const Atom Ho152("Ho", 67, 152, 0.000000, 151.931740, 8.1018435743);
static const Atom Ho153("Ho", 67, 153, 0.000000, 152.930195, 8.15508673617);
static const Atom Ho154("Ho", 67, 154, 0.000000, 153.930596, 8.20843366956);
static const Atom Ho155("Ho", 67, 155, 0.000000, 154.929079, 8.26167832455);
static const Atom Ho156("Ho", 67, 156, 0.000000, 155.929710, 8.31503752282);
static const Atom Ho157("Ho", 67, 157, 0.000000, 156.928190, 8.36828201782);
static const Atom Ho158("Ho", 67, 158, 0.000000, 157.928950, 8.42164809509);
static const Atom Ho159("Ho", 67, 159, 0.000000, 158.927709, 8.47490746792);
static const Atom Ho160("Ho", 67, 160, 0.000000, 159.928726, 8.52828724985);
static const Atom Ho161("Ho", 67, 161, 0.000000, 160.927852, 8.58156619317);
static const Atom Ho162("Ho", 67, 162, 0.000000, 161.929092, 8.63495786669);
static const Atom Ho163("Ho", 67, 163, 0.000000, 162.928730, 8.68826411269);
static const Atom Ho164("Ho", 67, 164, 0.000000, 163.930231, 8.74166970418);
static const Atom Ho165("Ho", 67, 165, 100.000000, 164.930319, 8.79499994667);
static const Atom Ho166("Ho", 67, 166, 0.000000, 165.932281, 8.84843012125);
static const Atom Ho167("Ho", 67, 167, 0.000000, 166.933126, 8.90180073118);
static const Atom Ho168("Ho", 67, 168, 0.000000, 167.935500, 8.95525287588);
static const Atom Ho169("Ho", 67, 169, 0.000000, 168.936868, 9.00865137508);
static const Atom Ho170("Ho", 67, 170, 0.000000, 169.939610, 9.06212314358);
static const Atom Ho171("Ho", 67, 171, 0.000000, 170.941460, 9.11554734569);
static const Atom Ho172("Ho", 67, 172, 0.000000, 171.944820, 9.16905206938);
static const Atom Ho173("Ho", 67, 173, 0.000000, 172.947290, 9.22250933334);
static const Atom Ho174("Ho", 67, 174, 0.000000, 173.951150, 9.2760407198);
static const Atom Ho175("Ho", 67, 175, 0.000000, 174.954050, 9.32952091374);
static const Atom Er("Er", 68, 0, 0.000000, 167.259000, 9.066);
static const Atom Er144("Er", 68, 144, 0.000000, 143.960590, 7.80314786612);
static const Atom Er145("Er", 68, 145, 0.000000, 144.957460, 7.85718157086);
static const Atom Er146("Er", 68, 146, 0.000000, 145.952120, 7.91109548616);
static const Atom Er147("Er", 68, 147, 0.000000, 146.949310, 7.96514653597);
static const Atom Er148("Er", 68, 148, 0.000000, 147.944440, 8.01908592686);
static const Atom Er149("Er", 68, 149, 0.000000, 148.942170, 8.07316624648);
static const Atom Er150("Er", 68, 150, 0.000000, 149.937760, 8.12713057091);
static const Atom Er151("Er", 68, 151, 0.000000, 150.937460, 8.18131767116);
static const Atom Er152("Er", 68, 152, 0.000000, 151.935080, 8.23539202841);
static const Atom Er153("Er", 68, 153, 0.000000, 152.935093, 8.28959609431);
static const Atom Er154("Er", 68, 154, 0.000000, 153.932777, 8.34367392058);
static const Atom Er155("Er", 68, 155, 0.000000, 154.933200, 8.39790020985);
static const Atom Er156("Er", 68, 156, 0.000000, 155.931020, 8.45198540778);
static const Atom Er157("Er", 68, 157, 0.000000, 156.931950, 8.50623917816);
static const Atom Er158("Er", 68, 158, 0.000000, 157.929910, 8.56033196456);
static const Atom Er159("Er", 68, 159, 0.000000, 158.930681, 8.6145771166);
static const Atom Er160("Er", 68, 160, 0.000000, 159.929080, 8.66869369828);
static const Atom Er161("Er", 68, 161, 0.000000, 160.930001, 8.72294698083);
static const Atom Er162("Er", 68, 162, 0.140000, 161.928775, 8.77708388876);
static const Atom Er163("Er", 68, 163, 0.000000, 162.930029, 8.83135522103);
static const Atom Er164("Er", 68, 164, 1.610000, 163.929197, 8.88551348509);
static const Atom Er165("Er", 68, 165, 0.000000, 164.930723, 8.93979956067);
static const Atom Er166("Er", 68, 166, 33.610000, 165.930290, 8.99397945187);
static const Atom Er167("Er", 68, 167, 22.930000, 166.932045, 9.04827794002);
static const Atom Er168("Er", 68, 168, 26.780000, 167.932368, 9.10249880896);
static const Atom Er169("Er", 68, 169, 0.000000, 168.934588, 9.15682250168);
static const Atom Er170("Er", 68, 170, 14.930000, 169.935460, 9.21107312826);
static const Atom Er171("Er", 68, 171, 0.000000, 170.938026, 9.26541557534);
static const Atom Er172("Er", 68, 172, 0.000000, 171.939352, 9.31969081025);
static const Atom Er173("Er", 68, 173, 0.000000, 172.942400, 9.37405938335);
static const Atom Er174("Er", 68, 174, 0.000000, 173.944340, 9.42836789913);
static const Atom Er175("Er", 68, 175, 0.000000, 174.947930, 9.48276585045);
static const Atom Er176("Er", 68, 176, 0.000000, 175.950290, 9.53709713163);
static const Atom Er177("Er", 68, 177, 0.000000, 176.954370, 9.5915216426);
static const Atom Tm("Tm", 69, 0, 0.000000, 168.934210, 9.321);
static const Atom Tm146("Tm", 69, 146, 0.000000, 145.966500, 8.05374912814);
static const Atom Tm147("Tm", 69, 147, 0.000000, 146.961080, 8.10862540323);
static const Atom Tm148("Tm", 69, 148, 0.000000, 147.957550, 8.16360595968);
static const Atom Tm149("Tm", 69, 149, 0.000000, 148.952650, 8.21851092594);
static const Atom Tm150("Tm", 69, 150, 0.000000, 149.949670, 8.27352182882);
static const Atom Tm151("Tm", 69, 151, 0.000000, 150.945430, 8.3284632108);
static const Atom Tm152("Tm", 69, 152, 0.000000, 151.944300, 8.38357618803);
static const Atom Tm153("Tm", 69, 153, 0.000000, 152.942028, 8.43862615505);
static const Atom Tm154("Tm", 69, 154, 0.000000, 153.941420, 8.4937679338);
static const Atom Tm155("Tm", 69, 155, 0.000000, 154.939192, 8.54882032853);
static const Atom Tm156("Tm", 69, 156, 0.000000, 155.939010, 8.60398561197);