Newer
Older
Russell Taylor
committed
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
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);
static const Atom Tm157("Tm", 69, 157, 0.000000, 156.936760, 8.65903679284);
static const Atom Tm158("Tm", 69, 158, 0.000000, 157.937000, 8.71422536027);
static const Atom Tm159("Tm", 69, 159, 0.000000, 158.934810, 8.76927985167);
static const Atom Tm160("Tm", 69, 160, 0.000000, 159.935090, 8.82447062611);
static const Atom Tm161("Tm", 69, 161, 0.000000, 160.933400, 8.87955270516);
static const Atom Tm162("Tm", 69, 162, 0.000000, 161.933970, 8.93475948045);
static const Atom Tm163("Tm", 69, 163, 0.000000, 162.932648, 8.98986186402);
static const Atom Tm164("Tm", 69, 164, 0.000000, 163.933451, 9.04508149516);
static const Atom Tm165("Tm", 69, 165, 0.000000, 164.932432, 9.10020059686);
static const Atom Tm166("Tm", 69, 166, 0.000000, 165.933553, 9.15543777375);
static const Atom Tm167("Tm", 69, 167, 0.000000, 166.932849, 9.21057425568);
static const Atom Tm168("Tm", 69, 168, 0.000000, 167.934170, 9.26582246763);
static const Atom Tm169("Tm", 69, 169, 100.000000, 168.934211, 9.32100005518);
static const Atom Tm170("Tm", 69, 170, 0.000000, 169.935798, 9.37626294377);
static const Atom Tm171("Tm", 69, 171, 0.000000, 170.936426, 9.43147291923);
static const Atom Tm172("Tm", 69, 172, 0.000000, 171.938396, 9.48675693997);
static const Atom Tm173("Tm", 69, 173, 0.000000, 172.939600, 9.54199869642);
static const Atom Tm174("Tm", 69, 174, 0.000000, 173.942160, 9.5973152706);
static const Atom Tm175("Tm", 69, 175, 0.000000, 174.943830, 9.65258273875);
static const Atom Tm176("Tm", 69, 176, 0.000000, 175.946990, 9.70793241813);
static const Atom Tm177("Tm", 69, 177, 0.000000, 176.949040, 9.7632208529);
static const Atom Tm178("Tm", 69, 178, 0.000000, 177.952640, 9.81859480942);
static const Atom Tm179("Tm", 69, 179, 0.000000, 178.955340, 9.87391910815);
static const Atom Yb("Yb", 70, 0, 0.000000, 173.040000, 6.966);
static const Atom Yb148("Yb", 70, 148, 0.000000, 147.966760, 5.95663690569);
static const Atom Yb149("Yb", 70, 149, 0.000000, 148.963480, 5.99676145215);
static const Atom Yb150("Yb", 70, 150, 0.000000, 149.957990, 6.03679703155);
static const Atom Yb151("Yb", 70, 151, 0.000000, 150.955250, 6.07694331657);
static const Atom Yb152("Yb", 70, 152, 0.000000, 151.950170, 6.11699540118);
static const Atom Yb153("Yb", 70, 153, 0.000000, 152.949210, 6.15721334293);
static const Atom Yb154("Yb", 70, 154, 0.000000, 153.946240, 6.19735036893);
static const Atom Yb155("Yb", 70, 155, 0.000000, 154.945790, 6.23758884154);
static const Atom Yb156("Yb", 70, 156, 0.000000, 155.942850, 6.27772707524);
static const Atom Yb157("Yb", 70, 157, 0.000000, 156.942660, 6.31797601456);
static const Atom Yb158("Yb", 70, 158, 0.000000, 157.939858, 6.35811980368);
static const Atom Yb159("Yb", 70, 159, 0.000000, 158.940150, 6.39838814667);
static const Atom Yb160("Yb", 70, 160, 0.000000, 159.937560, 6.43854047018);
static const Atom Yb161("Yb", 70, 161, 0.000000, 160.937850, 6.47880873266);
static const Atom Yb162("Yb", 70, 162, 0.000000, 161.935750, 6.5189807819);
static const Atom Yb163("Yb", 70, 163, 0.000000, 162.936270, 6.5592583034);
static const Atom Yb164("Yb", 70, 164, 0.000000, 163.934520, 6.59944444244);
static const Atom Yb165("Yb", 70, 165, 0.000000, 164.935398, 6.6397363758);
static const Atom Yb166("Yb", 70, 166, 0.000000, 165.933880, 6.67993185437);
static const Atom Yb167("Yb", 70, 167, 0.000000, 166.934947, 6.72023139622);
static const Atom Yb168("Yb", 70, 168, 0.130000, 167.933894, 6.76044559411);
static const Atom Yb169("Yb", 70, 169, 0.000000, 168.935187, 6.80075423395);
static const Atom Yb170("Yb", 70, 170, 3.040000, 169.934759, 6.8409935922);
static const Atom Yb171("Yb", 70, 171, 14.280000, 170.936322, 6.88131310132);
static const Atom Yb172("Yb", 70, 172, 21.830000, 171.936378, 6.92157193168);
static const Atom Yb173("Yb", 70, 173, 16.130000, 172.938207, 6.96190215308);
static const Atom Yb174("Yb", 70, 174, 31.830000, 173.938858, 7.00218496027);
static const Atom Yb175("Yb", 70, 175, 0.000000, 174.941272, 7.04253874385);
static const Atom Yb176("Yb", 70, 176, 12.760000, 175.942568, 7.08284748433);
static const Atom Yb177("Yb", 70, 177, 0.000000, 176.945257, 7.12321232236);
static const Atom Yb178("Yb", 70, 178, 0.000000, 177.946643, 7.16352470607);
static const Atom Yb179("Yb", 70, 179, 0.000000, 178.950170, 7.20392327913);
static const Atom Yb180("Yb", 70, 180, 0.000000, 179.952330, 7.24426682143);
static const Atom Yb181("Yb", 70, 181, 0.000000, 180.956150, 7.28467718967);
static const Atom Lu("Lu", 71, 0, 0.000000, 174.967000, 9.841);
static const Atom Lu150("Lu", 71, 150, 0.000000, 149.972670, 8.43519661119);
static const Atom Lu151("Lu", 71, 151, 0.000000, 150.967150, 8.49113103128);
static const Atom Lu152("Lu", 71, 152, 0.000000, 151.963610, 8.54717681626);
static const Atom Lu153("Lu", 71, 153, 0.000000, 152.958690, 8.60314498328);
static const Atom Lu154("Lu", 71, 154, 0.000000, 153.957100, 8.6593004458);
static const Atom Lu155("Lu", 71, 155, 0.000000, 154.954230, 8.71538391485);
static const Atom Lu156("Lu", 71, 156, 0.000000, 155.952910, 8.77155456349);
static const Atom Lu157("Lu", 71, 157, 0.000000, 156.950102, 8.82764151973);
static const Atom Lu158("Lu", 71, 158, 0.000000, 157.949170, 8.88383399138);
static const Atom Lu159("Lu", 71, 159, 0.000000, 158.946620, 8.9399354588);
static const Atom Lu160("Lu", 71, 160, 0.000000, 159.946020, 8.99614660376);
static const Atom Lu161("Lu", 71, 161, 0.000000, 160.943540, 9.05225200832);
static const Atom Lu162("Lu", 71, 162, 0.000000, 161.943220, 9.10847890185);
static const Atom Lu163("Lu", 71, 163, 0.000000, 162.941200, 9.16461017906);
static const Atom Lu164("Lu", 71, 164, 0.000000, 163.941220, 9.22085619585);
static const Atom Lu165("Lu", 71, 165, 0.000000, 164.939610, 9.27701053347);
static const Atom Lu166("Lu", 71, 166, 0.000000, 165.939760, 9.3332638621);
static const Atom Lu167("Lu", 71, 167, 0.000000, 166.938310, 9.3894271989);
static const Atom Lu168("Lu", 71, 168, 0.000000, 167.938700, 9.4456940263);
static const Atom Lu169("Lu", 71, 169, 0.000000, 168.937649, 9.50187980481);
static const Atom Lu170("Lu", 71, 170, 0.000000, 169.938472, 9.55817098625);
static const Atom Lu171("Lu", 71, 171, 0.000000, 170.937910, 9.61438426852);
static const Atom Lu172("Lu", 71, 172, 0.000000, 171.939082, 9.67069507943);
static const Atom Lu173("Lu", 71, 173, 0.000000, 172.938927, 9.72693125336);
static const Atom Lu174("Lu", 71, 174, 0.000000, 173.940334, 9.7832552537);
static const Atom Lu175("Lu", 71, 175, 97.410000, 174.940768, 9.83952457837);
static const Atom Lu176("Lu", 71, 176, 2.590000, 175.942682, 9.89587715111);
static const Atom Lu177("Lu", 71, 177, 0.000000, 176.943755, 9.95218237128);
static const Atom Lu178("Lu", 71, 178, 0.000000, 177.945951, 10.008550777);
static const Atom Lu179("Lu", 71, 179, 0.000000, 178.947324, 10.0648728931);
static const Atom Lu180("Lu", 71, 180, 0.000000, 179.949880, 10.1212615469);
static const Atom Lu181("Lu", 71, 181, 0.000000, 180.951970, 10.1776239906);
static const Atom Lu182("Lu", 71, 182, 0.000000, 181.955210, 10.234051116);
static const Atom Lu183("Lu", 71, 183, 0.000000, 182.957570, 10.2904287458);
static const Atom Lu184("Lu", 71, 184, 0.000000, 183.961170, 10.3468761193);
static const Atom Hf("Hf", 72, 0, 0.000000, 178.490000, 13.31);
static const Atom Hf154("Hf", 72, 154, 0.000000, 153.964250, 11.4811147263);
static const Atom Hf155("Hf", 72, 155, 0.000000, 154.962760, 11.5555736209);
static const Atom Hf156("Hf", 72, 156, 0.000000, 155.959250, 11.6298818841);
static const Atom Hf157("Hf", 72, 157, 0.000000, 156.958130, 11.7043683697);
static const Atom Hf158("Hf", 72, 158, 0.000000, 157.954650, 11.77867887);
static const Atom Hf159("Hf", 72, 159, 0.000000, 158.954000, 11.8532004034);
static const Atom Hf160("Hf", 72, 160, 0.000000, 159.950710, 11.927525072);
static const Atom Hf161("Hf", 72, 161, 0.000000, 160.950330, 12.0020667393);
static const Atom Hf162("Hf", 72, 162, 0.000000, 161.947203, 12.0764035628);
static const Atom Hf163("Hf", 72, 163, 0.000000, 162.947060, 12.1509629032);
static const Atom Hf164("Hf", 72, 164, 0.000000, 163.944420, 12.2253360424);
static const Atom Hf165("Hf", 72, 165, 0.000000, 164.944540, 12.2999149947);
static const Atom Hf166("Hf", 72, 166, 0.000000, 165.942250, 12.3743142333);
static const Atom Hf167("Hf", 72, 167, 0.000000, 166.942600, 12.4489103367);
static const Atom Hf168("Hf", 72, 168, 0.000000, 167.940630, 12.5233334377);
static const Atom Hf169("Hf", 72, 169, 0.000000, 168.941160, 12.5979429638);
static const Atom Hf170("Hf", 72, 170, 0.000000, 169.939650, 12.672400367);
static const Atom Hf171("Hf", 72, 171, 0.000000, 170.940490, 12.7470330097);
static const Atom Hf172("Hf", 72, 172, 0.000000, 171.939460, 12.8215262065);
static const Atom Hf173("Hf", 72, 173, 0.000000, 172.940650, 12.8961849487);
static const Atom Hf174("Hf", 72, 174, 0.160000, 173.940040, 12.970709465);
static const Atom Hf175("Hf", 72, 175, 0.000000, 174.941503, 13.0453885648);
static const Atom Hf176("Hf", 72, 176, 5.260000, 175.941402, 13.1199510222);
static const Atom Hf177("Hf", 72, 177, 18.600000, 176.943220, 13.1946566093);
static const Atom Hf178("Hf", 72, 178, 27.280000, 177.943698, 13.2692622353);
static const Atom Hf179("Hf", 72, 179, 13.620000, 178.945815, 13.3439901338);
static const Atom Hf180("Hf", 72, 180, 35.080000, 179.946549, 13.4186148497);
static const Atom Hf181("Hf", 72, 181, 0.000000, 180.949099, 13.4933750295);
static const Atom Hf182("Hf", 72, 182, 0.000000, 181.950553, 13.5680534508);
static const Atom Hf183("Hf", 72, 183, 0.000000, 182.953530, 13.6428454496);
static const Atom Hf184("Hf", 72, 184, 0.000000, 183.955450, 13.7175586279);
static const Atom Hf185("Hf", 72, 185, 0.000000, 184.958780, 13.79237695);
static const Atom Hf186("Hf", 72, 186, 0.000000, 185.960920, 13.8671065337);
static const Atom Ta("Ta", 73, 0, 0.000000, 180.947900, 16.654);
static const Atom Ta156("Ta", 73, 156, 0.000000, 155.971690, 14.3552510157);
static const Atom Ta157("Ta", 73, 157, 0.000000, 156.968150, 14.4469627451);
static const Atom Ta158("Ta", 73, 158, 0.000000, 157.966370, 14.5388364606);
static const Atom Ta159("Ta", 73, 159, 0.000000, 158.962910, 14.630555553);
static const Atom Ta160("Ta", 73, 160, 0.000000, 159.961360, 14.7224504371);
static const Atom Ta161("Ta", 73, 161, 0.000000, 160.958370, 14.8142127871);
static const Atom Ta162("Ta", 73, 162, 0.000000, 161.957150, 14.9061380436);
static const Atom Ta163("Ta", 73, 163, 0.000000, 162.954320, 14.9979151197);
static const Atom Ta164("Ta", 73, 164, 0.000000, 163.953570, 15.0898836338);
static const Atom Ta165("Ta", 73, 165, 0.000000, 164.950820, 15.1816680729);
static const Atom Ta166("Ta", 73, 166, 0.000000, 165.950470, 15.273673402);
static const Atom Ta167("Ta", 73, 167, 0.000000, 166.947970, 15.3654808505);
static const Atom Ta168("Ta", 73, 168, 0.000000, 167.947790, 15.457501826);
static const Atom Ta169("Ta", 73, 169, 0.000000, 168.945920, 15.5493672581);
static const Atom Ta170("Ta", 73, 170, 0.000000, 169.946090, 15.6414204468);
static const Atom Ta171("Ta", 73, 171, 0.000000, 170.944460, 15.7333079679);
static const Atom Ta172("Ta", 73, 172, 0.000000, 171.944740, 15.8253712807);
static const Atom Ta173("Ta", 73, 173, 0.000000, 172.943540, 15.9172983779);
static const Atom Ta174("Ta", 73, 174, 0.000000, 173.944170, 16.0093939039);
static const Atom Ta175("Ta", 73, 175, 0.000000, 174.943650, 16.1013835867);
static const Atom Ta176("Ta", 73, 176, 0.000000, 175.944740, 16.1935214499);
static const Atom Ta177("Ta", 73, 177, 0.000000, 176.944472, 16.2855343261);
static const Atom Ta178("Ta", 73, 178, 0.000000, 177.945750, 16.3776894924);
static const Atom Ta179("Ta", 73, 179, 0.000000, 178.945934, 16.4697439696);
static const Atom Ta180("Ta", 73, 180, 0.012000, 179.947466, 16.5619225134);
static const Atom Ta181("Ta", 73, 181, 99.988000, 180.947996, 16.6540088356);
static const Atom Ta182("Ta", 73, 182, 0.000000, 181.950152, 16.7462448108);
static const Atom Ta183("Ta", 73, 183, 0.000000, 182.951373, 16.838394731);
static const Atom Ta184("Ta", 73, 184, 0.000000, 183.954009, 16.9306748842);
static const Atom Ta185("Ta", 73, 185, 0.000000, 184.955559, 17.0228550847);
static const Atom Ta186("Ta", 73, 186, 0.000000, 185.958550, 17.1151679113);
static const Atom Ta187("Ta", 73, 187, 0.000000, 186.960410, 17.2073766434);
static const Atom Ta188("Ta", 73, 188, 0.000000, 187.963710, 17.2997179096);
static const Atom W("W", 74, 0, 0.000000, 183.840000, 19.3);
static const Atom W158("W", 74, 158, 0.000000, 157.973940, 16.584513936);
static const Atom W159("W", 74, 159, 0.000000, 158.972280, 16.6893222585);
static const Atom W160("W", 74, 160, 0.000000, 159.968370, 16.7938943701);
static const Atom W161("W", 74, 161, 0.000000, 160.967090, 16.8987425859);
static const Atom W162("W", 74, 162, 0.000000, 161.963340, 17.0033314948);
static const Atom W163("W", 74, 163, 0.000000, 162.962530, 17.1082290524);
static const Atom W164("W", 74, 164, 0.000000, 163.958980, 17.2128389578);
static const Atom W165("W", 74, 165, 0.000000, 164.958340, 17.3177543625);
static const Atom W166("W", 74, 166, 0.000000, 165.955020, 17.4223884138);
static const Atom W167("W", 74, 167, 0.000000, 166.954670, 17.5273342635);
static const Atom W168("W", 74, 168, 0.000000, 167.951860, 17.632021856);
static const Atom W169("W", 74, 169, 0.000000, 168.951760, 17.7369939513);
static const Atom W170("W", 74, 170, 0.000000, 169.949290, 17.8417172378);
static const Atom W171("W", 74, 171, 0.000000, 170.949460, 17.9467176784);
static const Atom W172("W", 74, 172, 0.000000, 171.947420, 18.0514861075);
static const Atom W173("W", 74, 173, 0.000000, 172.947830, 18.1565117439);
static const Atom W174("W", 74, 174, 0.000000, 173.946160, 18.2613190165);
static const Atom W175("W", 74, 175, 0.000000, 174.946770, 18.3663656495);
static const Atom W176("W", 74, 176, 0.000000, 175.945590, 18.4712243636);
static const Atom W177("W", 74, 177, 0.000000, 176.946620, 18.5763150892);
static const Atom W178("W", 74, 178, 0.000000, 177.945850, 18.6812168462);
static const Atom W179("W", 74, 179, 0.000000, 178.947072, 18.7863277285);
static const Atom W180("W", 74, 180, 0.120000, 179.946706, 18.8912718984);
static const Atom W181("W", 74, 181, 0.000000, 180.948198, 18.996411126);
static const Atom W182("W", 74, 182, 26.500000, 181.948206, 19.1013945594);
static const Atom W183("W", 74, 183, 14.310000, 182.950224, 19.2065890603);
static const Atom W184("W", 74, 184, 30.640000, 183.950933, 19.3116459921);
static const Atom W185("W", 74, 185, 0.000000, 184.953421, 19.4168897823);
static const Atom W186("W", 74, 186, 28.430000, 185.954362, 19.5219712065);
static const Atom W187("W", 74, 187, 0.000000, 186.957158, 19.6272473314);
static const Atom W188("W", 74, 188, 0.000000, 187.958487, 19.7323694468);
static const Atom W189("W", 74, 189, 0.000000, 188.961910, 19.8377113958);
static const Atom W190("W", 74, 190, 0.000000, 189.963180, 19.9428273172);
static const Atom Re("Re", 75, 0, 0.000000, 186.207000, 21.02);
static const Atom Re160("Re", 75, 160, 0.000000, 159.981490, 18.0595300918);
static const Atom Re161("Re", 75, 161, 0.000000, 160.977660, 18.1719828642);
static const Atom Re162("Re", 75, 162, 0.000000, 161.975710, 18.2846478607);
static const Atom Re163("Re", 75, 163, 0.000000, 162.971970, 18.3971107928);
static const Atom Re164("Re", 75, 164, 0.000000, 163.970320, 18.5098096548);
static const Atom Re165("Re", 75, 165, 0.000000, 164.967050, 18.622325643);
static const Atom Re166("Re", 75, 166, 0.000000, 165.965800, 18.735069659);
static const Atom Re167("Re", 75, 167, 0.000000, 166.962560, 18.8475890337);
static const Atom Re168("Re", 75, 168, 0.000000, 167.961610, 18.9603669153);
static const Atom Re169("Re", 75, 169, 0.000000, 168.958830, 19.0729382171);
static const Atom Re170("Re", 75, 170, 0.000000, 169.958160, 19.1857477066);
static const Atom Re171("Re", 75, 171, 0.000000, 170.955550, 19.2983381989);
static const Atom Re172("Re", 75, 172, 0.000000, 171.955290, 19.4111939712);
static const Atom Re173("Re", 75, 173, 0.000000, 172.953060, 19.5238273599);
static const Atom Re174("Re", 75, 174, 0.000000, 173.953110, 19.6367181266);
static const Atom Re175("Re", 75, 175, 0.000000, 174.951390, 19.7494090867);
static const Atom Re176("Re", 75, 176, 0.000000, 175.951570, 19.8623145285);
static const Atom Re177("Re", 75, 177, 0.000000, 176.950270, 19.9750529003);
static const Atom Re178("Re", 75, 178, 0.000000, 177.950850, 20.0880034961);
static const Atom Re179("Re", 75, 179, 0.000000, 178.949980, 20.2007904085);
static const Atom Re180("Re", 75, 180, 0.000000, 179.950790, 20.3137669679);
static const Atom Re181("Re", 75, 181, 0.000000, 180.950065, 20.4265702487);
static const Atom Re182("Re", 75, 182, 0.000000, 181.951210, 20.5395846246);
static const Atom Re183("Re", 75, 183, 0.000000, 182.950821, 20.6524258348);
static const Atom Re184("Re", 75, 184, 0.000000, 183.952524, 20.7655032006);
static const Atom Re185("Re", 75, 185, 37.400000, 184.952956, 20.8784370556);
static const Atom Re186("Re", 75, 186, 0.000000, 185.954987, 20.9915514816);
static const Atom Re187("Re", 75, 187, 62.600000, 186.955751, 21.1045228258);
static const Atom Re188("Re", 75, 188, 0.000000, 187.958112, 21.2176745264);
static const Atom Re189("Re", 75, 189, 0.000000, 188.959228, 21.3306855948);
static const Atom Re190("Re", 75, 190, 0.000000, 189.961820, 21.4438633156);
static const Atom Re191("Re", 75, 191, 0.000000, 190.963124, 21.5568956402);
static const Atom Re192("Re", 75, 192, 0.000000, 191.965960, 21.6701009049);
static const Atom Os("Os", 76, 0, 0.000000, 190.230000, 22.57);
static const Atom Os162("Os", 76, 162, 0.000000, 161.983820, 19.2187079714);
static const Atom Os163("Os", 76, 163, 0.000000, 162.982050, 19.337143818);
static const Atom Os164("Os", 76, 164, 0.000000, 163.977930, 19.4553008469);
static const Atom Os165("Os", 76, 165, 0.000000, 164.976480, 19.5737746601);
static const Atom Os166("Os", 76, 166, 0.000000, 165.972530, 19.6919518588);
static const Atom Os167("Os", 76, 167, 0.000000, 166.971550, 19.8104814356);
static const Atom Os168("Os", 76, 168, 0.000000, 167.967830, 19.9286859228);
static const Atom Os169("Os", 76, 169, 0.000000, 168.967080, 20.0472427882);
static const Atom Os170("Os", 76, 170, 0.000000, 169.963570, 20.165472191);
static const Atom Os171("Os", 76, 171, 0.000000, 170.963040, 20.2840551585);
static const Atom Os172("Os", 76, 172, 0.000000, 171.960080, 20.4023498165);
static const Atom Os173("Os", 76, 173, 0.000000, 172.959790, 20.520961259);
static const Atom Os174("Os", 76, 174, 0.000000, 173.957120, 20.6392903243);
static const Atom Os175("Os", 76, 175, 0.000000, 174.957080, 20.7579314283);
static const Atom Os176("Os", 76, 176, 0.000000, 175.954950, 20.8763245624);
static const Atom Os177("Os", 76, 177, 0.000000, 176.955050, 20.9949822767);
static const Atom Os178("Os", 76, 178, 0.000000, 177.953350, 21.1134264285);
static const Atom Os179("Os", 76, 179, 0.000000, 178.953950, 21.2321434658);
static const Atom Os180("Os", 76, 180, 0.000000, 179.952350, 21.3505994822);
static const Atom Os181("Os", 76, 181, 0.000000, 180.953270, 21.4693544861);
static const Atom Os182("Os", 76, 182, 0.000000, 181.952186, 21.5878717238);
static const Atom Os183("Os", 76, 183, 0.000000, 182.953110, 21.7066272023);
static const Atom Os184("Os", 76, 184, 0.020000, 183.952491, 21.8251996103);
static const Atom Os185("Os", 76, 185, 0.000000, 184.954043, 21.9440295984);
static const Atom Os186("Os", 76, 186, 1.590000, 185.953838, 22.0626511258);
static const Atom Os187("Os", 76, 187, 1.960000, 186.955748, 22.1815235773);
static const Atom Os188("Os", 76, 188, 13.240000, 187.955836, 22.3001798797);
static const Atom Os189("Os", 76, 189, 16.150000, 188.958145, 22.4190996709);
static const Atom Os190("Os", 76, 190, 26.260000, 189.958445, 22.5377811263);
static const Atom Os191("Os", 76, 191, 0.000000, 190.960928, 22.6567215737);
static const Atom Os192("Os", 76, 192, 40.780000, 191.961479, 22.7754327973);
static const Atom Os193("Os", 76, 193, 0.000000, 192.964148, 22.8943953128);
static const Atom Os194("Os", 76, 194, 0.000000, 193.965179, 23.0131634865);
static const Atom Os195("Os", 76, 195, 0.000000, 194.968120, 23.1321582737);
static const Atom Os196("Os", 76, 196, 0.000000, 195.969620, 23.2509820922);
static const Atom Ir("Ir", 77, 0, 0.000000, 192.217000, 22.42);
static const Atom Ir165("Ir", 77, 165, 0.000000, 164.987580, 19.2439874912);
static const Atom Ir166("Ir", 77, 166, 0.000000, 165.985510, 19.3603850554);
static const Atom Ir167("Ir", 77, 167, 0.000000, 166.981540, 19.4765610055);
static const Atom Ir168("Ir", 77, 168, 0.000000, 167.979970, 19.5930168892);
static const Atom Ir169("Ir", 77, 169, 0.000000, 168.976390, 19.7092383286);
static const Atom Ir170("Ir", 77, 170, 0.000000, 169.975030, 19.8257187065);
static const Atom Ir171("Ir", 77, 171, 0.000000, 170.971780, 19.9419786366);
static const Atom Ir172("Ir", 77, 172, 0.000000, 171.970640, 20.0584846751);
static const Atom Ir173("Ir", 77, 173, 0.000000, 172.967710, 20.1747819298);
static const Atom Ir174("Ir", 77, 174, 0.000000, 173.966800, 20.2913147953);
static const Atom Ir175("Ir", 77, 175, 0.000000, 174.964280, 20.4076598719);
static const Atom Ir176("Ir", 77, 176, 0.000000, 175.963510, 20.5242090668);
static const Atom Ir177("Ir", 77, 177, 0.000000, 176.961170, 20.6405751385);
static const Atom Ir178("Ir", 77, 178, 0.000000, 177.961080, 20.757203648);
static const Atom Ir179("Ir", 77, 179, 0.000000, 178.959150, 20.8736175416);
static const Atom Ir180("Ir", 77, 180, 0.000000, 179.959250, 20.9902682125);
static const Atom Ir181("Ir", 77, 181, 0.000000, 180.957640, 21.1067194306);
static const Atom Ir182("Ir", 77, 182, 0.000000, 181.958130, 21.2234155907);
static const Atom Ir183("Ir", 77, 183, 0.000000, 182.956810, 21.3399006342);
static const Atom Ir184("Ir", 77, 184, 0.000000, 183.957390, 21.4566072918);
static const Atom Ir185("Ir", 77, 185, 0.000000, 184.956590, 21.5731529875);
static const Atom Ir186("Ir", 77, 186, 0.000000, 185.957951, 21.6899507402);
static const Atom Ir187("Ir", 77, 187, 0.000000, 186.957361, 21.8065209301);
static const Atom Ir188("Ir", 77, 188, 0.000000, 187.958852, 21.9233338458);
static const Atom Ir189("Ir", 77, 189, 0.000000, 188.958716, 22.0399569899);
static const Atom Ir190("Ir", 77, 190, 0.000000, 189.960590, 22.1568145783);
static const Atom Ir191("Ir", 77, 191, 37.300000, 190.960591, 22.2734537019);
static const Atom Ir192("Ir", 77, 192, 0.000000, 191.962602, 22.3903272699);
static const Atom Ir193("Ir", 77, 193, 62.700000, 192.962924, 22.5070038346);
static const Atom Ir194("Ir", 77, 194, 0.000000, 193.965076, 22.6238938487);
static const Atom Ir195("Ir", 77, 195, 0.000000, 194.965977, 22.7406379474);
static const Atom Ir196("Ir", 77, 196, 0.000000, 195.968380, 22.8575572379);
static const Atom Ir197("Ir", 77, 197, 0.000000, 196.969636, 22.9743427435);
static const Atom Ir198("Ir", 77, 198, 0.000000, 197.972280, 23.091290144);
static const Atom Ir199("Ir", 77, 199, 0.000000, 198.973790, 23.2081052758);
static const Atom Pt("Pt", 78, 0, 0.000000, 195.078000, 21.45);
static const Atom Pt168("Pt", 78, 168, 0.000000, 167.988040, 18.4712958816);
static const Atom Pt169("Pt", 78, 169, 0.000000, 168.986420, 18.5810737705);
static const Atom Pt170("Pt", 78, 170, 0.000000, 169.982330, 18.690580068);
static const Atom Pt171("Pt", 78, 171, 0.000000, 170.981250, 18.8004173331);
static const Atom Pt172("Pt", 78, 172, 0.000000, 171.977380, 18.9099478209);
static const Atom Pt173("Pt", 78, 173, 0.000000, 172.976500, 19.0198070772);
static const Atom Pt174("Pt", 78, 174, 0.000000, 173.972811, 19.129357467);
static const Atom Pt175("Pt", 78, 175, 0.000000, 174.972280, 19.239255098);
static const Atom Pt176("Pt", 78, 176, 0.000000, 175.969000, 19.3488504598);
static const Atom Pt177("Pt", 78, 177, 0.000000, 176.968450, 19.4587460016);
static const Atom Pt178("Pt", 78, 178, 0.000000, 177.965710, 19.5684007397);
static const Atom Pt179("Pt", 78, 179, 0.000000, 178.965480, 19.6783314674);
static const Atom Pt180("Pt", 78, 180, 0.000000, 179.963220, 19.7880389844);
static const Atom Pt181("Pt", 78, 181, 0.000000, 180.963180, 19.8979906038);
static const Atom Pt182("Pt", 78, 182, 0.000000, 181.961270, 20.0077366054);
static const Atom Pt183("Pt", 78, 183, 0.000000, 182.961730, 20.1177432027);
static const Atom Pt184("Pt", 78, 184, 0.000000, 183.959900, 20.2274980008);
static const Atom Pt185("Pt", 78, 185, 0.000000, 184.960750, 20.337547481);
static const Atom Pt186("Pt", 78, 186, 0.000000, 185.959430, 20.4473583567);
static const Atom Pt187("Pt", 78, 187, 0.000000, 186.960560, 20.5574386246);
static const Atom Pt188("Pt", 78, 188, 0.000000, 187.959396, 20.6672666533);
static const Atom Pt189("Pt", 78, 189, 0.000000, 188.960832, 20.7773805678);
static const Atom Pt190("Pt", 78, 190, 0.014000, 189.959930, 20.887237405);
static const Atom Pt191("Pt", 78, 191, 0.000000, 190.961685, 20.9973863954);
static const Atom Pt192("Pt", 78, 192, 0.782000, 191.961035, 21.1072709416);
static const Atom Pt193("Pt", 78, 193, 0.000000, 192.962985, 21.2174413735);
static const Atom Pt194("Pt", 78, 194, 32.967000, 193.962664, 21.3273620952);
static const Atom Pt195("Pt", 78, 195, 33.832000, 194.964774, 21.43755012);
static const Atom Pt196("Pt", 78, 196, 25.242000, 195.964935, 21.5475238405);
static const Atom Pt197("Pt", 78, 197, 0.000000, 196.967323, 21.657742433);
static const Atom Pt198("Pt", 78, 198, 7.163000, 197.967876, 21.7677592563);
static const Atom Pt199("Pt", 78, 199, 0.000000, 198.970576, 21.8780121551);
static const Atom Pt200("Pt", 78, 200, 0.000000, 199.971424, 21.9880614154);
static const Atom Pt201("Pt", 78, 201, 0.000000, 200.974500, 22.0983556577);
static const Atom Pt202("Pt", 78, 202, 0.000000, 201.975740, 22.2084480208);
static const Atom Au("Au", 79, 0, 0.000000, 196.966550, 19.3);
static const Atom Au171("Au", 79, 171, 0.000000, 170.991770, 16.754830508);
static const Atom Au172("Au", 79, 172, 0.000000, 171.990110, 16.8526540319);
static const Atom Au173("Au", 79, 173, 0.000000, 172.986400, 16.950276684);
static const Atom Au174("Au", 79, 174, 0.000000, 173.984920, 17.0481178454);
static const Atom Au175("Au", 79, 175, 0.000000, 174.981550, 17.1457738129);
static const Atom Au176("Au", 79, 176, 0.000000, 175.980270, 17.2436345715);
static const Atom Au177("Au", 79, 177, 0.000000, 176.977220, 17.3413218945);
static const Atom Au178("Au", 79, 178, 0.000000, 177.975980, 17.4391865725);
static const Atom Au179("Au", 79, 179, 0.000000, 178.973410, 17.536920929);
static const Atom Au180("Au", 79, 180, 0.000000, 179.972400, 17.6348081438);
static const Atom Au181("Au", 79, 181, 0.000000, 180.969950, 17.7325542586);
static const Atom Au182("Au", 79, 182, 0.000000, 181.969620, 17.830508104);
static const Atom Au183("Au", 79, 183, 0.000000, 182.967620, 17.9282983126);
static const Atom Au184("Au", 79, 184, 0.000000, 183.967470, 18.0262697956);
static const Atom Au185("Au", 79, 185, 0.000000, 184.965810, 18.1240933194);
static const Atom Au186("Au", 79, 186, 0.000000, 185.966000, 18.2220981177);
static const Atom Au187("Au", 79, 187, 0.000000, 186.964560, 18.3199431985);
static const Atom Au188("Au", 79, 188, 0.000000, 187.965090, 18.4179813121);
static const Atom Au189("Au", 79, 189, 0.000000, 188.963890, 18.5158499095);
static const Atom Au190("Au", 79, 190, 0.000000, 189.964699, 18.6139153613);
static const Atom Au191("Au", 79, 191, 0.000000, 190.963650, 18.7117987547);
static const Atom Au192("Au", 79, 192, 0.000000, 191.964810, 18.8098985995);
static const Atom Au193("Au", 79, 193, 0.000000, 192.964132, 18.9078183458);
static const Atom Au194("Au", 79, 194, 0.000000, 193.965339, 19.005922796);
static const Atom Au195("Au", 79, 195, 0.000000, 194.965018, 19.1038775234);
static const Atom Au196("Au", 79, 196, 0.000000, 195.966551, 19.2020139171);
static const Atom Au197("Au", 79, 197, 100.000000, 196.966552, 19.300000196);
static const Atom Au198("Au", 79, 198, 0.000000, 197.968225, 19.3981503078);
static const Atom Au199("Au", 79, 199, 0.000000, 198.968748, 19.4961877354);
static const Atom Au200("Au", 79, 200, 0.000000, 199.970720, 19.5943671451);
static const Atom Au201("Au", 79, 201, 0.000000, 200.971641, 19.6924435713);
static const Atom Au202("Au", 79, 202, 0.000000, 201.973790, 19.7906403245);
static const Atom Au203("Au", 79, 203, 0.000000, 202.975137, 19.8887584927);
static const Atom Au204("Au", 79, 204, 0.000000, 203.977710, 19.9869967921);
static const Atom Au205("Au", 79, 205, 0.000000, 204.979610, 20.0851691467);
static const Atom Hg("Hg", 80, 0, 0.000000, 200.590000, 13.546);
static const Atom Hg175("Hg", 80, 175, 0.000000, 174.991410, 11.8173071432);
static const Atom Hg176("Hg", 80, 176, 0.000000, 175.987410, 11.8845678043);
static const Atom Hg177("Hg", 80, 177, 0.000000, 176.986340, 11.9520263305);
static const Atom Hg178("Hg", 80, 178, 0.000000, 177.982476, 12.0192961758);
static const Atom Hg179("Hg", 80, 179, 0.000000, 178.981780, 12.0867799585);
static const Atom Hg180("Hg", 80, 180, 0.000000, 179.978320, 12.1540770862);
static const Atom Hg181("Hg", 80, 181, 0.000000, 180.977810, 12.2215734297);
static const Atom Hg182("Hg", 80, 182, 0.000000, 181.974750, 12.2888975697);
static const Atom Hg183("Hg", 80, 183, 0.000000, 182.974560, 12.356415523);
static const Atom Hg184("Hg", 80, 184, 0.000000, 183.971900, 12.4237666753);
static const Atom Hg185("Hg", 80, 185, 0.000000, 184.971980, 12.491302862);
static const Atom Hg186("Hg", 80, 186, 0.000000, 185.969460, 12.5586634686);
static const Atom Hg187("Hg", 80, 187, 0.000000, 186.969790, 12.6262165379);
static const Atom Hg188("Hg", 80, 188, 0.000000, 187.967560, 12.6935967285);
static const Atom Hg189("Hg", 80, 189, 0.000000, 188.968130, 12.7611660052);
static const Atom Hg190("Hg", 80, 190, 0.000000, 189.966280, 12.8285718574);
static const Atom Hg191("Hg", 80, 191, 0.000000, 190.967060, 12.8961553156);
static const Atom Hg192("Hg", 80, 192, 0.000000, 191.965570, 12.9635854789);
static const Atom Hg193("Hg", 80, 193, 0.000000, 192.966644, 13.0311887912);
static const Atom Hg194("Hg", 80, 194, 0.000000, 193.965382, 13.0986343515);
static const Atom Hg195("Hg", 80, 195, 0.000000, 194.966640, 13.1662500894);
static const Atom Hg196("Hg", 80, 196, 0.150000, 195.965815, 13.2337251607);
static const Atom Hg197("Hg", 80, 197, 0.000000, 196.967195, 13.3013491374);
static const Atom Hg198("Hg", 80, 198, 9.970000, 197.966752, 13.3688500054);
static const Atom Hg199("Hg", 80, 199, 16.870000, 198.968262, 13.4364827611);
static const Atom Hg200("Hg", 80, 200, 23.100000, 199.968309, 13.5040167192);
static const Atom Hg201("Hg", 80, 201, 13.180000, 200.970285, 13.5716809443);
static const Atom Hg202("Hg", 80, 202, 29.860000, 201.970626, 13.6392347564);
static const Atom Hg203("Hg", 80, 203, 0.000000, 202.972857, 13.7069162018);
static const Atom Hg204("Hg", 80, 204, 6.870000, 203.973476, 13.7744887876);
static const Atom Hg205("Hg", 80, 205, 0.000000, 204.976056, 13.8421938012);
static const Atom Hg206("Hg", 80, 206, 0.000000, 205.977499, 13.9098220323);
static const Atom Hg207("Hg", 80, 207, 0.000000, 206.982580, 13.9776959404);
static const Atom Hg208("Hg", 80, 208, 0.000000, 207.985940, 14.045453628);
static const Atom Tl("Tl", 81, 0, 0.000000, 204.383300, 11.85);
static const Atom Tl177("Tl", 81, 177, 0.000000, 176.996880, 10.2621546281);
static const Atom Tl178("Tl", 81, 178, 0.000000, 177.995230, 10.320038259);
static const Atom Tl179("Tl", 81, 179, 0.000000, 178.991470, 10.3777995536);
static const Atom Tl180("Tl", 81, 180, 0.000000, 179.990190, 10.4357046368);
static const Atom Tl181("Tl", 81, 181, 0.000000, 180.986900, 10.4934931817);
static const Atom Tl182("Tl", 81, 182, 0.000000, 181.985610, 10.5513976851);
static const Atom Tl183("Tl", 81, 183, 0.000000, 182.982700, 10.6092082621);
static const Atom Tl184("Tl", 81, 184, 0.000000, 183.981760, 10.6671330583);
static const Atom Tl185("Tl", 81, 185, 0.000000, 184.979100, 10.7249581301);
static const Atom Tl186("Tl", 81, 186, 0.000000, 185.978550, 10.7829055383);
static const Atom Tl187("Tl", 81, 187, 0.000000, 186.976170, 10.8407468443);
static const Atom Tl188("Tl", 81, 188, 0.000000, 187.975920, 10.8987116462);
static const Atom Tl189("Tl", 81, 189, 0.000000, 188.973690, 10.9565616491);
static const Atom Tl190("Tl", 81, 190, 0.000000, 189.973790, 11.0145467438);
static const Atom Tl191("Tl", 81, 191, 0.000000, 190.971890, 11.0724158799);
static const Atom Tl192("Tl", 81, 192, 0.000000, 191.972140, 11.1304096714);
static const Atom Tl193("Tl", 81, 193, 0.000000, 192.970550, 11.1882967811);
static const Atom Tl194("Tl", 81, 194, 0.000000, 193.971050, 11.2463050675);
static const Atom Tl195("Tl", 81, 195, 0.000000, 194.969650, 11.3042031932);
static const Atom Tl196("Tl", 81, 196, 0.000000, 195.970520, 11.3622329319);
static const Atom Tl197("Tl", 81, 197, 0.000000, 196.969540, 11.420155409);
static const Atom Tl198("Tl", 81, 198, 0.000000, 197.970470, 11.4781886265);
static const Atom Tl199("Tl", 81, 199, 0.000000, 198.969810, 11.5361296569);
static const Atom Tl200("Tl", 81, 200, 0.000000, 199.970945, 11.5941747601);
static const Atom Tl201("Tl", 81, 201, 0.000000, 200.970804, 11.6521458818);
static const Atom Tl202("Tl", 81, 202, 0.000000, 201.972091, 11.7101997979);
static const Atom Tl203("Tl", 81, 203, 29.524000, 202.972329, 11.7681928937);
static const Atom Tl204("Tl", 81, 204, 0.000000, 203.973849, 11.826260319);
static const Atom Tl205("Tl", 81, 205, 70.476000, 204.974412, 11.8842722581);
static const Atom Tl206("Tl", 81, 206, 0.000000, 205.976095, 11.942349134);
static const Atom Tl207("Tl", 81, 207, 0.000000, 206.977408, 12.0004045575);
static const Atom Tl208("Tl", 81, 208, 0.000000, 207.982005, 12.0586503851);
static const Atom Tl209("Tl", 81, 209, 0.000000, 208.985349, 12.1168235646);
static const Atom Tl210("Tl", 81, 210, 0.000000, 209.990066, 12.1750763497);
static const Atom Pb("Pb", 82, 0, 0.000000, 207.200000, 11.35);
static const Atom Pb181("Pb", 82, 181, 0.000000, 180.996710, 9.91463638272);
static const Atom Pb182("Pb", 82, 182, 0.000000, 181.992676, 9.96919340058);
static const Atom Pb183("Pb", 82, 183, 0.000000, 182.991930, 10.0239305285);
static const Atom Pb184("Pb", 82, 184, 0.000000, 183.988200, 10.0785041988);
static const Atom Pb185("Pb", 82, 185, 0.000000, 184.987580, 10.1332482288);
static const Atom Pb186("Pb", 82, 186, 0.000000, 185.984300, 10.1878465492);
static const Atom Pb187("Pb", 82, 187, 0.000000, 186.984030, 10.2426097514);
static const Atom Pb188("Pb", 82, 188, 0.000000, 187.981060, 10.2972250531);
static const Atom Pb189("Pb", 82, 189, 0.000000, 188.980880, 10.3519931853);
static const Atom Pb190("Pb", 82, 190, 0.000000, 189.978180, 10.406623277);
static const Atom Pb191("Pb", 82, 191, 0.000000, 190.978200, 10.4614023649);
static const Atom Pb192("Pb", 82, 192, 0.000000, 191.975760, 10.5160466988);
static const Atom Pb193("Pb", 82, 193, 0.000000, 192.976080, 10.5708422201);
static const Atom Pb194("Pb", 82, 194, 0.000000, 193.973970, 10.6255046308);
static const Atom Pb195("Pb", 82, 195, 0.000000, 194.974470, 10.6803100121);
static const Atom Pb196("Pb", 82, 196, 0.000000, 195.972710, 10.7349915951);
static const Atom Pb197("Pb", 82, 197, 0.000000, 196.973380, 10.7898062886);
static const Atom Pb198("Pb", 82, 198, 0.000000, 197.971980, 10.8445075917);
static const Atom Pb199("Pb", 82, 199, 0.000000, 198.972910, 10.8993365275);
static const Atom Pb200("Pb", 82, 200, 0.000000, 199.971816, 10.9540545927);
static const Atom Pb201("Pb", 82, 201, 0.000000, 200.972850, 11.0088892254);
static const Atom Pb202("Pb", 82, 202, 0.000000, 201.972144, 11.0636285444);
static const Atom Pb203("Pb", 82, 203, 0.000000, 202.973375, 11.1184739684);
static const Atom Pb204("Pb", 82, 204, 1.400000, 203.973029, 11.1732330075);
static const Atom Pb205("Pb", 82, 205, 0.000000, 204.974467, 11.2280897705);
static const Atom Pb206("Pb", 82, 206, 24.100000, 205.974449, 11.2828667768);
static const Atom Pb207("Pb", 82, 207, 22.100000, 206.975881, 11.3377232111);
static const Atom Pb208("Pb", 82, 208, 52.400000, 207.976636, 11.3925425608);
static const Atom Pb209("Pb", 82, 209, 0.000000, 208.981075, 11.4475637126);
static const Atom Pb210("Pb", 82, 210, 0.000000, 209.984173, 11.5025114071);
static const Atom Pb211("Pb", 82, 211, 0.000000, 210.988731, 11.5575390775);
static const Atom Pb212("Pb", 82, 212, 0.000000, 211.991887, 11.6124899765);
static const Atom Pb213("Pb", 82, 213, 0.000000, 212.996500, 11.6675206322);
static const Atom Pb214("Pb", 82, 214, 0.000000, 213.999798, 11.7224792878);
static const Atom Bi("Bi", 83, 0, 0.000000, 208.980380, 9.747);
static const Atom Bi185("Bi", 83, 185, 0.000000, 184.997710, 8.62843047453);
static const Atom Bi186("Bi", 83, 186, 0.000000, 185.996480, 8.67501384848);
static const Atom Bi187("Bi", 83, 187, 0.000000, 186.993460, 8.7215137355);
static const Atom Bi188("Bi", 83, 188, 0.000000, 187.992170, 8.76809431101);
static const Atom Bi189("Bi", 83, 189, 0.000000, 188.989510, 8.8146109887);
static const Atom Bi190("Bi", 83, 190, 0.000000, 189.988520, 8.86120555643);
static const Atom Bi191("Bi", 83, 191, 0.000000, 190.986050, 8.90773109586);
static const Atom Bi192("Bi", 83, 192, 0.000000, 191.985370, 8.95434012222);
static const Atom Bi193("Bi", 83, 193, 0.000000, 192.983060, 9.00087312417);
static const Atom Bi194("Bi", 83, 194, 0.000000, 193.982750, 9.0474994076);
static const Atom Bi195("Bi", 83, 195, 0.000000, 194.980750, 9.09404686818);
static const Atom Bi196("Bi", 83, 196, 0.000000, 195.980610, 9.14068108054);
static const Atom Bi197("Bi", 83, 197, 0.000000, 196.978930, 9.18724346616);
static const Atom Bi198("Bi", 83, 198, 0.000000, 197.979020, 9.23388840589);
static const Atom Bi199("Bi", 83, 199, 0.000000, 198.977580, 9.28046198528);
static const Atom Bi200("Bi", 83, 200, 0.000000, 199.978140, 9.32712884616);
static const Atom Bi201("Bi", 83, 201, 0.000000, 200.976970, 9.37371501856);
static const Atom Bi202("Bi", 83, 202, 0.000000, 201.977670, 9.42038840914);
static const Atom Bi203("Bi", 83, 203, 0.000000, 202.976868, 9.46699174533);
static const Atom Bi204("Bi", 83, 204, 0.000000, 203.977805, 9.51367618977);
static const Atom Bi205("Bi", 83, 205, 0.000000, 204.977375, 9.56029687631);
static const Atom Bi206("Bi", 83, 206, 0.000000, 205.978483, 9.60698929632);
static const Atom Bi207("Bi", 83, 207, 0.000000, 206.978455, 9.65362873244);
static const Atom Bi208("Bi", 83, 208, 0.000000, 207.979727, 9.70032880153);
static const Atom Bi209("Bi", 83, 209, 100.000000, 208.980383, 9.74700013992);
static const Atom Bi210("Bi", 83, 210, 0.000000, 209.984105, 9.79381447883);
static const Atom Bi211("Bi", 83, 211, 0.000000, 210.987258, 9.84060227915);
static const Atom Bi212("Bi", 83, 212, 0.000000, 211.991272, 9.88743023715);
static const Atom Bi213("Bi", 83, 213, 0.000000, 212.994375, 9.93421570544);
static const Atom Bi214("Bi", 83, 214, 0.000000, 213.998699, 9.98105812207);
static const Atom Bi215("Bi", 83, 215, 0.000000, 215.001830, 10.0278448963);
static const Atom Bi216("Bi", 83, 216, 0.000000, 216.006200, 10.0746894584);
static const Atom Po("Po", 84, 0, 0.000000, 209.000000, 9.32);
static const Atom Po190("Po", 84, 190, 0.000000, 189.995110, 8.47250921148);
static const Atom Po191("Po", 84, 191, 0.000000, 190.994650, 8.517082);
static const Atom Po192("Po", 84, 192, 0.000000, 191.991520, 8.5615357244);
static const Atom Po193("Po", 84, 193, 0.000000, 192.991100, 8.60611029665);
static const Atom Po194("Po", 84, 194, 0.000000, 193.988280, 8.65057784498);
static const Atom Po195("Po", 84, 195, 0.000000, 194.988050, 8.69516088995);
static const Atom Po196("Po", 84, 196, 0.000000, 195.985510, 8.7396409244);
static const Atom Po197("Po", 84, 197, 0.000000, 196.985570, 8.78423690144);
static const Atom Po198("Po", 84, 198, 0.000000, 197.983340, 8.82873075981);
static const Atom Po199("Po", 84, 199, 0.000000, 198.983600, 8.8733356555);
static const Atom Po200("Po", 84, 200, 0.000000, 199.981740, 8.9178460134);
static const Atom Po201("Po", 84, 201, 0.000000, 200.982210, 8.96246027368);
static const Atom Po202("Po", 84, 202, 0.000000, 201.980700, 9.00698623923);
static const Atom Po203("Po", 84, 203, 0.000000, 202.981410, 9.05161120191);
static const Atom Po204("Po", 84, 204, 0.000000, 203.980307, 9.09615531694);
static const Atom Po205("Po", 84, 205, 0.000000, 204.981170, 9.14078710239);
static const Atom Po206("Po", 84, 206, 0.000000, 205.980465, 9.18534896555);
static const Atom Po207("Po", 84, 207, 0.000000, 206.981578, 9.22999189933);
static const Atom Po208("Po", 84, 208, 0.000000, 207.981231, 9.27456972689);
static const Atom Po209("Po", 84, 209, 0.000000, 208.982416, 9.31921587139);
static const Atom Po210("Po", 84, 210, 0.000000, 209.982857, 9.36382883847);
static const Atom Po211("Po", 84, 211, 0.000000, 210.986637, 9.40859070258);
static const Atom Po212("Po", 84, 212, 0.000000, 211.988852, 9.45328277818);
static const Atom Po213("Po", 84, 213, 0.000000, 212.992843, 9.49805405148);
static const Atom Po214("Po", 84, 214, 0.000000, 213.995186, 9.54275183502);
static const Atom Po215("Po", 84, 215, 0.000000, 214.999415, 9.58753372153);
static const Atom Po216("Po", 84, 216, 0.000000, 216.001905, 9.63223806921);
static const Atom Po217("Po", 84, 217, 0.000000, 217.006250, 9.67702511962);
static const Atom Po218("Po", 84, 218, 0.000000, 218.008966, 9.72173952754);
static const Atom At("At", 85, 0, 0.000000, 210.000000, NAN);
static const Atom At193("At", 85, 193, 0.000000, 193.000190, NAN);
static const Atom At194("At", 85, 194, 0.000000, 193.998970, NAN);
static const Atom At195("At", 85, 195, 0.000000, 194.996550, NAN);
static const Atom At196("At", 85, 196, 0.000000, 195.995700, NAN);
static const Atom At197("At", 85, 197, 0.000000, 196.993290, NAN);
static const Atom At198("At", 85, 198, 0.000000, 197.992750, NAN);
static const Atom At199("At", 85, 199, 0.000000, 198.990630, NAN);
static const Atom At200("At", 85, 200, 0.000000, 199.990290, NAN);
static const Atom At201("At", 85, 201, 0.000000, 200.988490, NAN);
static const Atom At202("At", 85, 202, 0.000000, 201.988450, NAN);
static const Atom At203("At", 85, 203, 0.000000, 202.986850, NAN);
static const Atom At204("At", 85, 204, 0.000000, 203.987260, NAN);
static const Atom At205("At", 85, 205, 0.000000, 204.986040, NAN);
static const Atom At206("At", 85, 206, 0.000000, 205.986600, NAN);
static const Atom At207("At", 85, 207, 0.000000, 206.985776, NAN);
static const Atom At208("At", 85, 208, 0.000000, 207.986583, NAN);
static const Atom At209("At", 85, 209, 0.000000, 208.986159, NAN);
static const Atom At210("At", 85, 210, 0.000000, 209.987131, NAN);
static const Atom At211("At", 85, 211, 0.000000, 210.987481, NAN);
static const Atom At212("At", 85, 212, 0.000000, 211.990735, NAN);
static const Atom At213("At", 85, 213, 0.000000, 212.992921, NAN);
static const Atom At214("At", 85, 214, 0.000000, 213.996356, NAN);
static const Atom At215("At", 85, 215, 0.000000, 214.998641, NAN);
static const Atom At216("At", 85, 216, 0.000000, 216.002409, NAN);
static const Atom At217("At", 85, 217, 0.000000, 217.004710, NAN);
static const Atom At218("At", 85, 218, 0.000000, 218.008681, NAN);
static const Atom At219("At", 85, 219, 0.000000, 219.011300, NAN);
static const Atom At220("At", 85, 220, 0.000000, 220.015300, NAN);
static const Atom At221("At", 85, 221, 0.000000, 221.018140, NAN);
static const Atom At222("At", 85, 222, 0.000000, 222.022330, NAN);
static const Atom At223("At", 85, 223, 0.000000, 223.025340, NAN);
static const Atom Rn("Rn", 86, 0, 0.000000, 222.000000, NAN);
static const Atom Rn196("Rn", 86, 196, 0.000000, 196.002310, NAN);
static const Atom Rn197("Rn", 86, 197, 0.000000, 197.001660, NAN);
static const Atom Rn198("Rn", 86, 198, 0.000000, 197.998780, NAN);
static const Atom Rn199("Rn", 86, 199, 0.000000, 198.998310, NAN);
static const Atom Rn200("Rn", 86, 200, 0.000000, 199.995680, NAN);
static const Atom Rn201("Rn", 86, 201, 0.000000, 200.995540, NAN);
static const Atom Rn202("Rn", 86, 202, 0.000000, 201.993220, NAN);
static const Atom Rn203("Rn", 86, 203, 0.000000, 202.993320, NAN);
static const Atom Rn204("Rn", 86, 204, 0.000000, 203.991370, NAN);
static const Atom Rn205("Rn", 86, 205, 0.000000, 204.991670, NAN);
static const Atom Rn206("Rn", 86, 206, 0.000000, 205.990160, NAN);
static const Atom Rn207("Rn", 86, 207, 0.000000, 206.990730, NAN);
static const Atom Rn208("Rn", 86, 208, 0.000000, 207.989631, NAN);
static const Atom Rn209("Rn", 86, 209, 0.000000, 208.990380, NAN);
static const Atom Rn210("Rn", 86, 210, 0.000000, 209.989680, NAN);
static const Atom Rn211("Rn", 86, 211, 0.000000, 210.990585, NAN);
static const Atom Rn212("Rn", 86, 212, 0.000000, 211.990689, NAN);
static const Atom Rn213("Rn", 86, 213, 0.000000, 212.993868, NAN);
static const Atom Rn214("Rn", 86, 214, 0.000000, 213.995346, NAN);
static const Atom Rn215("Rn", 86, 215, 0.000000, 214.998729, NAN);
static const Atom Rn216("Rn", 86, 216, 0.000000, 216.000258, NAN);
static const Atom Rn217("Rn", 86, 217, 0.000000, 217.003915, NAN);
static const Atom Rn218("Rn", 86, 218, 0.000000, 218.005586, NAN);
static const Atom Rn219("Rn", 86, 219, 0.000000, 219.009475, NAN);
static const Atom Rn220("Rn", 86, 220, 0.000000, 220.011384, NAN);
static const Atom Rn221("Rn", 86, 221, 0.000000, 221.015460, NAN);
static const Atom Rn222("Rn", 86, 222, 0.000000, 222.017571, NAN);
static const Atom Rn223("Rn", 86, 223, 0.000000, 223.021790, NAN);
static const Atom Rn224("Rn", 86, 224, 0.000000, 224.024090, NAN);
static const Atom Rn225("Rn", 86, 225, 0.000000, 225.028440, NAN);
static const Atom Rn226("Rn", 86, 226, 0.000000, 226.030890, NAN);
static const Atom Rn227("Rn", 86, 227, 0.000000, 227.035410, NAN);
static const Atom Rn228("Rn", 86, 228, 0.000000, 228.038080, NAN);
static const Atom Fr("Fr", 87, 0, 0.000000, 223.000000, NAN);
static const Atom Fr200("Fr", 87, 200, 0.000000, 200.006500, NAN);
static const Atom Fr201("Fr", 87, 201, 0.000000, 201.003990, NAN);
static const Atom Fr202("Fr", 87, 202, 0.000000, 202.003290, NAN);
static const Atom Fr203("Fr", 87, 203, 0.000000, 203.001050, NAN);
static const Atom Fr204("Fr", 87, 204, 0.000000, 204.000590, NAN);
static const Atom Fr205("Fr", 87, 205, 0.000000, 204.998660, NAN);
static const Atom Fr206("Fr", 87, 206, 0.000000, 205.998490, NAN);
static const Atom Fr207("Fr", 87, 207, 0.000000, 206.996860, NAN);
static const Atom Fr208("Fr", 87, 208, 0.000000, 207.997130, NAN);
static const Atom Fr209("Fr", 87, 209, 0.000000, 208.995920, NAN);
static const Atom Fr210("Fr", 87, 210, 0.000000, 209.996398, NAN);
static const Atom Fr211("Fr", 87, 211, 0.000000, 210.995529, NAN);
static const Atom Fr212("Fr", 87, 212, 0.000000, 211.996195, NAN);
static const Atom Fr213("Fr", 87, 213, 0.000000, 212.996175, NAN);
static const Atom Fr214("Fr", 87, 214, 0.000000, 213.998955, NAN);
static const Atom Fr215("Fr", 87, 215, 0.000000, 215.000326, NAN);
static const Atom Fr216("Fr", 87, 216, 0.000000, 216.003188, NAN);
static const Atom Fr217("Fr", 87, 217, 0.000000, 217.004616, NAN);
static const Atom Fr218("Fr", 87, 218, 0.000000, 218.007563, NAN);
static const Atom Fr219("Fr", 87, 219, 0.000000, 219.009241, NAN);
static const Atom Fr220("Fr", 87, 220, 0.000000, 220.012313, NAN);
static const Atom Fr221("Fr", 87, 221, 0.000000, 221.014246, NAN);
static const Atom Fr222("Fr", 87, 222, 0.000000, 222.017544, NAN);
static const Atom Fr223("Fr", 87, 223, 0.000000, 223.019731, NAN);
static const Atom Fr224("Fr", 87, 224, 0.000000, 224.023240, NAN);
static const Atom Fr225("Fr", 87, 225, 0.000000, 225.025607, NAN);
static const Atom Fr226("Fr", 87, 226, 0.000000, 226.029340, NAN);
static const Atom Fr227("Fr", 87, 227, 0.000000, 227.031830, NAN);
static const Atom Fr228("Fr", 87, 228, 0.000000, 228.035720, NAN);
static const Atom Fr229("Fr", 87, 229, 0.000000, 229.038430, NAN);
static const Atom Fr230("Fr", 87, 230, 0.000000, 230.042510, NAN);
static const Atom Fr231("Fr", 87, 231, 0.000000, 231.045410, NAN);
static const Atom Fr232("Fr", 87, 232, 0.000000, 232.049650, NAN);
static const Atom Ra("Ra", 88, 0, 0.000000, 226.000000, NAN);
static const Atom Ra203("Ra", 88, 203, 0.000000, 203.009210, NAN);
static const Atom Ra204("Ra", 88, 204, 0.000000, 204.006480, NAN);
static const Atom Ra205("Ra", 88, 205, 0.000000, 205.006190, NAN);
static const Atom Ra206("Ra", 88, 206, 0.000000, 206.003780, NAN);
static const Atom Ra207("Ra", 88, 207, 0.000000, 207.003730, NAN);
static const Atom Ra208("Ra", 88, 208, 0.000000, 208.001780, NAN);
static const Atom Ra209("Ra", 88, 209, 0.000000, 209.001940, NAN);
static const Atom Ra210("Ra", 88, 210, 0.000000, 210.000450, NAN);
static const Atom Ra211("Ra", 88, 211, 0.000000, 211.000890, NAN);
static const Atom Ra212("Ra", 88, 212, 0.000000, 211.999783, NAN);
static const Atom Ra213("Ra", 88, 213, 0.000000, 213.000350, NAN);
static const Atom Ra214("Ra", 88, 214, 0.000000, 214.000091, NAN);
static const Atom Ra215("Ra", 88, 215, 0.000000, 215.002704, NAN);
static const Atom Ra216("Ra", 88, 216, 0.000000, 216.003518, NAN);
static const Atom Ra217("Ra", 88, 217, 0.000000, 217.006306, NAN);
static const Atom Ra218("Ra", 88, 218, 0.000000, 218.007124, NAN);
static const Atom Ra219("Ra", 88, 219, 0.000000, 219.010069, NAN);
static const Atom Ra220("Ra", 88, 220, 0.000000, 220.011015, NAN);
static const Atom Ra221("Ra", 88, 221, 0.000000, 221.013908, NAN);
static const Atom Ra222("Ra", 88, 222, 0.000000, 222.015362, NAN);
static const Atom Ra223("Ra", 88, 223, 0.000000, 223.018497, NAN);
static const Atom Ra224("Ra", 88, 224, 0.000000, 224.020202, NAN);
static const Atom Ra225("Ra", 88, 225, 0.000000, 225.023604, NAN);
static const Atom Ra226("Ra", 88, 226, 0.000000, 226.025403, NAN);
static const Atom Ra227("Ra", 88, 227, 0.000000, 227.029171, NAN);
static const Atom Ra228("Ra", 88, 228, 0.000000, 228.031064, NAN);
static const Atom Ra229("Ra", 88, 229, 0.000000, 229.034820, NAN);
static const Atom Ra230("Ra", 88, 230, 0.000000, 230.037080, NAN);
static const Atom Ra231("Ra", 88, 231, 0.000000, 231.041220, NAN);
static const Atom Ra232("Ra", 88, 232, 0.000000, 232.043690, NAN);
static const Atom Ra233("Ra", 88, 233, 0.000000, 233.048000, NAN);
static const Atom Ra234("Ra", 88, 234, 0.000000, 234.050550, NAN);
static const Atom Ac("Ac", 89, 0, 0.000000, 227.000000, NAN);
static const Atom Ac207("Ac", 89, 207, 0.000000, 207.012090, NAN);
static const Atom Ac208("Ac", 89, 208, 0.000000, 208.011490, NAN);
static const Atom Ac209("Ac", 89, 209, 0.000000, 209.009570, NAN);
static const Atom Ac210("Ac", 89, 210, 0.000000, 210.009260, NAN);
static const Atom Ac211("Ac", 89, 211, 0.000000, 211.007650, NAN);
static const Atom Ac212("Ac", 89, 212, 0.000000, 212.007810, NAN);
static const Atom Ac213("Ac", 89, 213, 0.000000, 213.006570, NAN);
static const Atom Ac214("Ac", 89, 214, 0.000000, 214.006890, NAN);
static const Atom Ac215("Ac", 89, 215, 0.000000, 215.006450, NAN);
static const Atom Ac216("Ac", 89, 216, 0.000000, 216.008721, NAN);
static const Atom Ac217("Ac", 89, 217, 0.000000, 217.009333, NAN);
static const Atom Ac218("Ac", 89, 218, 0.000000, 218.011630, NAN);
static const Atom Ac219("Ac", 89, 219, 0.000000, 219.012400, NAN);
static const Atom Ac220("Ac", 89, 220, 0.000000, 220.014750, NAN);
static const Atom Ac221("Ac", 89, 221, 0.000000, 221.015580, NAN);
static const Atom Ac222("Ac", 89, 222, 0.000000, 222.017829, NAN);
static const Atom Ac223("Ac", 89, 223, 0.000000, 223.019126, NAN);
static const Atom Ac224("Ac", 89, 224, 0.000000, 224.021708, NAN);
static const Atom Ac225("Ac", 89, 225, 0.000000, 225.023221, NAN);
static const Atom Ac226("Ac", 89, 226, 0.000000, 226.026090, NAN);
static const Atom Ac227("Ac", 89, 227, 0.000000, 227.027747, NAN);
static const Atom Ac228("Ac", 89, 228, 0.000000, 228.031015, NAN);
static const Atom Ac229("Ac", 89, 229, 0.000000, 229.032930, NAN);
static const Atom Ac230("Ac", 89, 230, 0.000000, 230.036030, NAN);
static const Atom Ac231("Ac", 89, 231, 0.000000, 231.038550, NAN);
static const Atom Ac232("Ac", 89, 232, 0.000000, 232.042020, NAN);
static const Atom Ac233("Ac", 89, 233, 0.000000, 233.044550, NAN);
static const Atom Ac234("Ac", 89, 234, 0.000000, 234.048420, NAN);
static const Atom Ac235("Ac", 89, 235, 0.000000, 235.051100, NAN);
static const Atom Ac236("Ac", 89, 236, 0.000000, 236.055180, NAN);
static const Atom Th("Th", 90, 0, 0.000000, 232.038100, 11.72);
static const Atom Th210("Th", 90, 210, 0.000000, 210.015030, 10.6076379336);
static const Atom Th211("Th", 90, 211, 0.000000, 211.014860, 10.6581382937);
static const Atom Th212("Th", 90, 212, 0.000000, 212.012920, 10.7085492529);
static const Atom Th213("Th", 90, 213, 0.000000, 213.012960, 10.7590602199);
static const Atom Th214("Th", 90, 214, 0.000000, 214.011450, 10.8094928979);
static const Atom Th215("Th", 90, 215, 0.000000, 215.011730, 10.860015987);
static const Atom Th216("Th", 90, 216, 0.000000, 216.011051, 10.910490638);
static const Atom Th217("Th", 90, 217, 0.000000, 217.013070, 10.9611015622);
static const Atom Th218("Th", 90, 218, 0.000000, 218.013268, 11.0116205096);
static const Atom Th219("Th", 90, 219, 0.000000, 219.015520, 11.0622432023);
static const Atom Th220("Th", 90, 220, 0.000000, 220.015733, 11.1127629073);
static const Atom Th221("Th", 90, 221, 0.000000, 221.018171, 11.1633949947);
static const Atom Th222("Th", 90, 222, 0.000000, 222.018454, 11.2139182353);
static const Atom Th223("Th", 90, 223, 0.000000, 223.020795, 11.2645454234);
static const Atom Th224("Th", 90, 224, 0.000000, 224.021459, 11.3150879079);
static const Atom Th225("Th", 90, 225, 0.000000, 225.023941, 11.3657222177);
static const Atom Th226("Th", 90, 226, 0.000000, 226.024891, 11.4162791478);
static const Atom Th227("Th", 90, 227, 0.000000, 227.027699, 11.4669299235);
static const Atom Th228("Th", 90, 228, 0.000000, 228.028731, 11.5174910105);
static const Atom Th229("Th", 90, 229, 0.000000, 229.031755, 11.568152681);
static const Atom Th230("Th", 90, 230, 0.000000, 230.033127, 11.6187309056);
static const Atom Th231("Th", 90, 231, 0.000000, 231.036297, 11.6693999908);
static const Atom Th232("Th", 90, 232, 100.000000, 232.038050, 11.7199974948);
static const Atom Th233("Th", 90, 233, 0.000000, 233.041577, 11.7706845611);
static const Atom Th234("Th", 90, 234, 0.000000, 234.043595, 11.8212954398);
static const Atom Th235("Th", 90, 235, 0.000000, 235.047500, 11.8720016239);
static const Atom Th236("Th", 90, 236, 0.000000, 236.049710, 11.9226221952);
static const Atom Th237("Th", 90, 237, 0.000000, 237.053890, 11.9733422692);
static const Atom Th238("Th", 90, 238, 0.000000, 238.056240, 12.0239699118);
static const Atom Pa("Pa", 91, 0, 0.000000, 231.035880, 15.37);
static const Atom Pa213("Pa", 91, 213, 0.000000, 213.021180, 14.171545721);
static const Atom Pa214("Pa", 91, 214, 0.000000, 214.020740, 14.2380429126);
static const Atom Pa215("Pa", 91, 215, 0.000000, 215.019100, 14.3044602726);
static const Atom Pa216("Pa", 91, 216, 0.000000, 216.019110, 14.3709874012);
static const Atom Pa217("Pa", 91, 217, 0.000000, 217.018290, 14.4374593128);
static const Atom Pa218("Pa", 91, 218, 0.000000, 218.020010, 14.5041002017);
static const Atom Pa219("Pa", 91, 219, 0.000000, 219.019880, 14.5706180166);
static const Atom Pa220("Pa", 91, 220, 0.000000, 220.021880, 14.6372775328);
static const Atom Pa221("Pa", 91, 221, 0.000000, 221.021860, 14.7038026656);
static const Atom Pa222("Pa", 91, 222, 0.000000, 222.023730, 14.7704535335);
static const Atom Pa223("Pa", 91, 223, 0.000000, 223.023960, 14.8369952979);
static const Atom Pa224("Pa", 91, 224, 0.000000, 224.025610, 14.9036315299);
static const Atom Pa225("Pa", 91, 225, 0.000000, 225.026120, 14.9701919217);
static const Atom Pa226("Pa", 91, 226, 0.000000, 226.027933, 15.0368389975);
static const Atom Pa227("Pa", 91, 227, 0.000000, 227.028793, 15.1034226736);
static const Atom Pa228("Pa", 91, 228, 0.000000, 228.031037, 15.1700984223);
static const Atom Pa229("Pa", 91, 229, 0.000000, 229.032089, 15.2366948715);
static const Atom Pa230("Pa", 91, 230, 0.000000, 230.034533, 15.3033839255);
static const Atom Pa231("Pa", 91, 231, 100.000000, 231.035879, 15.3699999268);
static const Atom Pa232("Pa", 91, 232, 0.000000, 232.038582, 15.4367062178);
static const Atom Pa233("Pa", 91, 233, 0.000000, 233.040240, 15.5033429954);
static const Atom Pa234("Pa", 91, 234, 0.000000, 234.043302, 15.5700731494);
static const Atom Pa235("Pa", 91, 235, 0.000000, 235.045440, 15.6367418463);
static const Atom Pa236("Pa", 91, 236, 0.000000, 236.048680, 15.7034838554);
static const Atom Pa237("Pa", 91, 237, 0.000000, 237.051140, 15.7701739738);
static const Atom Pa238("Pa", 91, 238, 0.000000, 238.054500, 15.8369239661);
static const Atom Pa239("Pa", 91, 239, 0.000000, 239.057130, 15.903625394);
static const Atom Pa240("Pa", 91, 240, 0.000000, 240.060980, 15.9704079842);
static const Atom U("U", 92, 0, 0.000000, 238.028910, 18.95);
static const Atom U218("U", 92, 218, 0.000000, 218.023490, 17.357324938);
static const Atom U219("U", 92, 219, 0.000000, 219.024920, 17.4370509616);
static const Atom U220("U", 92, 220, 0.000000, 220.024710, 17.5166464212);
static const Atom U221("U", 92, 221, 0.000000, 221.026350, 17.5963891634);
static const Atom U222("U", 92, 222, 0.000000, 222.026070, 17.6759790502);
static const Atom U223("U", 92, 223, 0.000000, 223.027720, 17.7557225885);
static const Atom U224("U", 92, 224, 0.000000, 224.027590, 17.8353244171);
static const Atom U225("U", 92, 225, 0.000000, 225.029380, 17.9150791011);
static const Atom U226("U", 92, 226, 0.000000, 226.029340, 17.9946880948);
static const Atom U227("U", 92, 227, 0.000000, 227.031140, 18.0744435749);
static const Atom U228("U", 92, 228, 0.000000, 228.031366, 18.1540737455);
static const Atom U229("U", 92, 229, 0.000000, 229.033496, 18.2338554976);
static const Atom U230("U", 92, 230, 0.000000, 230.033927, 18.3135019887);
static const Atom U231("U", 92, 231, 0.000000, 231.036289, 18.3933022109);
static const Atom U232("U", 92, 232, 0.000000, 232.037146, 18.4729826406);
static const Atom U233("U", 92, 233, 0.000000, 233.039628, 18.5527923923);
static const Atom U234("U", 92, 234, 0.005500, 234.040946, 18.6325094675);
static const Atom U235("U", 92, 235, 0.720000, 235.043923, 18.712358691);
static const Atom U236("U", 92, 236, 0.000000, 236.045562, 18.7921013376);
static const Atom U237("U", 92, 237, 0.000000, 237.048724, 18.8719652575);
static const Atom U238("U", 92, 238, 99.274500, 238.050783, 18.9517413253);
static const Atom U239("U", 92, 239, 0.000000, 239.054288, 19.0316325601);
static const Atom U240("U", 92, 240, 0.000000, 240.056586, 19.111427703);
static const Atom U241("U", 92, 241, 0.000000, 241.060330, 19.1913379492);
static const Atom U242("U", 92, 242, 0.000000, 242.062930, 19.2711571191);
static const Atom Np("Np", 93, 0, 0.000000, 237.000000, 20.25);
static const Atom Np225("Np", 93, 225, 0.000000, 225.033900, 19.2275800633);
static const Atom Np226("Np", 93, 226, 0.000000, 226.035130, 19.3131281962);
static const Atom Np227("Np", 93, 227, 0.000000, 227.034960, 19.3985567089);
static const Atom Np228("Np", 93, 228, 0.000000, 228.036180, 19.4841039873);
static const Atom Np229("Np", 93, 229, 0.000000, 229.036250, 19.5695530063);
static const Atom Np230("Np", 93, 230, 0.000000, 230.037810, 19.6551293354);
static const Atom Np231("Np", 93, 231, 0.000000, 231.038230, 19.7406082595);
static const Atom Np232("Np", 93, 232, 0.000000, 232.040100, 19.8262110759);
static const Atom Np233("Np", 93, 233, 0.000000, 233.040730, 19.911707943);
static const Atom Np234("Np", 93, 234, 0.000000, 234.042889, 19.9973354525);
static const Atom Np235("Np", 93, 235, 0.000000, 235.044056, 20.082878194);
static const Atom Np236("Np", 93, 236, 0.000000, 236.046560, 20.1685351899);
static const Atom Np237("Np", 93, 237, 0.000000, 237.048167, 20.2541155604);
static const Atom Np238("Np", 93, 238, 0.000000, 238.050940, 20.3397955491);
static const Atom Np239("Np", 93, 239, 0.000000, 239.052931, 20.4254086956);
static const Atom Np240("Np", 93, 240, 0.000000, 240.056169, 20.5111283639);
static const Atom Np241("Np", 93, 241, 0.000000, 241.058250, 20.5967492089);
static const Atom Np242("Np", 93, 242, 0.000000, 242.061640, 20.6824818987);
static const Atom Np243("Np", 93, 243, 0.000000, 243.064270, 20.7681496519);
static const Atom Np244("Np", 93, 244, 0.000000, 244.067850, 20.8538985759);
static const Atom Pu("Pu", 94, 0, 0.000000, 244.000000, 19.84);
static const Atom Pu228("Pu", 94, 228, 0.000000, 228.038730, 18.5421655869);
static const Atom Pu229("Pu", 94, 229, 0.000000, 229.040140, 18.6235917115);
static const Atom Pu230("Pu", 94, 230, 0.000000, 230.039646, 18.704863019);
static const Atom Pu231("Pu", 94, 231, 0.000000, 231.041260, 18.7863057311);
static const Atom Pu232("Pu", 94, 232, 0.000000, 232.041179, 18.8676106203);
static const Atom Pu233("Pu", 94, 233, 0.000000, 233.042990, 18.9490693508);
static const Atom Pu234("Pu", 94, 234, 0.000000, 234.043305, 19.0304064393);
static const Atom Pu235("Pu", 94, 235, 0.000000, 235.045282, 19.1118786675);
static const Atom Pu236("Pu", 94, 236, 0.000000, 236.046048, 19.1932524357);
static const Atom Pu237("Pu", 94, 237, 0.000000, 237.048404, 19.2747554565);
static const Atom Pu238("Pu", 94, 238, 0.000000, 238.049553, 19.3561604076);
static const Atom Pu239("Pu", 94, 239, 0.000000, 239.052156, 19.4376835449);
static const Atom Pu240("Pu", 94, 240, 0.000000, 240.053808, 19.5191292656);
static const Atom Pu241("Pu", 94, 241, 0.000000, 241.056845, 19.600687749);
static const Atom Pu242("Pu", 94, 242, 0.000000, 242.058737, 19.682153025);
static const Atom Pu243("Pu", 94, 243, 0.000000, 243.061997, 19.7637295921);
static const Atom Pu244("Pu", 94, 244, 0.000000, 244.064198, 19.8452200341);
static const Atom Pu245("Pu", 94, 245, 0.000000, 245.067739, 19.9268194334);
static const Atom Pu246("Pu", 94, 246, 0.000000, 246.070198, 20.0083308538);
static const Atom Pu247("Pu", 94, 247, 0.000000, 247.074070, 20.0899571672);
static const Atom Am("Am", 95, 0, 0.000000, 243.000000, 13.67);
static const Atom Am231("Am", 95, 231, 0.000000, 231.045560, 12.997501256);
static const Atom Am232("Am", 95, 232, 0.000000, 232.046590, 13.0538143428);
static const Atom Am233("Am", 95, 233, 0.000000, 233.046470, 13.1100627362);
static const Atom Am234("Am", 95, 234, 0.000000, 234.047790, 13.166392137);
static const Atom Am235("Am", 95, 235, 0.000000, 235.048030, 13.2226607823);
static const Atom Am236("Am", 95, 236, 0.000000, 236.049570, 13.2790025593);
static const Atom Am237("Am", 95, 237, 0.000000, 237.049970, 13.3352802053);
static const Atom Am238("Am", 95, 238, 0.000000, 238.051980, 13.3916484222);
static const Atom Am239("Am", 95, 239, 0.000000, 239.053018, 13.4479619591);
static const Atom Am240("Am", 95, 240, 0.000000, 240.055288, 13.5043448023);
static const Atom Am241("Am", 95, 241, 0.000000, 241.056823, 13.5606862924);
static const Atom Am242("Am", 95, 242, 0.000000, 242.059543, 13.617094456);
static const Atom Am243("Am", 95, 243, 0.000000, 243.061373, 13.6734525301);
static const Atom Am244("Am", 95, 244, 0.000000, 244.064279, 13.7298711909);
static const Atom Am245("Am", 95, 245, 0.000000, 245.066445, 13.7862481611);
static const Atom Am246("Am", 95, 246, 0.000000, 246.069768, 13.842690241);
static const Atom Am247("Am", 95, 247, 0.000000, 247.072090, 13.8990760095);
static const Atom Am248("Am", 95, 248, 0.000000, 248.075750, 13.9555370473);
static const Atom Am249("Am", 95, 249, 0.000000, 249.078480, 14.0119457679);
static const Atom Cm("Cm", 96, 0, 0.000000, 247.000000, 13.51);
static const Atom Cm233("Cm", 96, 233, 0.000000, 233.050800, 12.747029587);
static const Atom Cm234("Cm", 96, 234, 0.000000, 234.050240, 12.8016953134);
static const Atom Cm235("Cm", 96, 235, 0.000000, 235.051590, 12.8564655097);
static const Atom Cm236("Cm", 96, 236, 0.000000, 236.051410, 12.9111520206);
static const Atom Cm237("Cm", 96, 237, 0.000000, 237.052890, 12.9659293275);
static const Atom Cm238("Cm", 96, 238, 0.000000, 238.053020, 13.0206327943);
static const Atom Cm239("Cm", 96, 239, 0.000000, 239.054950, 13.0754347146);
static const Atom Cm240("Cm", 96, 240, 0.000000, 240.055519, 13.1301621931);
static const Atom Cm241("Cm", 96, 241, 0.000000, 241.057647, 13.1849749268);
static const Atom Cm242("Cm", 96, 242, 0.000000, 242.058829, 13.239735967);
static const Atom Cm243("Cm", 96, 243, 0.000000, 243.061382, 13.2945719576);
static const Atom Cm244("Cm", 96, 244, 0.000000, 244.062746, 13.3493429252);
static const Atom Cm245("Cm", 96, 245, 0.000000, 245.065486, 13.4041891112);
static const Atom Cm246("Cm", 96, 246, 0.000000, 246.067218, 13.4589802015);
static const Atom Cm247("Cm", 96, 247, 0.000000, 247.070347, 13.5138477246);
static const Atom Cm248("Cm", 96, 248, 0.000000, 248.072342, 13.5686532001);
static const Atom Cm249("Cm", 96, 249, 0.000000, 249.075947, 13.6235467367);
static const Atom Cm250("Cm", 96, 250, 0.000000, 250.078351, 13.678374583);
static const Atom Cm251("Cm", 96, 251, 0.000000, 251.082278, 13.7332857319);
static const Atom Cm252("Cm", 96, 252, 0.000000, 252.084870, 13.7881238611);
Janik Zikovsky
committed
/// \endcond
Russell Taylor
committed
/// All of the atoms in a single array so it can be searched.
static Atom ATOMS[] = {
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
H, H1, H2, H3, H4, H5, H6, He, He3, He4, He5,
He6, He7, He8, He9, He10, Li, Li4, Li5, Li6, Li7, Li8,
Li9, Li10, Li11, Li12, Be, Be5, Be6, Be7, Be8, Be9, Be10,
Be11, Be12, Be13, Be14, B, B7, B8, B9, B10, B11, B12,
B13, B14, B15, B16, B17, B18, B19, C, C8, C9, C10,
C11, C12, C13, C14, C15, C16, C17, C18, C19, C20, C21,
C22, N, N10, N11, N12, N13, N14, N15, N16, N17, N18,
N19, N20, N21, N22, N23, N24, O, O12, O13, O14, O15,
O16, O17, O18, O19, O20, O21, O22, O23, O24, O25, O26,
F, F14, F15, F16, F17, F18, F19, F20, F21, F22, F23,
F24, F25, F26, F27, F28, F29, Ne, Ne32, Ne16, Ne17, Ne18,
Ne19, Ne20, Ne21, Ne22, Ne23, Ne24, Ne25, Ne26, Ne27, Ne28, Ne29,
Ne30, Ne31, Na, Na32, Na33, Na34, Na35, Na18, Na19, Na20, Na21,
Na22, Na23, Na24, Na25, Na26, Na27, Na28, Na29, Na30, Na31, Mg,
Mg32, Mg33, Mg34, Mg35, Mg36, Mg37, Mg20, Mg21, Mg22, Mg23, Mg24,
Mg25, Mg26, Mg27, Mg28, Mg29, Mg30, Mg31, Al, Al32, Al33, Al34,
Al35, Al36, Al37, Al38, Al39, Al21, Al22, Al23, Al24, Al25, Al26,
Al27, Al28, Al29, Al30, Al31, Si, Si32, Si33, Si34, Si35, Si36,
Si37, Si38, Si39, Si40, Si41, Si42, Si22, Si23, Si24, Si25, Si26,
Si27, Si28, Si29, Si30, Si31, P, P24, P25, P26, P27, P28,
P29, P30, P31, P32, P33, P34, P35, P36, P37, P38, P39,
P40, P41, P42, P43, P44, P45, P46, S, S26, S27, S28,
S29, S30, S31, S32, S33, S34, S35, S36, S37, S38, S39,
S40, S41, S42, S43, S44, S45, S46, S47, S48, S49, Cl,
Cl28, Cl29, Cl30, Cl31, Cl32, Cl33, Cl34, Cl35, Cl36, Cl37, Cl38,
Cl39, Cl40, Cl41, Cl42, Cl43, Cl44, Cl45, Cl46, Cl47, Cl48, Cl49,
Cl50, Cl51, Ar, Ar30, Ar31, Ar32, Ar33, Ar34, Ar35, Ar36, Ar37,
Ar38, Ar39, Ar40, Ar41, Ar42, Ar43, Ar44, Ar45, Ar46, Ar47, Ar48,
Ar49, Ar50, Ar51, Ar52, Ar53, K, K32, K33, K34, K35, K36,
K37, K38, K39, K40, K41, K42, K43, K44, K45, K46, K47,
K48, K49, K50, K51, K52, K53, K54, K55, Ca, Ca34, Ca35,
Ca36, Ca37, Ca38, Ca39, Ca40, Ca41, Ca42, Ca43, Ca44, Ca45, Ca46,
Ca47, Ca48, Ca49, Ca50, Ca51, Ca52, Ca53, Ca54, Ca55, Ca56, Ca57,
Sc, Sc36, Sc37, Sc38, Sc39, Sc40, Sc41, Sc42, Sc43, Sc44, Sc45,
Sc46, Sc47, Sc48, Sc49, Sc50, Sc51, Sc52, Sc53, Sc54, Sc55, Sc56,
Sc57, Sc58, Sc59, Ti, Ti38, Ti39, Ti40, Ti41, Ti42, Ti43, Ti44,
Ti45, Ti46, Ti47, Ti48, Ti49, Ti50, Ti51, Ti52, Ti53, Ti54, Ti55,
Ti56, Ti57, Ti58, Ti59, Ti60, Ti61, V, V40, V41, V42, V43,
V44, V45, V46, V47, V48, V49, V50, V51, V52, V53, V54,
V55, V56, V57, V58, V59, V60, V61, V62, V63, Cr, Cr42,
Cr43, Cr44, Cr45, Cr46, Cr47, Cr48, Cr49, Cr50, Cr51, Cr52, Cr53,
Cr54, Cr55, Cr56, Cr57, Cr58, Cr59, Cr60, Cr61, Cr62, Cr63, Cr64,
Cr65, Mn, Mn44, Mn45, Mn46, Mn47, Mn48, Mn49, Mn50, Mn51, Mn52,
Mn53, Mn54, Mn55, Mn56, Mn57, Mn58, Mn59, Mn60, Mn61, Mn62, Mn63,
Mn64, Mn65, Mn66, Mn67, Fe, Fe45, Fe46, Fe47, Fe48, Fe49, Fe50,
Fe51, Fe52, Fe53, Fe54, Fe55, Fe56, Fe57, Fe58, Fe59, Fe60, Fe61,
Fe62, Fe63, Fe64, Fe65, Fe66, Fe67, Fe68, Fe69, Co, Co48, Co49,
Co50, Co51, Co52, Co53, Co54, Co55, Co56, Co57, Co58, Co59, Co60,
Co61, Co62, Co63, Co64, Co65, Co66, Co67, Co68, Co69, Co70, Co71,
Co72, Ni, Ni50, Ni51, Ni52, Ni53, Ni54, Ni55, Ni56, Ni57, Ni58,
Ni59, Ni60, Ni61, Ni62, Ni63, Ni64, Ni65, Ni66, Ni67, Ni68, Ni69,
Ni70, Ni71, Ni72, Ni73, Ni74, Ni75, Ni76, Ni77, Ni78, Cu, Cu52,
Cu53, Cu54, Cu55, Cu56, Cu57, Cu58, Cu59, Cu60, Cu61, Cu62, Cu63,
Cu64, Cu65, Cu66, Cu67, Cu68, Cu69, Cu70, Cu71, Cu72, Cu73, Cu74,
Cu75, Cu76, Cu77, Cu78, Cu79, Cu80, Zn, Zn54, Zn55, Zn56, Zn57,
Zn58, Zn59, Zn60, Zn61, Zn62, Zn63, Zn64, Zn65, Zn66, Zn67, Zn68,
Zn69, Zn70, Zn71, Zn72, Zn73, Zn74, Zn75, Zn76, Zn77, Zn78, Zn79,
Zn80, Zn81, Zn82, Ga, Ga56, Ga57, Ga58, Ga59, Ga60, Ga61, Ga62,
Ga63, Ga64, Ga65, Ga66, Ga67, Ga68, Ga69, Ga70, Ga71, Ga72, Ga73,
Ga74, Ga75, Ga76, Ga77, Ga78, Ga79, Ga80, Ga81, Ga82, Ga83, Ga84,
Ge, Ge58, Ge59, Ge60, Ge61, Ge62, Ge63, Ge64, Ge65, Ge66, Ge67,
Ge68, Ge69, Ge70, Ge71, Ge72, Ge73, Ge74, Ge75, Ge76, Ge77, Ge78,
Ge79, Ge80, Ge81, Ge82, Ge83, Ge84, Ge85, Ge86, As, As60, As61,
As62, As63, As64, As65, As66, As67, As68, As69, As70, As71, As72,
As73, As74, As75, As76, As77, As78, As79, As80, As81, As82, As83,
As84, As85, As86, As87, As88, As89, Se, Se65, Se66, Se67, Se68,
Se69, Se70, Se71, Se72, Se73, Se74, Se75, Se76, Se77, Se78, Se79,
Se80, Se81, Se82, Se83, Se84, Se85, Se86, Se87, Se88, Se89, Se90,
Se91, Se92, Br, Br67, Br68, Br69, Br70, Br71, Br72, Br73, Br74,
Br75, Br76, Br77, Br78, Br79, Br80, Br81, Br82, Br83, Br84, Br85,
Br86, Br87, Br88, Br89, Br90, Br91, Br92, Br93, Br94, Kr, Kr69,
Kr70, Kr71, Kr72, Kr73, Kr74, Kr75, Kr76, Kr77, Kr78, Kr79, Kr80,
Kr81, Kr82, Kr83, Kr84, Kr85, Kr86, Kr87, Kr88, Kr89, Kr90, Kr91,
Kr92, Kr93, Kr94, Kr95, Kr96, Kr97, Rb, Rb71, Rb72, Rb73, Rb74,
Rb75, Rb76, Rb77, Rb78, Rb79, Rb80, Rb81, Rb82, Rb83, Rb84, Rb85,
Rb86, Rb87, Rb88, Rb89, Rb90, Rb91, Rb92, Rb93, Rb94, Rb95, Rb96,
Rb97, Rb98, Rb99, Rb100, Rb101, Rb102, Sr, Sr73, Sr74, Sr75, Sr76,
Sr77, Sr78, Sr79, Sr80, Sr81, Sr82, Sr83, Sr84, Sr85, Sr86, Sr87,
Sr88, Sr89, Sr90, Sr91, Sr92, Sr93, Sr94, Sr95, Sr96, Sr97, Sr98,
Sr99, Sr100, Sr101, Sr102, Sr103, Sr104, Y, Y77, Y78, Y79, Y80,
Y81, Y82, Y83, Y84, Y85, Y86, Y87, Y88, Y89, Y90, Y91,
Y92, Y93, Y94, Y95, Y96, Y97, Y98, Y99, Y100, Y101, Y102,
Y103, Y104, Y105, Y106, Zr, Zr79, Zr80, Zr81, Zr82, Zr83, Zr84,
Zr85, Zr86, Zr87, Zr88, Zr89, Zr90, Zr91, Zr92, Zr93, Zr94, Zr95,
Zr96, Zr97, Zr98, Zr99, Zr100, Zr101, Zr102, Zr103, Zr104, Zr105, Zr106,
Zr107, Zr108, Nb, Nb81, Nb82, Nb83, Nb84, Nb85, Nb86, Nb87, Nb88,
Nb89, Nb90, Nb91, Nb92, Nb93, Nb94, Nb95, Nb96, Nb97, Nb98, Nb99,
Nb100, Nb101, Nb102, Nb103, Nb104, Nb105, Nb106, Nb107, Nb108, Nb109, Nb110,
Mo, Mo83, Mo84, Mo85, Mo86, Mo87, Mo88, Mo89, Mo90, Mo91, Mo92,
Mo93, Mo94, Mo95, Mo96, Mo97, Mo98, Mo99, Mo100, Mo101, Mo102, Mo103,
Mo104, Mo105, Mo106, Mo107, Mo108, Mo109, Mo110, Mo111, Mo112, Mo113, Tc,
Tc85, Tc86, Tc87, Tc88, Tc89, Tc90, Tc91, Tc92, Tc93, Tc94, Tc95,
Tc96, Tc97, Tc98, Tc99, Tc100, Tc101, Tc102, Tc103, Tc104, Tc105, Tc106,
Tc107, Tc108, Tc109, Tc110, Tc111, Tc112, Tc113, Tc114, Tc115, Ru, Ru87,
Ru88, Ru89, Ru90, Ru91, Ru92, Ru93, Ru94, Ru95, Ru96, Ru97, Ru98,
Ru99, Ru100, Ru101, Ru102, Ru103, Ru104, Ru105, Ru106, Ru107, Ru108, Ru109,
Ru110, Ru111, Ru112, Ru113, Ru114, Ru115, Ru116, Ru117, Ru118, Rh, Rh89,
Rh90, Rh91, Rh92, Rh93, Rh94, Rh95, Rh96, Rh97, Rh98, Rh99, Rh100,
Rh101, Rh102, Rh103, Rh104, Rh105, Rh106, Rh107, Rh108, Rh109, Rh110, Rh111,
Rh112, Rh113, Rh114, Rh115, Rh116, Rh117, Rh118, Rh119, Rh120, Rh121, Pd,
Pd91, Pd92, Pd93, Pd94, Pd95, Pd96, Pd97, Pd98, Pd99, Pd100, Pd101,
Pd102, Pd103, Pd104, Pd105, Pd106, Pd107, Pd108, Pd109, Pd110, Pd111, Pd112,
Pd113, Pd114, Pd115, Pd116, Pd117, Pd118, Pd119, Pd120, Pd121, Pd122, Pd123,
Ag, Ag94, Ag95, Ag96, Ag97, Ag98, Ag99, Ag100, Ag101, Ag102, Ag103,
Ag104, Ag105, Ag106, Ag107, Ag108, Ag109, Ag110, Ag111, Ag112, Ag113, Ag114,
Ag115, Ag116, Ag117, Ag118, Ag119, Ag120, Ag121, Ag122, Ag123, Ag124, Ag125,
Ag126, Ag127, Cd, Cd128, Cd129, Cd130, Cd96, Cd97, Cd98, Cd99, Cd100,
Cd101, Cd102, Cd103, Cd104, Cd105, Cd106, Cd107, Cd108, Cd109, Cd110, Cd111,
Cd112, Cd113, Cd114, Cd115, Cd116, Cd117, Cd118, Cd119, Cd120, Cd121, Cd122,
Cd123, Cd124, Cd125, Cd126, Cd127, In, In128, In129, In130, In131, In132,
In133, In134, In98, In99, In100, In101, In102, In103, In104, In105, In106,
In107, In108, In109, In110, In111, In112, In113, In114, In115, In116, In117,
In118, In119, In120, In121, In122, In123, In124, In125, In126, In127, Sn,