./db.backup output for 1023: Optical_BPADAODA_6_geofrom953_RPA_true
Status:
finished
job.id 1023
job.name Optical_BPADAODA_6_geofrom953_RPA_true
job.description {
}
job.status pending
job.submitted {2025-07-25 20:26:32}
job.started {0000-00-00 00:00:00}
job.finished {0000-00-00 00:00:00}
job.queue 11
job.errormsg {}
job.pid 0
job.userid 1
job.priority 5
job.jobserverid 2
data.joboptions {_protocol_type_ JobControl _description_ {} passwd {} _name_ {} nproc 4 priority 5 _protocol_id_ 0 _protocol_pid_ 0 _version_ 1.1 context {} user user}
data.script {#
# Basic script for running batch jobs
#
package require logger
package require MD::Stage
package require MD::TaskManager
package require MD.Results
package require memory
package require MD::Workspace
package require jobcontrol
package require JobOptions
package require base64
package require md5
proc task {args} {}
namespace eval ::MD {}
logger::setlevel notice
set gLog [logger::init MD]
::logger::import -all -prefix "log_" -namespace ::MD MD
#
# Get the version of the Jobs database in use
#
set JobDBVersion [join [db "SELECT value FROM info WHERE item ='Version'"]]
# If we want to start child jobs, we need a jobcontrol object, on the localhost
Jobcontrol::JobcontrolProxy ::jobcontrol
#
# The workspace
#
set tmp [join [lindex [db "SELECT value FROM data WHERE job = $::job::id AND item = 'workspace'"] 0]]
::MD::Workspace ::workspace
::workspace fromString $tmp
#
# Any input files?
#
set lfiles ""
if {[catch {
set lfiles [join [db "SELECT value FROM data WHERE job = $::job::id AND item = 'input_file'"]]
} err_msg]} {
error "Failed while getting input files:\n $err_msg"
}
set linput_files ""
foreach elem $lfiles {
set fname [file join [pwd] [lindex $elem 0]]
set stage_id [lindex $elem 1]
set fdata [lindex $elem 2]
# See if this is base64 encoded
if {![catch {set decode64_data [::base64::decode $fdata]}]} {
# Succesfully decoded from base64
set fdata $decode64_data
unset decode64_data
}
if {[catch {
set fd [open $fname "w"]
fconfigure $fd -encoding binary -translation binary
puts -nonewline $fd $fdata
close $fd
} err_msg]} {
error "Failed to write Job input file $fname:\n $err_msg"
}
unset fdata
lappend linput_files [list $stage_id $fname]
}
#
# Get info about this job
#
if {$JobDBVersion < 3.0} {
set jdata [join [db "SELECT name, queue, userid, priority, jobserverid FROM job WHERE id = $::job::id"]]
set ::job::name [lindex $jdata 0]
set ::job::queueid [lindex $jdata 1]
set ::job::userid [lindex $jdata 2]
set ::job::priority [lindex $jdata 3]
set ::job::parent 0
} else {
set jdata [join [db "SELECT name, queue, userid, priority, jobserverid, parent FROM job WHERE id = $::job::id"]]
set ::job::name [lindex $jdata 0]
set ::job::queueid [lindex $jdata 1]
set ::job::userid [lindex $jdata 2]
set ::job::priority [lindex $jdata 3]
set ::job::parent [lindex $jdata 5]
}
set ::job::username ""
set ::job::queue ""
if {[string is integer -strict $::job::userid]} {
# Get the username from the user id
if {[catch {set ::job::username [join [db "SELECT name FROM user WHERE id = $::job::userid"]]}]} {
set ::job::username [join [db "SELECT name FROM \[user\] WHERE id = $::job::userid"]]
}
}
if {[string is integer -strict $::job::queueid]} {
# Get the queue name from the queue id
set ::job::queue [join [join [db "SELECT name FROM queue WHERE id = $::job::queueid"]]]
}
#
# Get the nproc option in order to pass it along to subjobs if any
#
set ::job::nproc 1
set tmp [join [lindex [db "SELECT value FROM data WHERE job = $::job::id AND item = 'joboptions'"] 0]]
foreach {opt_name opt_value} $tmp {
if {$opt_name == "nproc"} {
set ::job::nproc $opt_value
}
}
#
# Set up information about the job in the workspace
#
::workspace eval namespace eval ::job [list set id $::job::id]
::workspace eval [list set ::job::parent $::job::parent]
::workspace eval [list set ::job::serverId [info hostname]]
::workspace eval [list set ::job::dir [pwd]]
::workspace eval [list set ::job::name [join $::job::name "_"]]
::workspace eval [list set ::job::queueid $::job::queueid]
::workspace eval [list set ::job::queue $::job::queue]
::workspace eval [list set ::job::userid $::job::userid]
::workspace eval [list set ::job::username $::job::username]
::workspace eval [list set ::job::priority $::job::priority]
::workspace eval [list set ::job::nproc $::job::nproc]
# Prepare a list of command to execute from the calling job.
::workspace eval [::list set ::subjob_commands ""]
#
# And forcefield, if required
#
set ff_local [join [db "SELECT value FROM data WHERE job = $::job::id AND item = 'forcefield_local'"]]
if {[::workspace eval {info exists __fffile}]} {
package require MD::FF
::MD::FF ::FF
::FF configure -silent 1
catch {
if {$ff_local != ""} {
# Load a local forcefield
set fname [join [db "SELECT value FROM data WHERE job = $::job::id AND item = 'forcefield_file'"]]
if {[string range $fname 0 0] == "\{"} {
set fname [join $fname]
}
set fdata [join [db "SELECT value FROM data WHERE job = $::job::id AND item = 'forcefield_content'"]]
if {[string range $fdata 0 0] == "\{"} {
set fdata [join $fdata]
}
# See if this is base64 encoded
if {![catch {set decode64_data [::base64::decode $fdata]}]} {
# Succesfully decoded from base64
set fdata $decode64_data
unset decode64_data
}
set fd [open $fname "w"]
puts -nonewline $fd $fdata
close $fd
::FF readFF [file join [pwd] $fname]
::FF configure -forcefield $ff_local
# Update the workspace for sub-jobs if any
::workspace eval [list set __fffile [::FF fffile]]
::workspace eval [list set __ff $ff_local]
} else {
# Setup a forcefield from Forcefield.kit
set __fffile [::workspace eval {set __fffile}]
::FF readFF $__fffile
set __ff [::workspace eval {set __ff}]
::FF configure -forcefield $__ff
}
set ::FF ::FF
set fdata ""
# On old JS the ff_file_content might not be available
catch {set fdata [::FF ff_file_content]}
if {$fdata != ""} {
set ffmd5 [::md5::md5 -hex $fdata]
unset fdata
set cur_ff [::FF cget -forcefield]
set cur_file [::FF fffile]
puts "\nForcefield set to: $cur_ff\n File: $cur_file \t md5 sum: $ffmd5\n"
}
}
}
#
# The stages, ignoring everything else like the flowchart
#
set ok 0
set tmp [join [lindex [db "SELECT value FROM data WHERE job = $::job::id AND LOWER(item) = 'flowchart'"] 0]]
if {[string length $tmp] > 2} {
foreach {item data} $tmp {
switch $item {
"StageHandler" {
::MD::Stage::Handler stageHandler -workspace ::workspace
stageHandler fromString $data
set ok 1
}
}
}
} else {
# No flowchart, but maybe a stagehandler...
set data [join [lindex [db "SELECT value FROM data WHERE job = $::job::id AND LOWER(item) = 'stagehandler'"] 0]]
if {[string length $data] > 2} {
::MD::Stage::Handler stageHandler -workspace ::workspace
stageHandler fromString $data
set ok 1
}
}
unset -nocomplain tmp
if {!$ok} {
error "Could not find the stage information!"
}
#
# Other tools that we need
#
::MD::TaskManager taskmanager
if {[file exists Job.xml]} {
file delete -force Job.xml
}
::MD::Results::Handler Results -file Job.xml
#
# Finally, do the real work
#
set stage [stageHandler getInitialStage]
$stage configure -workspace ::workspace -workingdirectory [pwd]
$stage run 0
#
# And save any unsaved results
#
Results save
#
# Write down the final workspace if this job was started by another
#
if {$::job::parent > 0} {
set fd [open "final_workspace.txt" "w"]
puts $fd [::workspace toString]
close $fd
}
}
data.StageHandler {Class ::MD::Stage::Handler
Version 1.2
Stages {
md-stage-start-67618c3b-69d6-4113-b4d6-912e95c43089 {} ::MD::Stage::Start {
Class ::MD::Stage::Start
Version 1.2
Id md-stage-start-67618c3b-69d6-4113-b4d6-912e95c43089
Options {-description {Replace this with a description of this flowchart!} -summary {A one-line summary of this flowchart!} -stageid 1 -stdout stdout -master {} -debug 0 -iteration {} -stderr stderr -system {$system} -workingdirectory .}
}
md-vasp6api-stage-0baa973c-9f21-4ec0-8d36-15663c2062db MD::VASP6api::Batch ::MD::VASP6api::Stage {
Base {
Class ::MD::VASP6api::Stage
Version 1.2
Id md-vasp6api-stage-0baa973c-9f21-4ec0-8d36-15663c2062db
Options {-system {$system} -results ::Results -stageid 1 -stdout stdout -master {} -debug 0 -iteration {} -stderr stderr -Base::system {$system} -workingdirectory .}
}
Class ::MD::VASP6api::Stage
Version 1.0
VASPOptions {
ACFDT-RPARmode 0 ACFDT-RPAmode 0 ActualKMesh {1 1 1} ActualKSpacings {0.358 0.358 0.358} BandStructure/_description_ {} BandStructure/_name_ {} BandStructure/_protocol_id_ 0 BandStructure/_protocol_pid_ 0 BandStructure/_protocol_type_ BandStructure BandStructure/_version_ 2.1 BandStructure/explicitpath 0 BandStructure/labels {} BandStructure/maxpoints 40 BandStructure/module VASP BandStructure/npertask 40 BandStructure/npoints {} BandStructure/symmetrypoints {} BandStructure/vertices {} DDH-DSH_decay 1.26 DDH-DSH_longrange 0.1 DimerVASP 0 Efield_direction x-axis ElPhonmode 0 FFTcharges 0 GWRcalc {quasiparticle shifts} GWRmode 0 GW_ismear Gaussian GW_metals 0 GW_mporder 1 GW_sigma 0.2 GW_sigmaGauss 0.05 GWalgorithm {eigenvalues for G (GW0)} GWcalc {quasiparticle shifts} GWmode 0 Gshift 1 HF_Gshift 1 HF_amix 0.2 HF_bstr_kmesh {as for non-local exchange} HF_kInputmode {set spacing between k-points} HF_kPointMode 0 HF_kSpacing 0.5 HF_nk1_base 1 HF_nk2_base 1 HF_nk3_base 1 HF_nkodd 0 HF_nkx 4 HF_nky 4 HF_nkz 4 HF_timestep 0.4 HF_timestep_initial 0.4 MLFF_Task_MD {Create forcefield by on-the-fly learning} ML_Gwidth_angular {} ML_Gwidth_radial 0.5 ML_Rcut_angular 5.0 ML_Rcut_radial 8.0 ML_atomicEnergy 0 ML_atomicenergy {} ML_energyscaling {average energy of training data} ML_handleOverflow 1 ML_heatFlux 0 ML_lmax 3 ML_nMLFFstepsmin {} ML_nbasisfunct_angular 8 ML_nbasisfunct_radial 12 ML_nconfigstemp 5 ML_nrefconfigsmax {} ML_nstructuremax {} ML_output_frequency 1 ML_pair-correlation 1 ML_thresholdconfigfactor 0.6 ML_thresholdfactor {} ML_thresholdforceserror 0.002 ML_thresholdsparsification {} ML_thresholdupdate automatic ML_thresholdupdatefactor 1.0 ML_weight_energy 1.0 ML_weight_forces 1.0 ML_weight_radial 0.1 ML_weight_stress 1.0 MP2mode 0 NEBinVASP 0 TDHFmode 0 TimeEv_nbands_occ {} TimeEv_nbands_unocc {} TimeEvmode 0 TimeStep_definition {via complex shift} _description_ {} _name_ {} _protocol_id_ 0 _protocol_pid_ 0 _protocol_type_ VASP _version_ 2.4 acfdt-rpa_metals 0 addgrid 0 algo {Normal (blocked Davidson)} algoHF {Damped molecular dynamics} amix 0.2 apaco {} applyMLFF_ElPhon 0 applyMLFF_MT 0 applyMLFF_OPT 0 applyMLFF_SP 0 apply_localization immediately apply_solvation 0 backgroundCharge 0 bandstructure 0 cshift 0.1 cshiftGW {} cshiftTimeEv {} default_encut 400.000 delayeach 0 description {} displacement 0.015 displacement_number 1 dos 1 dos_Gshift 1 dos_ismear Gaussian dos_kInputmode {set spacing between k-points} dos_kSpacing 0.25 dos_mporder 1 dos_nkodd 0 dos_nkx 9 dos_nkxmult 2 dos_nky 9 dos_nkymult 2 dos_nkz 9 dos_nkzmult 2 dos_projection {automatic choice} dos_sigma 0.2 dos_sigmaGauss 0.05 ediff 1.0e-05 ediffg -0.02 efield 0 efield_dir none elastic 0 elements_sites elements elphon_calculation {Single configuration (Zacharias-Giustino)} elphon_nstruct 100 elphon_temperature 0.0 emax {} emin {} enaug {} encut {} encutGW {} encut_nmr {} engine {for GPUs} explicitKPoints 0 extrainput {LRPA = .TRUE.} file_return Normal fixcharg 0 functional {Density functional} gwr_nomega 16 gwr_sigma 0.1 gwr_tempmode {T = 0K (systems with band gap)} hybrid_functional HSE06 ibrion -1 icharg {Atomic charge densities} images 3 increase_encut 0 indepParticleApprox_TimeEv 0 initialDimerDir {} iniwav {Random numbers} involveMLFF_MD 0 isif {} ismear Methfessel-Paxton ispin 0 istart 0 isym {} iwave {from scratch} iwaveder 0 iwtmp 0 j_parameter {} kInputmode {set spacing between k-points} kSpacing 0.5 kblock {} kpoints {} lEoF 0 l_parameter {} laechg 0 lcharg 0 ldapu {Standard LDA or GGA} lefg 0 lelf 0 lepsilon 0 lhyperfine 0 lmaxHF {lmax = 4} lmaxaeGW {full shape up to lmax = 4} lmaxmp2 {up to lmax = 2} localization_ediff 1.0e-03 localization_steps 10 lpead 0 lreal {Reciprocal space} lscalapack 0 lsol 0 lspectral 1 ltmp2_nomega 6 lvhar 1 lvtot 0 lwave 0 lwaveder 0 magmom 1 magnetism {Defined by model} maxbandpoints 40 maxmem {} meta-GGA revTPSS modelBSE 0 modelBSE_AEXX {} modelBSE_HFSCREEN {} modelBSE_nbands_occ {} modelBSE_nbands_unocc {} mp2_calculation {Møller-Plesset perturbation theory (MP2)} mporder 1 nTimeSteps 100 napaco {} nbands {} nbandsGW {} nbands_GW {} nbands_TDHF {} nbands_TimeEv {} nbands_occ {} nbands_opt {} nbands_unocc {} nblk {} nblock 1 nedos 3000 nelm 60 nelmGW 4 nelmdl {} nelmin 2 nfree 2 ngx 0 ngy 0 ngz 0 nkodd 0 nkx 4 nkxmult 1 nky 4 nkymult 1 nkz 4 nkzmult 1 nmr 0 nmr_maxkpoints 10 nomega 50 nomega_acfdt 12 nomega_tdhf 50 nosymmetry 0 nsw 0 nuj {} nwrite 1 oddonlyGW 0 optical_matrix_elements 0 optics 1 phonons_ismear Methfessel-Paxton phonons_mporder 1 phonons_sigma 0.2 phonons_sigmaGauss 0.05 poscar_filename {} potentials {GGA-PBE PAW {8 O 1 H 6 C 7 N}} potentials_version {Version 54} potim {} prec Accurate precision Accurate precisionHF Normal precsym 1.0E-05 pressure 0 protHF_MD {DFT Single Point + Non-local Molecular Dynamics} protHF_Opt {DFT Single Point + Non-local Structure Optimization} protHF_SP {DFT Single Point + Non-local Single Point} read_poscar 0 reducedFFTHF 0 refit_MLFF {for fast running applications} response 0 response_ismear {Tetrahedron with Bloechl corrections} response_kmesh {as for DOS and optics} response_mporder 1 response_sigma 0.2 response_sigmaGauss 0.05 restart_MLFF {} restart_MLFF_prefix {} restart_chg {} restart_chg_prefix {} restart_type {constant energy cutoff} restart_wave {} restart_wave_prefix {} restart_waveder {} restart_wtmp {} rpar_calculation {single point energy (all systems)} rpar_convergence 0.02 rpar_mintrjfrequency 1 rpar_nomega 12 rpar_nsteps 100 rpar_sigma 0.1 rpar_tempmode {T = 0K (systems with band gap)} scissors {} sigma 0.2 sigmaGauss 0.05 sltmp2_estop {} sltmp2_nstorb {} smass {} smass_real {} solvation_energy 0 solvent_dielectric 78.4 spinaxis_x {} spinaxis_y {} spinaxis_z {} spininterpol Vosko-Wilk-Nusair spring -5 summary Optical_BPADAODA_6_geofrom953_RPA_true tebeg {} teend {} thomasFermi 1.8 thomasFermi_choice {average valence density} thomasFermi_fromDensity 1.6048032905100995 timestep 0.4 timestep_initial 0.4 totalmoment {} u-j_parameter {} u_parameter {} van_der_Waals None van_der_Waals_functional optB86b-vdW vibrations 0 voskown {} weights {} workfunction 0}
SimulationOptions {
_description_ {} _name_ {} _protocol_id_ 0 _protocol_pid_ 0 _protocol_type_ Simulation _version_ 2.0 a 1 alpha 1 andersen_prob 0.1 averagefrequency 40.0 b 1 beta 1 c 1 calculation {Single Point} convergence 0.02 eachstep 0 econvergence 1.0e-03 endtemperature {} ensemble {micro canonical (nVE)} gamma 1 mintrjfile trajectory.data mintrjfrequency 1 nosemass {} npt_alpha constrain npt_aparam none npt_beta constrain npt_bparam none npt_constraints isotropic npt_cparam none npt_gamma constrain npt_monitoralpha none npt_monitoraparam none npt_monitorbeta none npt_monitorbparam none npt_monitorcparam none npt_monitorgamma none npt_monitorvolume monitor npt_volume none nsteps 100 nve_thermostat Nosé-Hoover nvt_thermostat Nosé-Hoover paircorrdistance 16.0 paircorrslots 256 pmass {} relaxalgo {Conjugate Gradient} relaxatompos 1 relaxatoms 1 relaxcell 0 relaxvolume 0 restart_md {} restart_md_prefix {} strain 0.01 strains 0.005 temperature 298.0 time 120.0 timestep 4.0 trjfile trajectory.data trjfrequency 1 use_wavecars 0 version 6 yinatoms {} yinyang 0
}
}
}
Connections {
md-stage-start-67618c3b-69d6-4113-b4d6-912e95c43089,md-vasp6api-stage-0baa973c-9f21-4ec0-8d36-15663c2062db 1
}
}
data.workspace {Class ::MD::Workspace
Version 1.0
Packages {
MD::Db::MaterialsDesign 1.0
MD::Db::ICSD 1.0
MD::Db::COD 1.0
jobcontrol 3.0
Thread 2.8.7
MD::FF 1.0.1
MD::Db 1.1
MD::Db::Pearson 1.0
database 1.0
MD::Db::MetaDb 1.1
MD::Db::NCD 1.0
MD::Db::Pauling 1.0
Utility 1.0
}
Variables {
scalar ::MedeADb C:/MD_3.10.0/Databases/MedeA.db
array ::Units {scalar energy eV}
object ::system {::System {@Title amorphous(poly(Untitled))
@Columns AsymmetricAtom
AtomicNumber int 0
Connections string {{}}
FFAtomType string {{}}
FFCharge double 0.0
Fractional double {{0.0 0.0 0.0}}
Name string {{}}
Site int 1
WyckoffPosition int -1
@end
@data
6 {} C 0.0 {-0.0103499091739 0.0940106095262 0.815203026414} Untitled_1::C1 1 1
1 {} H 0.0 {0.047897941017 0.25566924552 0.726576798926} Untitled_1::H1 2 1
6 {} C 0.0 {0.00741399045911 0.169762273626 0.802187050066} Untitled_1::C2 3 1
6 {} C 0.0 {0.0375057510235 0.195405304572 0.734489671966} Untitled_1::C3 4 1
6 {} C 0.0 {0.00561417757322 0.0381973557777 0.76197504479} Untitled_1::C4 5 1
1 {} H 0.0 {-0.00586483150881 0.978051346398 0.772043730185} Untitled_1::H3 6 1
6 {} C 0.0 {0.0417934103032 0.063586195945 0.695157480997} Untitled_1::C5 7 1
6 {} C 0.0 {0.0547287113751 0.140623045166 0.680158498957} Untitled_1::C6 8 1
1 {} H 0.0 {0.0802544048873 0.154803398678 0.625474170366} Untitled_1::H5 9 1
6 {} C 0.0 {0.00254575974489 0.212412855529 0.873372678935} Untitled_1::C7 10 1
6 {} C 0.0 {-0.0367675768596 0.0881486467191 0.894618818955} Untitled_1::C8 11 1
7 {} N 0.0 {-0.0210858746109 0.159758751574 0.930389875048} Untitled_1::N1 12 1
8 {} O 0.0 {0.0217712691673 0.278721010328 0.881826652197} Untitled_1::O1 13 1
8 {} O 0.0 {-0.0675301719659 0.0331023947643 0.925009799607} Untitled_1::O2 14 1
8 {} O 0.0 {0.0697945314196 0.0144910661172 0.641010762526} Untitled_1::O3 15 1
6 {} C 0.0 {0.0193387058167 0.963726857568 0.608376905426} Untitled_1::C9 16 1
1 {} H 0.0 {0.0275613681528 0.814241823624 0.487625447304} Untitled_1::H6 17 1
6 {} C 0.0 {0.050328707227 0.910256826203 0.558626899062} Untitled_1::C10 18 1
1 {} H 0.0 {0.110564306066 0.914478386884 0.543604560085} Untitled_1::H7 19 1
6 {} C 0.0 {0.00264994183458 0.855034138544 0.527478025211} Untitled_1::C11 20 1
6 {} C 0.0 {0.941413115302 0.966515874711 0.622369032973} Untitled_1::C12 21 1
1 {} H 0.0 {0.916296777091 0.0119285661775 0.656187743202} Untitled_1::H9 22 1
6 {} C 0.0 {0.895085742526 0.911056147009 0.590816124584} Untitled_1::C13 23 1
1 {} H 0.0 {0.834081255406 0.914790834467 0.601034389093} Untitled_1::H10 24 1
6 {} C 0.0 {0.924272889327 0.853645074114 0.544229420183} Untitled_1::C14 25 1
6 {} C 0.0 {0.868722021 0.799098916407 0.505809578771} Untitled_1::C15 26 1
6 {} C 0.0 {0.846614824102 0.834372893158 0.429005569001} Untitled_1::C16 27 1
1 {} H 0.0 {0.693623072081 0.858514825564 0.311945714795} Untitled_1::H11 28 1
6 {} C 0.0 {0.771781439458 0.832014235302 0.402640000424} Untitled_1::C17 29 1
1 {} H 0.0 {0.726512057652 0.812263383064 0.439758446316} Untitled_1::H12 30 1
6 {} C 0.0 {0.752660329938 0.858292674116 0.330560998686} Untitled_1::C18 31 1
6 {} C 0.0 {0.90044048221 0.869130296053 0.381539030101} Untitled_1::C19 32 1
1 {} H 0.0 {0.958454531863 0.87794702921 0.401949131123} Untitled_1::H13 33 1
6 {} C 0.0 {0.882842426522 0.893466774338 0.308075163921} Untitled_1::C20 34 1
1 {} H 0.0 {0.928605318568 0.917830665304 0.274505269906} Untitled_1::H14 35 1
6 {} C 0.0 {0.808645590304 0.884475666672 0.28080200406} Untitled_1::C21 36 1
8 {} O 0.0 {0.782058682808 0.90938340172 0.210318606268} Untitled_1::O4 37 1
6 {} C 0.0 {0.793129415456 0.878794324856 0.139453385572} Untitled_1::C22 38 1
1 {} H 0.0 {0.710301859475 0.897878919663 0.965682241972} Untitled_1::H15 39 1
6 {} C 0.0 {0.749053172093 0.907884555214 0.0821667982967} Untitled_1::C23 40 1
1 {} H 0.0 {0.706141648774 0.948488585245 0.0996234120284} Untitled_1::H16 41 1
6 {} C 0.0 {0.749277629423 0.875463708652 0.00793528463121} Untitled_1::C24 42 1
6 {} C 0.0 {0.823651607861 0.802413194759 0.130974894291} Untitled_1::C25 43 1
1 {} H 0.0 {0.871529505638 0.792259267513 0.167543829519} Untitled_1::H17 44 1
6 {} C 0.0 {0.840463709657 0.781693973431 0.0507097177668} Untitled_1::C26 45 1
6 {} C 0.0 {0.79139886777 0.812044510075 0.992721570583} Untitled_1::C27 46 1
6 {} C 0.0 {0.797736265919 0.785047377757 0.55583570776} Untitled_1::C28 47 1
6 {} C 0.0 {0.906141941474 0.721990216536 0.488231002411} Untitled_1::C29 48 1
6 {} C 0.0 {0.897702775784 0.744411301405 0.0138045000842} Untitled_1::C30 49 1
6 {} C 0.0 {0.813266159684 0.779152675339 0.91881674599} Untitled_1::C31 50 1
7 {} N 0.0 {0.878394328552 0.732850886538 0.93481804732} Untitled_1::N2 51 1
1 {} H 0.0 {0.813886324668 0.768985937113 0.614156069186} Untitled_1::H18 52 1
1 {} H 0.0 {0.763445858234 0.73851788457 0.5318584667} Untitled_1::H19 53 1
1 {} H 0.0 {0.760705277274 0.835374260364 0.558988238257} Untitled_1::H20 54 1
1 {} H 0.0 {0.954977342864 0.728109754322 0.449836158844} Untitled_1::H21 55 1
1 {} H 0.0 {0.86531990483 0.684234059421 0.459797488982} Untitled_1::H22 56 1
1 {} H 0.0 {0.926320586559 0.694018655827 0.540376247376} Untitled_1::H23 57 1
8 {} O 0.0 {0.78385045336 0.788369816991 0.855524220746} Untitled_1::O5 58 1
8 {} O 0.0 {0.972045141485 0.732350871042 0.0361329579182} Untitled_1::O6 59 1
6 {} C 0.0 {0.89716744497 0.66520136731 0.894224617353} Untitled_1::C32 60 1
1 {} H 0.0 {0.856379411621 0.571294042783 0.728338057598} Untitled_1::H24 61 1
6 {} C 0.0 {0.86792213645 0.652115090128 0.820638853304} Untitled_1::C33 62 1
1 {} H 0.0 {0.831329344827 0.694714533006 0.794145997693} Untitled_1::H25 63 1
6 {} C 0.0 {0.881820239757 0.582975115774 0.7839037106} Untitled_1::C34 64 1
6 {} C 0.0 {0.941484818582 0.607691263829 0.928583003513} Untitled_1::C35 65 1
1 {} H 0.0 {0.962369412529 0.614397753233 -0.01344692685} Untitled_1::H26 66 1
6 {} C 0.0 {0.957668589154 0.540367743734 0.889767869643} Untitled_1::C36 67 1
1 {} H 0.0 {-0.00744406755318 0.497223704863 0.917271247258} Untitled_1::H27 68 1
6 {} C 0.0 {0.927902100186 0.527559399288 0.817475350715} Untitled_1::C37 69 1
8 {} O 0.0 {0.944034139424 0.461900292539 0.77555029805} Untitled_1::O7 70 1
6 {} C 0.0 {0.908269763685 0.394003529123 0.795840403652} Untitled_1::C38 71 1
1 {} H 0.0 {0.842850651939 0.290048055517 0.944376001946} Untitled_1::H28 72 1
6 {} C 0.0 {0.887110862904 0.37590496921 0.86986561505} Untitled_1::C39 73 1
1 {} H 0.0 {0.899022332306 0.414879065242 0.915927374111} Untitled_1::H29 74 1
6 {} C 0.0 {0.853145642361 0.305833704172 0.885324159073} Untitled_1::C40 75 1
6 {} C 0.0 {0.895179078333 0.341432060005 0.737926932886} Untitled_1::C41 76 1
1 {} H 0.0 {0.914483884285 0.35555004733 0.681249346142} Untitled_1::H30 77 1
6 {} C 0.0 {0.857694660191 0.273152884657 0.753287938645} Untitled_1::C42 78 1
1 {} H 0.0 {0.845086866815 0.233955375333 0.707173204521} Untitled_1::H31 79 1
6 {} C 0.0 {0.83546575213 0.254885828368 0.827218587416} Untitled_1::C43 80 1
6 {} C 0.0 {0.145887117089 0.1379563731 0.987740963537} Untitled_2::C1 81 1
1 {} H 0.0 {0.213486734139 0.202810943692 0.155607586042} Untitled_2::H1 82 1
6 {} C 0.0 {0.161329348913 0.138928764197 0.064961307835} Untitled_2::C2 83 1
6 {} C 0.0 {0.199319370272 0.201416862544 0.0953220454092} Untitled_2::C3 84 1
6 {} C 0.0 {0.163664410932 0.195703518193 0.937832179721} Untitled_2::C4 85 1
1 {} H 0.0 {0.150700446829 0.188017609158 0.878344139433} Untitled_2::H3 86 1
6 {} C 0.0 {0.207127072376 0.255473290223 0.966391621792} Untitled_2::C5 87 1
6 {} C 0.0 {0.223170342499 0.259089487802 0.045824326873} Untitled_2::C6 88 1
1 {} H 0.0 {0.256513668507 0.306604046368 0.0678624824915} Untitled_2::H5 89 1
6 {} C 0.0 {0.141653587312 0.0633908680821 0.0962642101325} Untitled_2::C7 90 1
6 {} C 0.0 {0.125290810777 0.0607144076396 0.964621096948} Untitled_2::C8 91 1
7 {} N 0.0 {0.118639166652 0.017261825675 0.0319856060967} Untitled_2::N1 92 1
8 {} O 0.0 {0.14520350604 0.0405630954597 0.162065210299} Untitled_2::O1 93 1
8 {} O 0.0 {0.12099553714 0.0380698686261 0.898325016579} Untitled_2::O2 94 1
8 {} O 0.0 {0.241823200014 0.309629989102 0.922183646479} Untitled_2::O3 95 1
6 {} C 0.0 {0.234916725298 0.317121243142 0.84316089932} Untitled_2::C9 96 1
1 {} H 0.0 {0.189527937397 0.234780563378 0.67411834283} Untitled_2::H6 97 1
6 {} C 0.0 {0.217201976094 0.261162201144 0.788956312064} Untitled_2::C10 98 1
1 {} H 0.0 {0.214141002214 0.201413052327 0.803626536984} Untitled_2::H7 99 1
6 {} C 0.0 {0.204580290871 0.281017635511 0.713056999862} Untitled_2::C11 100 1
6 {} C 0.0 {0.250034760634 0.390207191797 0.816330305981} Untitled_2::C12 101 1
1 {} H 0.0 {0.274946545792 0.432100158824 0.854319071553} Untitled_2::H9 102 1
6 {} C 0.0 {0.232788645258 0.409906778565 0.741599740071} Untitled_2::C13 103 1
1 {} H 0.0 {0.238867921763 0.469311992186 0.725423322187} Untitled_2::H10 104 1
6 {} C 0.0 {0.206030606519 0.357104271394 0.688530141056} Untitled_2::C14 105 1
6 {} C 0.0 {0.160852135278 0.384860223805 0.617242167505} Untitled_2::C15 106 1
6 {} C 0.0 {0.191949285396 0.357696077011 0.53909418917} Untitled_2::C16 107 1
1 {} H 0.0 {0.309556487386 0.426593791257 0.398606283667} Untitled_2::H11 108 1
6 {} C 0.0 {0.229153102112 0.408799543784 0.490046805681} Untitled_2::C17 109 1
1 {} H 0.0 {0.225797799757 0.469865349506 0.500261805023} Untitled_2::H12 110 1
6 {} C 0.0 {0.2772451565 0.38472332191 0.431282020858} Untitled_2::C18 111 1
6 {} C 0.0 {0.19178301138 0.281180167503 0.514467961478} Untitled_2::C19 112 1
1 {} H 0.0 {0.157243653216 0.238708399319 0.543761470131} Untitled_2::H13 113 1
6 {} C 0.0 {0.239286877977 0.255902530661 0.455620426686} Untitled_2::C20 114 1
1 {} H 0.0 {0.240578716338 0.196071658492 0.439448613597} Untitled_2::H14 115 1
6 {} C 0.0 {0.288508037262 0.307155787002 0.419521699388} Untitled_2::C21 116 1
8 {} O 0.0 {0.343981185822 0.280720958535 0.368695356443} Untitled_2::O4 117 1
6 {} C 0.0 {0.420314591535 0.276466880734 0.390042446054} Untitled_2::C22 118 1
1 {} H 0.0 {0.544706454279 0.30148403145 0.538884827389} Untitled_2::H15 119 1
6 {} C 0.0 {0.448011764266 0.293783107736 0.46253324182} Untitled_2::C23 120 1
1 {} H 0.0 {0.409100591453 0.3149612587 0.504562924615} Untitled_2::H16 121 1
6 {} C 0.0 {0.524698214204 0.285349878864 0.482492192578} Untitled_2::C24 122 1
6 {} C 0.0 {0.471249381756 0.252881503668 0.33348965558} Untitled_2::C25 123 1
1 {} H 0.0 {0.45255985307 0.243601426576 0.275580403139} Untitled_2::H17 124 1
6 {} C 0.0 {0.54662726734 0.243158144965 0.354364653242} Untitled_2::C26 125 1
6 {} C 0.0 {0.574015730624 0.258875565454 0.427146778963} Untitled_2::C27 126 1
6 {} C 0.0 {0.154175750156 0.47194354892 0.618570508957} Untitled_2::C28 127 1
6 {} C 0.0 {0.0809595471595 0.354480304207 0.636502012793} Untitled_2::C29 128 1
6 {} C 0.0 {0.61229728175 0.223309456396 0.305682387551} Untitled_2::C30 129 1
6 {} C 0.0 {0.657813369627 0.255198457441 0.425464666195} Untitled_2::C31 130 1
7 {} N 0.0 {0.678873378615 0.231286688056 0.350616851115} Untitled_2::N2 131 1
1 {} H 0.0 {0.127923451876 0.490012376524 0.672235811976} Untitled_2::H18 132 1
1 {} H 0.0 {0.116541844698 0.490917284272 0.572825353699} Untitled_2::H19 133 1
1 {} H 0.0 {0.208613181881 0.501852003996 0.612459010614} Untitled_2::H20 134 1
1 {} H 0.0 {0.0713129192523 0.296618768803 0.615087815827} Untitled_2::H21 135 1
1 {} H 0.0 {0.037843741653 0.392102647208 0.613669113192} Untitled_2::H22 136 1
1 {} H 0.0 {0.073235230265 0.355328353316 0.698411081961} Untitled_2::H23 137 1
8 {} O 0.0 {0.701971022647 0.272729663849 0.476779019455} Untitled_2::O5 138 1
8 {} O 0.0 {0.610322151454 0.203617723795 0.23831052137} Untitled_2::O6 139 1
6 {} C 0.0 {0.75483845657 0.228465599194 0.321651535261} Untitled_2::C32 140 1
1 {} H 0.0 {0.850160377289 0.220450150552 0.152310383594} Untitled_2::H24 141 1
6 {} C 0.0 {0.769016269746 0.225514479013 0.243206633522} Untitled_2::C33 142 1
1 {} H 0.0 {0.721753303731 0.224805989469 0.203811343832} Untitled_2::H25 143 1
6 {} C 0.0 {0.842584477736 0.224234335154 0.213763500269} Untitled_2::C34 144 1
6 {} C 0.0 {0.817814361174 0.232617915054 0.370369692599} Untitled_2::C35 145 1
1 {} H 0.0 {0.809207069981 0.239517608619 0.431006331712} Untitled_2::H26 146 1
6 {} C 0.0 {0.890994516403 0.231853734019 0.340792162708} Untitled_2::C36 147 1
1 {} H 0.0 {0.940653026721 0.235681842324 0.377018897776} Untitled_2::H27 148 1
6 {} C 0.0 {0.904280973867 0.227045999138 0.263165823725} Untitled_2::C37 149 1
8 {} O 0.0 {0.980499914026 0.226280656826 0.2411159923} Untitled_2::O7 150 1
6 {} C 0.0 {0.992203379403 0.206682935145 0.165721170119} Untitled_2::C38 151 1
1 {} H 0.0 {0.978500317747 0.0567545819408 0.0464350324267} Untitled_2::H28 152 1
6 {} C 0.0 {0.98544316485 0.131995227131 0.141892595314} Untitled_2::C39 153 1
1 {} H 0.0 {-0.0189392894944 0.0884594136595 0.185636188802} Untitled_2::H29 154 1
6 {} C 0.0 {0.981574442371 0.115432008374 0.0644195843029} Untitled_2::C40 155 1
6 {} C 0.0 {0.0096316741479 0.262007284409 0.11273205345} Untitled_2::C41 156 1
1 {} H 0.0 {0.0269693806549 0.316978806566 0.134091103965} Untitled_2::H30 157 1
6 {} C 0.0 {0.00333265376311 0.247183731592 0.0355594292446} Untitled_2::C42 158 1
1 {} H 0.0 {0.0131180535516 0.291547088624 -0.00578326511882} Untitled_2::H31 159 1
6 {} C 0.0 {-0.0160421399761 0.174054114321 0.0102839481065} Untitled_2::C43 160 1
6 {} C 0.0 {0.100282972763 0.442915190836 0.12065067344} Untitled_3::C1 161 1
1 {} H 0.0 {0.0692497200566 0.395883015937 0.933665516372} Untitled_3::H1 162 1
6 {} C 0.0 {0.0614973105089 0.423971731841 0.0541149049942} Untitled_3::C2 163 1
6 {} C 0.0 {0.0972115619986 0.417625893813 0.984391931736} Untitled_3::C3 164 1
6 {} C 0.0 {0.175234021419 0.467490330668 0.12041850661} Untitled_3::C4 165 1
1 {} H 0.0 {0.204412786765 0.488396727786 0.171112853424} Untitled_3::H3 166 1
6 {} C 0.0 {0.205080882089 0.476775534076 0.0472249335332} Untitled_3::C5 167 1
6 {} C 0.0 {0.17028877993 0.445931235283 0.982392550783} Untitled_3::C6 168 1
1 {} H 0.0 {0.197055691838 0.45302358899 0.927569004288} Untitled_3::H5 169 1
6 {} C 0.0 {0.981308159421 0.418469090969 0.0709164603117} Untitled_3::C7 170 1
6 {} C 0.0 {0.0447963947605 0.439582073624 0.183513964145} Untitled_3::C8 171 1
7 {} N 0.0 {0.971940832456 0.428994435475 0.149675595903} Untitled_3::N1 172 1
8 {} O 0.0 {0.930138514561 0.406890423436 0.023681300156} Untitled_3::O1 173 1
8 {} O 0.0 {0.0591434672167 0.443784511501 0.252405838573} Untitled_3::O2 174 1
8 {} O 0.0 {0.262977973445 0.528959146129 0.035581712687} Untitled_3::O3 175 1
6 {} C 0.0 {0.236144714496 0.574419314593 0.974939277006} Untitled_3::C9 176 1
1 {} H 0.0 {0.0885231200434 0.687058991502 0.927062530395} Untitled_3::H6 177 1
6 {} C 0.0 {0.169310742596 0.616383182102 0.982595371935} Untitled_3::C10 178 1
1 {} H 0.0 {0.13797955058 0.615988880176 0.0360169347121} Untitled_3::H7 179 1
6 {} C 0.0 {0.140457958644 0.654147142516 0.919483212491} Untitled_3::C11 180 1
6 {} C 0.0 {0.267169606539 0.561721942994 0.904119232397} Untitled_3::C12 181 1
1 {} H 0.0 {0.31238089789 0.519820864574 0.900692323067} Untitled_3::H9 182 1
6 {} C 0.0 {0.236261388127 0.597163612974 0.840702361288} Untitled_3::C13 183 1
1 {} H 0.0 {0.258803500157 0.583916718741 0.784590263369} Untitled_3::H10 184 1
6 {} C 0.0 {0.176028508887 0.648477365581 0.848049553288} Untitled_3::C14 185 1
6 {} C 0.0 {0.157611684315 0.703400652447 0.782872773652} Untitled_3::C15 186 1
6 {} C 0.0 {0.210256740421 0.771707058304 0.801536790724} Untitled_3::C16 187 1
1 {} H 0.0 {0.220092311194 0.911619817726 0.934240016995} Untitled_3::H11 188 1
6 {} C 0.0 {0.194539689091 0.816997946754 0.865202719619} Untitled_3::C17 189 1
1 {} H 0.0 {0.146953284872 0.803366131021 0.902583419856} Untitled_3::H12 190 1
6 {} C 0.0 {0.239253220526 0.87918442649 0.885262353046} Untitled_3::C18 191 1
6 {} C 0.0 {0.277426916722 0.789253137529 0.762114233278} Untitled_3::C19 192 1
1 {} H 0.0 {0.296868862428 0.753555037137 0.715440950006} Untitled_3::H13 193 1
6 {} C 0.0 {0.323344932115 0.851329119588 0.781961999309} Untitled_3::C20 194 1
1 {} H 0.0 {0.376305855346 0.862969889392 0.751829336125} Untitled_3::H14 195 1
6 {} C 0.0 {0.304063661304 0.897614507917 0.843144111908} Untitled_3::C21 196 1
8 {} O 0.0 {0.345299550134 -0.0347443407764 0.857864759473} Untitled_3::O4 197 1
6 {} C 0.0 {0.410684128679 0.962286340042 0.902037893012} Untitled_3::C22 198 1
1 {} H 0.0 {0.512331554914 0.0771819499686 0.0227354430545} Untitled_3::H15 199 1
6 {} C 0.0 {0.445269019994 0.0289206841045 0.932451943797} Untitled_3::C23 200 1
1 {} H 0.0 {0.432577146498 0.0858802482776 0.911311962327} Untitled_3::H16 201 1
6 {} C 0.0 {0.495156892546 0.0246486667826 -0.00563223992609} Untitled_3::C24 202 1
6 {} C 0.0 {0.442362437794 0.892522504555 0.917311723496} Untitled_3::C25 203 1
1 {} H 0.0 {0.418459672972 0.844781790346 0.886471088998} Untitled_3::H17 204 1
6 {} C 0.0 {0.499462334373 0.889383524467 0.972363407087} Untitled_3::C26 205 1
6 {} C 0.0 {0.519785861909 0.952848554323 0.0176887149706} Untitled_3::C27 206 1
6 {} C 0.0 {0.0726237970581 0.725192946181 0.783353534168} Untitled_3::C28 207 1
6 {} C 0.0 {0.172514884153 0.668594748227 0.703879224292} Untitled_3::C29 208 1
6 {} C 0.0 {0.542750515825 0.827873263408 -0.00182676915708} Untitled_3::C30 209 1
6 {} C 0.0 {0.567621115413 0.925347005321 0.0803657074382} Untitled_3::C31 210 1
7 {} N 0.0 {0.587069286382 0.844617588109 0.0595498170155} Untitled_3::N2 211 1
1 {} H 0.0 {0.0377631954767 0.674793746218 0.769881635871} Untitled_3::H18 212 1
1 {} H 0.0 {0.0601792125288 0.768793064043 0.740255986815} Untitled_3::H19 213 1
1 {} H 0.0 {0.0524916304764 0.746269792183 0.838456502579} Untitled_3::H20 214 1
1 {} H 0.0 {0.232324318686 0.654522964389 0.692156877514} Untitled_3::H21 215 1
1 {} H 0.0 {0.152783924238 0.707962791889 0.659202670634} Untitled_3::H22 216 1
1 {} H 0.0 {0.139101909806 0.615893105173 0.697741653409} Untitled_3::H23 217 1
8 {} O 0.0 {0.588933175392 -0.0452329463877 0.139609302875} Untitled_3::O5 218 1
8 {} O 0.0 {0.399598417788 0.732452326673 0.933958889429} Untitled_3::O6 219 1
6 {} C 0.0 {0.637183086427 0.788933030069 0.0919460557049} Untitled_3::C32 220 1
1 {} H 0.0 {0.694562739917 0.60051723041 0.0683133249246} Untitled_3::H24 221 1
6 {} C 0.0 {0.640251099502 0.713355627849 0.049679656155} Untitled_3::C33 222 1
1 {} H 0.0 {0.664733127694 0.720281353425 0.99186200774} Untitled_3::H25 223 1
6 {} C 0.0 {0.691052151152 0.658860870013 0.0872774293505} Untitled_3::C34 224 1
6 {} C 0.0 {0.676444428772 0.797917302813 0.157217770496} Untitled_3::C35 225 1
1 {} H 0.0 {0.661803392184 0.846835602081 0.191591808359} Untitled_3::H26 226 1
6 {} C 0.0 {0.747932862987 0.755412702234 0.174471524872} Untitled_3::C36 227 1
1 {} H 0.0 {0.766127137929 0.757283403238 0.234235647124} Untitled_3::H27 228 1
6 {} C 0.0 {0.742548919703 0.675588604496 0.145872404574} Untitled_3::C37 229 1
8 {} O 0.0 {0.78009835797 0.62336589147 0.177494105195} Untitled_3::O7 230 1
6 {} C 0.0 {0.0134762289645 0.802049141868 0.032955827988} Untitled_3::C38 231 1
1 {} H 0.0 {0.077056005424 0.934434506095 0.910658364429} Untitled_3::H28 232 1
6 {} C 0.0 {0.0286999289696 0.838164851504 -0.0356781604018} Untitled_3::C39 233 1
1 {} H 0.0 {0.00941280379119 0.814152576797 0.910569161098} Untitled_3::H29 234 1
6 {} C 0.0 {0.0658294360581 0.907704233555 0.964845787526} Untitled_3::C40 235 1
6 {} C 0.0 {0.0372300234377 0.834941706123 0.100550205931} Untitled_3::C41 236 1
1 {} H 0.0 {0.0280137163586 0.804405221014 0.153348759797} Untitled_3::H30 237 1
6 {} C 0.0 {0.0749938669702 0.904193364276 0.102154062906} Untitled_3::C42 238 1
1 {} H 0.0 {0.0945786851015 0.92876016829 0.155641760731} Untitled_3::H31 239 1
6 {} C 0.0 {0.0878819443861 0.942821965216 0.033616158788} Untitled_3::C43 240 1
6 {} C 0.0 {0.921811084215 0.303198434966 0.54336171204} Untitled_4::C1 241 1
1 {} H 0.0 {0.0593227221344 0.272575470812 0.410607972908} Untitled_4::H1 242 1
6 {} C 0.0 {0.974088796653 0.263038872496 0.499665395763} Untitled_4::C2 243 1
6 {} C 0.0 {0.0239284379485 0.302207214844 0.451929661992} Untitled_4::C3 244 1
6 {} C 0.0 {0.924156535648 0.38069563789 0.552444437119} Untitled_4::C4 245 1
1 {} H 0.0 {0.887595326523 0.411077107011 0.592022172679} Untitled_4::H3 246 1
6 {} C 0.0 {-0.0206852610258 0.418802595058 0.510601829484} Untitled_4::C5 247 1
6 {} C 0.0 {0.0237716503458 0.381653981068 0.455171328256} Untitled_4::C6 248 1
1 {} H 0.0 {0.0593616119906 0.414461048257 0.416047259067} Untitled_4::H5 249 1
6 {} C 0.0 {0.954733366618 0.181158372643 0.506506070679} Untitled_4::C7 250 1
6 {} C 0.0 {0.861257697726 0.252047783545 0.568380526193} Untitled_4::C8 251 1
7 {} N 0.0 {0.882775864492 0.177442570568 0.546397648988} Untitled_4::N1 252 1
8 {} O 0.0 {-0.00874461682365 0.126504166273 0.484024733304} Untitled_4::O1 253 1
8 {} O 0.0 {0.801469120936 0.27207245128 0.598294075304} Untitled_4::O2 254 1
8 {} O 0.0 {-0.00983030458372 0.493950499484 0.530252958102} Untitled_4::O3 255 1
6 {} C 0.0 {-0.0133777865483 0.53960990608 0.465734393962} Untitled_4::C9 256 1
1 {} H 0.0 {0.86366649376 0.569687297122 0.321945235267} Untitled_4::H6 257 1
6 {} C 0.0 {0.919318246314 0.536544039522 0.42436336145} Untitled_4::C10 258 1
1 {} H 0.0 {0.870944228647 0.504963297395 0.447147752024} Untitled_4::H7 259 1
6 {} C 0.0 {0.916394793531 0.572109089945 0.354615643122} Untitled_4::C11 260 1
6 {} C 0.0 {0.0491333413826 0.581478273795 0.442828553833} Untitled_4::C12 261 1
1 {} H 0.0 {0.0994599436033 0.586097908382 0.478688428768} Untitled_4::H9 262 1
6 {} C 0.0 {0.0456140263892 0.616279426091 0.371752056802} Untitled_4::C13 263 1
1 {} H 0.0 {0.094021577575 0.649284576804 0.3515674889} Untitled_4::H10 264 1
6 {} C 0.0 {0.980883011407 0.60970363322 0.326460329549} Untitled_4::C14 265 1
6 {} C 0.0 {0.972026749215 0.652321179797 0.252291963558} Untitled_4::C15 266 1
6 {} C 0.0 {0.0450539949732 0.692302999201 0.23045439267} Untitled_4::C16 267 1
1 {} H 0.0 {0.196271265007 0.675034841715 0.109367859757} Untitled_4::H11 268 1
6 {} C 0.0 {0.0918386916746 0.661656213106 0.173760281987} Untitled_4::C17 269 1
1 {} H 0.0 {0.0766134653207 0.608246227537 0.145998454583} Untitled_4::H12 270 1
6 {} C 0.0 {0.158051491566 0.698528427871 0.152044364253} Untitled_4::C18 271 1
6 {} C 0.0 {0.0677610130676 0.760386360101 0.265417856175} Untitled_4::C19 272 1
1 {} H 0.0 {0.0322731137645 0.784756022039 0.310118881133} Untitled_4::H13 273 1
6 {} C 0.0 {0.134068545309 0.798336264761 0.243817376255} Untitled_4::C20 274 1
1 {} H 0.0 {0.150886683786 0.851858688426 0.270395753133} Untitled_4::H14 275 1
6 {} C 0.0 {0.178348844449 0.766447733322 0.186550526782} Untitled_4::C21 276 1
8 {} O 0.0 {0.250696237905 0.79628864229 0.168195394193} Untitled_4::O4 277 1
6 {} C 0.0 {0.299359398761 0.747949348117 0.208610623711} Untitled_4::C22 278 1
1 {} H 0.0 {0.325415837383 0.70108137277 0.395838528667} Untitled_4::H15 279 1
6 {} C 0.0 {0.297840573675 0.755112596238 0.287931680927} Untitled_4::C23 280 1
1 {} H 0.0 {0.269444138612 0.804507342076 0.311891901919} Untitled_4::H16 281 1
6 {} C 0.0 {0.327771084701 0.698621337468 0.333917266288} Untitled_4::C24 282 1
6 {} C 0.0 {0.335803116584 0.688364235925 0.170596477666} Untitled_4::C25 283 1
1 {} H 0.0 {0.338987529101 0.685584557901 0.108603018797} Untitled_4::H17 284 1
6 {} C 0.0 {0.364526240305 0.631903224642 0.217715957665} Untitled_4::C26 285 1
6 {} C 0.0 {0.35995145779 0.63701767546 0.296804378085} Untitled_4::C27 286 1
6 {} C 0.0 {0.9079181375 0.70765569198 0.271131766963} Untitled_4::C28 287 1
6 {} C 0.0 {0.944339107659 0.601770862108 0.186627867563} Untitled_4::C29 288 1
6 {} C 0.0 {0.398628811575 0.55732540871 0.199055611989} Untitled_4::C30 289 1
6 {} C 0.0 {0.396100602352 0.570101371855 0.330379913764} Untitled_4::C31 290 1
7 {} N 0.0 {0.421455684258 0.52389341327 0.269266777251} Untitled_4::N2 291 1
1 {} H 0.0 {0.85630891257 0.675356944286 0.284493565754} Untitled_4::H18 292 1
1 {} H 0.0 {0.896033367632 0.7396374776 0.220100829748} Untitled_4::H19 293 1
1 {} H 0.0 {0.920890350108 0.746087163321 0.318217135851} Untitled_4::H20 294 1
1 {} H 0.0 {0.975969507751 0.548813225738 0.182487633029} Untitled_4::H21 295 1
1 {} H 0.0 {0.947644681847 0.631623499551 0.131629361672} Untitled_4::H22 296 1
1 {} H 0.0 {0.884546089129 0.587316994754 0.194868011426} Untitled_4::H23 297 1
8 {} O 0.0 {0.404016250443 0.556996261066 0.398625701639} Untitled_4::O5 298 1
8 {} O 0.0 {0.405149472716 0.527489731349 0.136232529785} Untitled_4::O6 299 1
6 {} C 0.0 {0.48489112168 0.474051035578 0.275112763958} Untitled_4::C32 300 1
1 {} H 0.0 {0.632781234707 0.415079644404 0.166540466713} Untitled_4::H24 301 1
6 {} C 0.0 {0.528842947904 0.457463367043 0.210928157737} Untitled_4::C33 302 1
1 {} H 0.0 {0.508484643999 0.473297241737 0.154884696312} Untitled_4::H25 303 1
6 {} C 0.0 {0.600593087 0.425217073093 0.218138826015} Untitled_4::C34 304 1
6 {} C 0.0 {0.510638674495 0.449984135548 0.346798659787} Untitled_4::C35 305 1
1 {} H 0.0 {0.476090367342 0.458548878921 0.397086932121} Untitled_4::H26 306 1
6 {} C 0.0 {0.583056264974 0.419810178134 0.353931523296} Untitled_4::C36 307 1
1 {} H 0.0 {0.605784786157 0.405726356178 0.409850886909} Untitled_4::H27 308 1
6 {} C 0.0 {0.629527689899 0.41048074199 0.290383989187} Untitled_4::C37 309 1
8 {} O 0.0 {0.701159643582 0.385808129945 0.306809560696} Untitled_4::O7 310 1
6 {} C 0.0 {0.763228411524 0.400764847574 0.26186899187} Untitled_4::C38 311 1
1 {} H 0.0 {0.946827151319 0.448330264805 0.297468373188} Untitled_4::H28 312 1
6 {} C 0.0 {0.827849829352 0.421398581383 0.302460167539} Untitled_4::C39 313 1
1 {} H 0.0 {0.822913490046 0.428718647645 0.363750582771} Untitled_4::H29 314 1
6 {} C 0.0 {0.896775781524 0.431538928719 0.265990601499} Untitled_4::C40 315 1
6 {} C 0.0 {0.767368616956 0.390472372511 0.183555583528} Untitled_4::C41 316 1
1 {} H 0.0 {0.720870927097 0.367979345079 0.149529008407} Untitled_4::H30 317 1
6 {} C 0.0 {0.836160351941 0.401829036056 0.147029194278} Untitled_4::C42 318 1
1 {} H 0.0 {0.839663130484 0.393684285797 0.0863977194078} Untitled_4::H31 319 1
6 {} C 0.0 {0.901496692337 0.42152446725 0.18749742942} Untitled_4::C43 320 1
6 {} C 0.0 {0.383465856102 0.565108826863 0.730466698475} Untitled_5::C1 321 1
1 {} H 0.0 {0.375952843343 0.700662373747 0.590919392135} Untitled_5::H1 322 1
6 {} C 0.0 {0.388811064835 0.637348225449 0.698400637086} Untitled_5::C2 323 1
6 {} C 0.0 {0.373733560096 0.645683881678 0.620081320607} Untitled_5::C3 324 1
6 {} C 0.0 {0.370400279303 0.500016493328 0.69038846608} Untitled_5::C4 325 1
1 {} H 0.0 {0.370273614548 0.445206308882 0.719131836946} Untitled_5::H3 326 1
6 {} C 0.0 {0.364118813798 0.506966822919 0.611429746688} Untitled_5::C5 327 1
6 {} C 0.0 {0.36003346747 0.579552743251 0.57704545938} Untitled_5::C6 328 1
1 {} H 0.0 {0.350250930373 0.583289552334 0.515491471036} Untitled_5::H5 329 1
6 {} C 0.0 {0.421035680018 0.686175650792 0.759567297424} Untitled_5::C7 330 1
6 {} C 0.0 {0.405461826395 0.566369542149 0.810587653757} Untitled_5::C8 331 1
7 {} N 0.0 {0.419787315383 0.641723652464 0.829241569711} Untitled_5::N1 332 1
8 {} O 0.0 {0.45055213892 0.748753739628 0.752837462383} Untitled_5::O1 333 1
8 {} O 0.0 {0.413142547029 0.510088375009 0.851000888139} Untitled_5::O2 334 1
8 {} O 0.0 {0.36276073308 0.441769027537 0.568684141173} Untitled_5::O3 335 1
6 {} C 0.0 {0.392428803724 0.377662509109 0.607227698004} Untitled_5::C9 336 1
1 {} H 0.0 {0.542047125675 0.326653481986 0.717738945115} Untitled_5::H6 337 1
6 {} C 0.0 {0.462051064414 0.382382501791 0.644282840835} Untitled_5::C10 338 1
1 {} H 0.0 {0.49269155525 0.436014574358 0.643774642493} Untitled_5::H7 339 1
6 {} C 0.0 {0.490479879309 0.319944869522 0.683938798643} Untitled_5::C11 340 1
6 {} C 0.0 {0.352742704439 0.309542665499 0.606040207685} Untitled_5::C12 341 1
1 {} H 0.0 {0.300440547821 0.304175051024 0.574034152962} Untitled_5::H9 342 1
6 {} C 0.0 {0.384407793765 0.246154837165 0.640432929531} Untitled_5::C13 343 1
1 {} H 0.0 {0.353365091831 0.192557205492 0.635684559079} Untitled_5::H10 344 1
6 {} C 0.0 {0.453152901412 0.249870592591 0.680427617168} Untitled_5::C14 345 1
6 {} C 0.0 {0.480857212309 0.17840134298 0.721303500812} Untitled_5::C15 346 1
6 {} C 0.0 {0.42094702382 0.168337811869 0.784116587265} Untitled_5::C16 347 1
1 {} H 0.0 {0.378405961374 0.232835344849 0.96329335276} Untitled_5::H11 348 1
6 {} C 0.0 {0.422766237639 0.213796355124 0.85027545075} Untitled_5::C17 349 1
1 {} H 0.0 {0.461869211108 0.26219405992 0.854751295502} Untitled_5::H12 350 1
6 {} C 0.0 {0.37479007873 0.198735179396 0.911844718702} Untitled_5::C18 351 1
6 {} C 0.0 {0.358790437433 0.119471717408 0.774847135246} Untitled_5::C19 352 1
1 {} H 0.0 {0.352105409519 0.0868138508168 0.722394395951} Untitled_5::H13 353 1
6 {} C 0.0 {0.307260868175 0.107413187529 0.833933269351} Untitled_5::C20 354 1
1 {} H 0.0 {0.260031220753 0.0676647285225 0.827745334836} Untitled_5::H14 355 1
6 {} C 0.0 {0.322775413075 0.13890989825 0.9053736243} Untitled_5::C21 356 1
8 {} O 0.0 {0.285535287633 0.105155066802 0.965785980336} Untitled_5::O4 357 1
6 {} C 0.0 {0.31442234119 0.0695481462199 0.0289342487416} Untitled_5::C22 358 1
1 {} H 0.0 {0.286811523452 0.891905961851 0.106192063022} Untitled_5::H15 359 1
6 {} C 0.0 {0.290475430855 0.994302709714 0.0371813488252} Untitled_5::C23 360 1
1 {} H 0.0 {0.258878969765 0.970652917635 -0.00983736169271} Untitled_5::H16 361 1
6 {} C 0.0 {0.306408446954 0.950609749782 0.100978386064} Untitled_5::C24 362 1
6 {} C 0.0 {0.356714778516 0.105649153336 0.0856664225783} Untitled_5::C25 363 1
1 {} H 0.0 {0.37668212328 0.163953183426 0.0819148410067} Untitled_5::H17 364 1
6 {} C 0.0 {0.372962213368 0.0611832278335 0.14851343724} Untitled_5::C26 365 1
6 {} C 0.0 {0.349162112887 0.986106702124 0.157241425575} Untitled_5::C27 366 1
6 {} C 0.0 {0.560839848291 0.185028290746 0.756653494101} Untitled_5::C28 367 1
6 {} C 0.0 {0.483644504783 0.112784543516 0.662840815151} Untitled_5::C29 368 1
6 {} C 0.0 {0.423661824621 0.0809211918341 0.211963034316} Untitled_5::C30 369 1
6 {} C 0.0 {0.383729342954 0.956003453644 0.227566264618} Untitled_5::C31 370 1
7 {} N 0.0 {0.429122034547 0.0152258599209 0.258072384887} Untitled_5::N2 371 1
1 {} H 0.0 {0.603566403271 0.20597660016 0.715801677691} Untitled_5::H18 372 1
1 {} H 0.0 {0.579188155544 0.12806950884 0.775347787728} Untitled_5::H19 373 1
1 {} H 0.0 {0.562321774704 0.22234357951 0.806747501272} Untitled_5::H20 374 1
1 {} H 0.0 {0.428534823016 0.100480259406 0.636049291964} Untitled_5::H21 375 1
1 {} H 0.0 {0.505384022467 0.0595661490942 0.687914438536} Untitled_5::H22 376 1
1 {} H 0.0 {0.521962309572 0.12894006923 0.615898380445} Untitled_5::H23 377 1
8 {} O 0.0 {0.377911727837 0.892366874713 0.255431525157} Untitled_5::O5 378 1
8 {} O 0.0 {0.457009580759 0.141085024591 0.220596581364} Untitled_5::O6 379 1
6 {} C 0.0 {0.486381559701 0.00312194859892 0.313703451039} Untitled_5::C32 380 1
1 {} H 0.0 {0.526842742233 0.903238685743 0.475610610323} Untitled_5::H24 381 1
6 {} C 0.0 {0.474732956544 0.953933701061 0.375364824688} Untitled_5::C33 382 1
1 {} H 0.0 {0.420945568091 0.92426134829 0.38242448268} Untitled_5::H25 383 1
6 {} C 0.0 {0.533068202849 0.942425696368 0.427642763308} Untitled_5::C34 384 1
6 {} C 0.0 {0.556737595118 0.0386757614145 0.303594426228} Untitled_5::C35 385 1
1 {} H 0.0 {0.566353283432 0.0745574429755 0.254199718698} Untitled_5::H26 386 1
6 {} C 0.0 {0.614645654275 0.0291439569016 0.356675084879} Untitled_5::C36 387 1
1 {} H 0.0 {0.669468358313 0.0571075781862 0.34781211427} Untitled_5::H27 388 1
6 {} C 0.0 {0.601692750277 0.981767711759 0.41933648287} Untitled_5::C37 389 1
8 {} O 0.0 {0.65470489564 0.968059673428 0.475798246406} Untitled_5::O7 390 1
6 {} C 0.0 {0.710893252262 0.0219814082034 0.490936184676} Untitled_5::C38 391 1
1 {} H 0.0 {0.895503813256 0.0601779990204 0.451627457954} Untitled_5::H28 392 1
6 {} C 0.0 {0.781097692826 0.0180202356449 0.454708398876} Untitled_5::C39 393 1
1 {} H 0.0 {0.789909926866 0.980009452558 0.406832674344} Untitled_5::H29 394 1
6 {} C 0.0 {0.840027528988 0.0647800666852 0.478099115071} Untitled_5::C40 395 1
6 {} C 0.0 {0.697723136489 0.0748950322177 0.54851808025} Untitled_5::C41 396 1
1 {} H 0.0 {0.641090782472 0.0791606258725 0.573803210861} Untitled_5::H30 397 1
6 {} C 0.0 {0.75606489476 0.123422637777 0.571015490491} Untitled_5::C42 398 1
1 {} H 0.0 {0.744420926399 0.167226553256 0.612843609739} Untitled_5::H31 399 1
6 {} C 0.0 {0.827220627828 0.119278907018 0.534671242304} Untitled_5::C43 400 1
6 {} C 0.0 {0.777233189506 0.0691106923266 0.121695576691} Untitled_6::C1 401 1
1 {} H 0.0 {0.792099410558 0.0150933334381 0.935026795443} Untitled_6::H1 402 1
6 {} C 0.0 {0.807176747996 0.0383879754359 0.0544354050472} Untitled_6::C2 403 1
6 {} C 0.0 {0.768345699034 0.0419541107336 -0.0144310881738} Untitled_6::C3 404 1
6 {} C 0.0 {0.705186065568 0.101659796455 0.122458052522} Untitled_6::C4 405 1
1 {} H 0.0 {0.676556026126 0.121834473038 0.173594871917} Untitled_6::H3 406 1
6 {} C 0.0 {0.6670605661 0.105845325319 0.0528185897938} Untitled_6::C5 407 1
6 {} C 0.0 {0.696260966563 0.0752175611714 -0.0149779863763} Untitled_6::C6 408 1
1 {} H 0.0 {0.662579273213 0.0785316470043 0.93271262483} Untitled_6::H5 409 1
6 {} C 0.0 {0.874687002705 -0.00871447771104 0.0754499767068} Untitled_6::C7 410 1
6 {} C 0.0 {0.828188501099 0.0477719385414 0.186877573207} Untitled_6::C8 411 1
7 {} N 0.0 {0.886733927369 0.00555674408096 0.152986631507} Untitled_6::N1 412 1
8 {} O 0.0 {0.911359320311 0.945329523404 0.0387672180854} Untitled_6::O1 413 1
8 {} O 0.0 {0.822048732249 0.0596778133746 0.254944449709} Untitled_6::O2 414 1
8 {} O 0.0 {0.600116885752 0.148444160467 0.0504592279107} Untitled_6::O3 415 1
6 {} C 0.0 {0.614901245402 0.224426078025 0.0340656806243} Untitled_6::C9 416 1
1 {} H 0.0 {0.527437413905 0.396061366489 0.0414898892204} Untitled_6::H6 417 1
6 {} C 0.0 {0.557993747464 0.278477595235 0.0465097765257} Untitled_6::C10 418 1
1 {} H 0.0 {0.503619948664 0.261408082716 0.0712008227876} Untitled_6::H7 419 1
6 {} C 0.0 {0.572865164977 0.355027296901 0.0306284058526} Untitled_6::C11 420 1
6 {} C 0.0 {0.685845036654 0.2464583961 0.00580606754684} Untitled_6::C12 421 1
1 {} H 0.0 {0.730853055787 0.205438458129 -0.00496733178526} Untitled_6::H9 422 1
6 {} C 0.0 {0.698944484462 0.322325952719 0.991194400366} Untitled_6::C13 423 1
1 {} H 0.0 {0.753592304462 0.339062580007 0.96813673319} Untitled_6::H10 424 1
6 {} C 0.0 {0.644422168487 0.378138723975 0.00320767494039} Untitled_6::C14 425 1
6 {} C 0.0 {0.666374356379 0.45869157389 0.978447157844} Untitled_6::C15 426 1
6 {} C 0.0 {0.656355891515 0.460258792301 0.892470585848} Untitled_6::C16 427 1
1 {} H 0.0 {0.75903480108 0.424339019611 0.731112137205} Untitled_6::H11 428 1
6 {} C 0.0 {0.718142472626 0.444356277104 0.845523416817} Untitled_6::C17 429 1
1 {} H 0.0 {0.773403260429 0.434175416673 0.870750350494} Untitled_6::H12 430 1
6 {} C 0.0 {0.710743551832 0.439685558494 0.767048563497} Untitled_6::C18 431 1
6 {} C 0.0 {0.584970588238 0.471145160395 0.859122281561} Untitled_6::C19 432 1
1 {} H 0.0 {0.534562725077 0.482766528025 0.89345150966} Untitled_6::H13 433 1
6 {} C 0.0 {0.576187423203 0.466967596112 0.780456517214} Untitled_6::C20 434 1
1 {} H 0.0 {0.519384259648 0.473133307643 0.756240712124} Untitled_6::H14 435 1
6 {} C 0.0 {0.639862061552 0.453309719785 0.734899446575} Untitled_6::C21 436 1
8 {} O 0.0 {0.636174923056 0.449698558894 0.655318270016} Untitled_6::O4 437 1
6 {} C 0.0 {0.620980354062 0.514925037296 0.61521524941} Untitled_6::C22 438 1
1 {} H 0.0 {0.529387153433 0.686692210634 0.622484727098} Untitled_6::H15 439 1
6 {} C 0.0 {0.58163834462 0.57768350325 0.64571548803} Untitled_6::C23 440 1
1 {} H 0.0 {0.565947980218 0.577800583217 0.705623576787} Untitled_6::H16 441 1
6 {} C 0.0 {0.561894457004 0.639150230159 0.599400263659} Untitled_6::C24 442 1
6 {} C 0.0 {0.647670408535 0.514999341987 0.539555996006} Untitled_6::C25 443 1
1 {} H 0.0 {0.680431051964 0.467160773621 0.517735738617} Untitled_6::H17 444 1
6 {} C 0.0 {0.628697706951 0.577337853691 0.495743588281} Untitled_6::C26 445 1
6 {} C 0.0 {0.583679793786 0.636629377076 0.523740719215} Untitled_6::C27 446 1
6 {} C 0.0 {0.747915009898 0.479671409167 0.00258737877598} Untitled_6::C28 447 1
6 {} C 0.0 {0.61258405904 0.514366326548 0.0146546428208} Untitled_6::C29 448 1
6 {} C 0.0 {0.648185578231 0.595046857429 0.415707756475} Untitled_6::C30 449 1
6 {} C 0.0 {0.563054105872 0.687125955363 0.46027573466} Untitled_6::C31 450 1
7 {} N 0.0 {0.603394671866 0.659850912914 0.395160495198} Untitled_6::N2 451 1
1 {} H 0.0 {0.750917762036 0.484135547719 0.0647957861538} Untitled_6::H18 452 1
1 {} H 0.0 {0.76626537291 0.534348301611 0.9781534439} Untitled_6::H19 453 1
1 {} H 0.0 {0.791190076729 0.438118736588 0.985858571229} Untitled_6::H20 454 1
1 {} H 0.0 {0.553505063477 0.497849079043 0.00571042307561} Untitled_6::H21 455 1
1 {} H 0.0 {0.620263597169 0.570404168019 0.988543062248} Untitled_6::H22 456 1
1 {} H 0.0 {0.622823979501 0.517911827761 0.0763135892778} Untitled_6::H23 457 1
8 {} O 0.0 {0.518094286821 0.740613708331 0.460827560901} Untitled_6::O5 458 1
8 {} O 0.0 {0.69513924375 0.56284170533 0.376040948204} Untitled_6::O6 459 1
6 {} C 0.0 {0.585059188541 0.680382261351 0.318972156175} Untitled_6::C32 460 1
1 {} H 0.0 {0.582650584732 0.598859882196 0.144661821784} Untitled_6::H24 461 1
6 {} C 0.0 {0.599559399007 0.628254054952 0.26083826472} Untitled_6::C33 462 1
1 {} H 0.0 {0.634152845786 0.577995955414 0.270762127761} Untitled_6::H25 463 1
6 {} C 0.0 {0.571636502798 0.641339115956 0.188210839702} Untitled_6::C34 464 1
6 {} C 0.0 {0.546519891425 0.748530297698 0.301366206457} Untitled_6::C35 465 1
1 {} H 0.0 {0.537852384618 0.791123093612 0.345099116064} Untitled_6::H26 466 1
6 {} C 0.0 {0.518849918722 0.76156063613 0.228583580548} Untitled_6::C36 467 1
1 {} H 0.0 {0.491112740297 0.815341469676 0.214534124359} Untitled_6::H27 468 1
6 {} C 0.0 {0.531335716686 0.707642070359 0.1718434743} Untitled_6::C37 469 1
8 {} O 0.0 {0.505986335431 0.72670088423 0.10031600199} Untitled_6::O7 470 1
6 {} C 0.0 {0.549668772812 0.697019940641 0.0356626914138} Untitled_6::C38 471 1
1 {} H 0.0 {0.421980290713 0.559189047428 0.971224493628} Untitled_6::H28 472 1
6 {} C 0.0 {0.506782148843 0.625220184755 0.0215639085034} Untitled_6::C39 473 1
1 {} H 0.0 {0.504921974745 0.586274440599 0.0692340929973} Untitled_6::H29 474 1
6 {} C 0.0 {0.456673004404 0.610340561163 0.966222917829} Untitled_6::C40 475 1
6 {} C 0.0 {0.539510393322 0.750993538953 0.968287729704} Untitled_6::C41 476 1
1 {} H 0.0 {0.58965092137 0.743107341311 0.930114222648} Untitled_6::H30 477 1
6 {} C 0.0 {0.477891284229 0.739186705272 0.911958845112} Untitled_6::C42 478 1
1 {} H 0.0 {0.485482818493 0.771148882881 0.858905138465} Untitled_6::H31 479 1
6 {} C 0.0 {0.441114401664 0.666009430899 0.90442921468} Untitled_6::C43 480 1
1 {} H 0.0 {0.805904446335 0.201152811184 0.838378606695} H_head 481 1
1 {} H 0.0 {0.928011409626 0.977952315576 0.183040985713} H_tail 482 1
@end
@Columns Cell
Constraints string {a b c A B G}
Origin int {{0 0 0}}
Parameters double {{10.0 10.0 10.0 90.0 90.0 90.0}}
PrimitiveData double {{{1.0 0.0 0.0} {0.0 1.0 0.0} {0.0 0.0 1.0}}}
RotationMatrix double {{{1.0 0.0 0.0} {0.0 1.0 0.0} {0.0 0.0 1.0}}}
SpaceGroup string P1
SpaceGroupNumber int 1
ToCartesians double {{{10.0 0.0 0.0} {0.0 10.0 0.0} {0.0 0.0 10.0}}}
ToFractionals double {{{0.10000000000000001 0.0 0.0} {0.0 0.10000000000000001 0.0} {0.0 0.0 0.10000000000000001}}}
@end
@data
{a b c A B G} {0 0 0} {17.56232992 17.56232992 17.56232992 90 90 90} {{1 0 0} {0 1 0} {0 0 1}} {{1 0 0} {0 1 0} {0 0 1}} P1 1 {{17.56232992 0 0} {0 17.56232992 0} {0 0 17.56232992}} {{0.0569400532022 0 0} {0 0.0569400532022 0} {0 0 0.0569400532022}}
@end
@Columns AsymmetricBond
Atom1 reference AsymmetricAtom
Atom2 reference AsymmetricAtom
Key int 0
Order int 0
@end
@data
2 0 0 0
4 0 0 0
10 0 0 0
3 1 0 0
3 2 0 0
9 2 0 0
7 3 0 0
5 4 0 0
6 4 0 0
7 6 0 0
14 6 0 0
8 7 0 0
11 9 0 0
12 9 0 0
11 10 0 0
13 10 0 0
159 11 0 0
15 14 0 0
17 15 0 0
20 15 0 0
19 16 0 0
18 17 0 0
19 17 0 0
24 19 0 0
21 20 0 0
22 20 0 0
23 22 0 0
24 22 0 0
25 24 0 0
26 25 0 0
46 25 0 0
47 25 0 0
28 26 0 0
31 26 0 0
30 27 0 0
29 28 0 0
30 28 0 0
35 30 0 0
32 31 0 0
33 31 0 0
34 33 0 0
35 33 0 0
36 35 0 0
37 36 0 0
39 37 0 0
42 37 0 0
41 38 0 0
40 39 0 0
41 39 0 0
45 41 0 0
43 42 0 0
44 42 0 0
45 44 0 0
48 44 0 0
49 45 0 0
51 46 0 0
52 46 0 0
53 46 0 0
54 47 0 0
55 47 0 0
56 47 0 0
50 48 0 0
58 48 0 0
50 49 0 0
57 49 0 0
59 50 0 0
230 58 0 0
61 59 0 0
64 59 0 0
63 60 0 0
62 61 0 0
63 61 0 0
68 63 0 0
65 64 0 0
66 64 0 0
67 66 0 0
68 66 0 0
69 68 0 0
70 69 0 0
72 70 0 0
75 70 0 0
74 71 0 0
73 72 0 0
74 72 0 0
79 74 0 0
76 75 0 0
77 75 0 0
78 77 0 0
79 77 0 0
480 79 0 0
82 80 0 0
84 80 0 0
90 80 0 0
83 81 0 0
83 82 0 0
89 82 0 0
87 83 0 0
85 84 0 0
86 84 0 0
87 86 0 0
94 86 0 0
88 87 0 0
91 89 0 0
92 89 0 0
91 90 0 0
93 90 0 0
239 91 0 0
95 94 0 0
97 95 0 0
100 95 0 0
99 96 0 0
98 97 0 0
99 97 0 0
104 99 0 0
101 100 0 0
102 100 0 0
103 102 0 0
104 102 0 0
105 104 0 0
106 105 0 0
126 105 0 0
127 105 0 0
108 106 0 0
111 106 0 0
110 107 0 0
109 108 0 0
110 108 0 0
115 110 0 0
112 111 0 0
113 111 0 0
114 113 0 0
115 113 0 0
116 115 0 0
117 116 0 0
119 117 0 0
122 117 0 0
121 118 0 0
120 119 0 0
121 119 0 0
125 121 0 0
123 122 0 0
124 122 0 0
125 124 0 0
128 124 0 0
129 125 0 0
131 126 0 0
132 126 0 0
133 126 0 0
134 127 0 0
135 127 0 0
136 127 0 0
130 128 0 0
138 128 0 0
130 129 0 0
137 129 0 0
139 130 0 0
141 139 0 0
144 139 0 0
143 140 0 0
142 141 0 0
143 141 0 0
148 143 0 0
145 144 0 0
146 144 0 0
147 146 0 0
148 146 0 0
149 148 0 0
150 149 0 0
152 150 0 0
155 150 0 0
154 151 0 0
153 152 0 0
154 152 0 0
159 154 0 0
156 155 0 0
157 155 0 0
158 157 0 0
159 157 0 0
162 160 0 0
164 160 0 0
170 160 0 0
163 161 0 0
163 162 0 0
169 162 0 0
167 163 0 0
165 164 0 0
166 164 0 0
167 166 0 0
174 166 0 0
168 167 0 0
171 169 0 0
172 169 0 0
171 170 0 0
173 170 0 0
319 171 0 0
175 174 0 0
177 175 0 0
180 175 0 0
179 176 0 0
178 177 0 0
179 177 0 0
184 179 0 0
181 180 0 0
182 180 0 0
183 182 0 0
184 182 0 0
185 184 0 0
186 185 0 0
206 185 0 0
207 185 0 0
188 186 0 0
191 186 0 0
190 187 0 0
189 188 0 0
190 188 0 0
195 190 0 0
192 191 0 0
193 191 0 0
194 193 0 0
195 193 0 0
196 195 0 0
197 196 0 0
199 197 0 0
202 197 0 0
201 198 0 0
200 199 0 0
201 199 0 0
205 201 0 0
203 202 0 0
204 202 0 0
205 204 0 0
208 204 0 0
209 205 0 0
211 206 0 0
212 206 0 0
213 206 0 0
214 207 0 0
215 207 0 0
216 207 0 0
210 208 0 0
475 208 0 0
210 209 0 0
217 209 0 0
219 210 0 0
477 218 0 0
479 218 0 0
221 219 0 0
224 219 0 0
223 220 0 0
222 221 0 0
223 221 0 0
470 221 0 0
228 223 0 0
225 224 0 0
226 224 0 0
227 226 0 0
228 226 0 0
229 228 0 0
232 230 0 0
235 230 0 0
234 231 0 0
233 232 0 0
234 232 0 0
239 234 0 0
236 235 0 0
237 235 0 0
238 237 0 0
239 237 0 0
242 240 0 0
244 240 0 0
250 240 0 0
243 241 0 0
243 242 0 0
249 242 0 0
247 243 0 0
245 244 0 0
246 244 0 0
247 246 0 0
254 246 0 0
248 247 0 0
251 249 0 0
252 249 0 0
251 250 0 0
253 250 0 0
399 251 0 0
255 254 0 0
257 255 0 0
260 255 0 0
259 256 0 0
258 257 0 0
259 257 0 0
264 259 0 0
261 260 0 0
262 260 0 0
263 262 0 0
264 262 0 0
265 264 0 0
266 265 0 0
286 265 0 0
287 265 0 0
268 266 0 0
271 266 0 0
270 267 0 0
269 268 0 0
270 268 0 0
275 270 0 0
272 271 0 0
273 271 0 0
274 273 0 0
275 273 0 0
276 275 0 0
277 276 0 0
279 277 0 0
282 277 0 0
281 278 0 0
280 279 0 0
281 279 0 0
285 281 0 0
283 282 0 0
284 282 0 0
285 284 0 0
288 284 0 0
289 285 0 0
291 286 0 0
292 286 0 0
293 286 0 0
294 287 0 0
295 287 0 0
296 287 0 0
290 288 0 0
298 288 0 0
290 289 0 0
297 289 0 0
299 290 0 0
301 299 0 0
304 299 0 0
303 300 0 0
302 301 0 0
303 301 0 0
308 303 0 0
305 304 0 0
306 304 0 0
307 306 0 0
308 306 0 0
309 308 0 0
310 309 0 0
312 310 0 0
315 310 0 0
314 311 0 0
313 312 0 0
314 312 0 0
319 314 0 0
316 315 0 0
317 315 0 0
318 317 0 0
319 317 0 0
322 320 0 0
324 320 0 0
330 320 0 0
323 321 0 0
323 322 0 0
329 322 0 0
327 323 0 0
325 324 0 0
326 324 0 0
327 326 0 0
334 326 0 0
328 327 0 0
331 329 0 0
332 329 0 0
331 330 0 0
333 330 0 0
479 331 0 0
335 334 0 0
337 335 0 0
340 335 0 0
339 336 0 0
338 337 0 0
339 337 0 0
344 339 0 0
341 340 0 0
342 340 0 0
343 342 0 0
344 342 0 0
345 344 0 0
346 345 0 0
366 345 0 0
367 345 0 0
348 346 0 0
351 346 0 0
350 347 0 0
349 348 0 0
350 348 0 0
355 350 0 0
352 351 0 0
353 351 0 0
354 353 0 0
355 353 0 0
356 355 0 0
357 356 0 0
359 357 0 0
362 357 0 0
361 358 0 0
360 359 0 0
361 359 0 0
365 361 0 0
363 362 0 0
364 362 0 0
365 364 0 0
368 364 0 0
369 365 0 0
371 366 0 0
372 366 0 0
373 366 0 0
374 367 0 0
375 367 0 0
376 367 0 0
370 368 0 0
378 368 0 0
370 369 0 0
377 369 0 0
379 370 0 0
381 379 0 0
384 379 0 0
383 380 0 0
382 381 0 0
383 381 0 0
388 383 0 0
385 384 0 0
386 384 0 0
387 386 0 0
388 386 0 0
389 388 0 0
390 389 0 0
392 390 0 0
395 390 0 0
394 391 0 0
393 392 0 0
394 392 0 0
399 394 0 0
396 395 0 0
397 395 0 0
398 397 0 0
399 397 0 0
402 400 0 0
404 400 0 0
410 400 0 0
403 401 0 0
403 402 0 0
409 402 0 0
407 403 0 0
405 404 0 0
406 404 0 0
407 406 0 0
414 406 0 0
408 407 0 0
411 409 0 0
412 409 0 0
411 410 0 0
413 410 0 0
481 411 0 0
415 414 0 0
417 415 0 0
420 415 0 0
419 416 0 0
418 417 0 0
419 417 0 0
424 419 0 0
421 420 0 0
422 420 0 0
423 422 0 0
424 422 0 0
425 424 0 0
426 425 0 0
446 425 0 0
447 425 0 0
428 426 0 0
431 426 0 0
430 427 0 0
429 428 0 0
430 428 0 0
435 430 0 0
432 431 0 0
433 431 0 0
434 433 0 0
435 433 0 0
436 435 0 0
437 436 0 0
439 437 0 0
442 437 0 0
441 438 0 0
440 439 0 0
441 439 0 0
445 441 0 0
443 442 0 0
444 442 0 0
445 444 0 0
448 444 0 0
449 445 0 0
451 446 0 0
452 446 0 0
453 446 0 0
454 447 0 0
455 447 0 0
456 447 0 0
450 448 0 0
458 448 0 0
450 449 0 0
457 449 0 0
459 450 0 0
461 459 0 0
464 459 0 0
463 460 0 0
462 461 0 0
463 461 0 0
468 463 0 0
465 464 0 0
466 464 0 0
467 466 0 0
468 466 0 0
469 468 0 0
470 469 0 0
472 470 0 0
475 470 0 0
474 471 0 0
473 472 0 0
474 472 0 0
479 474 0 0
476 475 0 0
477 475 0 0
478 477 0 0
479 477 0 0
@end
@Columns Bond
AsymmetricBond reference AsymmetricBond
Atom1 reference Atom
Atom2 reference Atom
CellOffset2 int {{0 0 0}}
Key int 0
@end
@data
0 0 2 {1 0 0} 0
1 0 4 {1 0 0} 0
2 10 0 {0 0 0} 0
3 3 1 {0 0 0} 0
4 3 2 {0 0 0} 0
5 9 2 {0 0 0} 0
6 7 3 {0 0 0} 0
7 5 4 {1 1 0} 0
8 6 4 {0 0 0} 0
9 7 6 {0 0 0} 0
10 14 6 {0 0 0} 0
11 8 7 {0 0 0} 0
12 11 9 {1 0 0} 0
13 12 9 {0 0 0} 0
14 11 10 {0 0 0} 0
15 13 10 {0 0 0} 0
16 11 159 {0 0 1} 0
17 15 14 {0 1 0} 0
18 17 15 {0 0 0} 0
19 20 15 {1 0 0} 0
20 19 16 {0 0 0} 0
21 18 17 {0 0 0} 0
22 19 17 {0 0 0} 0
23 24 19 {1 0 0} 0
24 20 21 {0 1 0} 0
25 22 20 {0 0 0} 0
26 23 22 {0 0 0} 0
27 24 22 {0 0 0} 0
28 25 24 {0 0 0} 0
29 26 25 {0 0 0} 0
30 46 25 {0 0 0} 0
31 47 25 {0 0 0} 0
32 28 26 {0 0 0} 0
33 31 26 {0 0 0} 0
34 30 27 {0 0 0} 0
35 29 28 {0 0 0} 0
36 30 28 {0 0 0} 0
37 35 30 {0 0 0} 0
38 32 31 {0 0 0} 0
39 33 31 {0 0 0} 0
40 34 33 {0 0 0} 0
41 35 33 {0 0 0} 0
42 36 35 {0 0 0} 0
43 37 36 {0 0 0} 0
44 39 37 {0 0 0} 0
45 42 37 {0 0 0} 0
46 38 41 {0 0 1} 0
47 40 39 {0 0 0} 0
48 41 39 {0 0 0} 0
49 45 41 {0 0 1} 0
50 43 42 {0 0 0} 0
51 44 42 {0 0 0} 0
52 45 44 {0 0 1} 0
53 48 44 {0 0 0} 0
54 49 45 {0 0 0} 0
55 51 46 {0 0 0} 0
56 52 46 {0 0 0} 0
57 53 46 {0 0 0} 0
58 54 47 {0 0 0} 0
59 55 47 {0 0 0} 0
60 56 47 {0 0 0} 0
61 50 48 {0 0 1} 0
62 58 48 {0 0 0} 0
63 50 49 {0 0 0} 0
64 57 49 {0 0 0} 0
65 59 50 {0 0 0} 0
66 58 230 {1 0 0} 0
67 61 59 {0 0 0} 0
68 64 59 {0 0 0} 0
69 63 60 {0 0 0} 0
70 62 61 {0 0 0} 0
71 63 61 {0 0 0} 0
72 68 63 {0 0 0} 0
73 65 64 {0 0 0} 0
74 66 64 {0 0 0} 0
75 67 66 {0 0 0} 0
76 68 66 {0 0 0} 0
77 69 68 {0 0 0} 0
78 70 69 {0 0 0} 0
79 72 70 {0 0 0} 0
80 75 70 {0 0 0} 0
81 74 71 {0 0 0} 0
82 73 72 {0 0 0} 0
83 74 72 {0 0 0} 0
84 79 74 {0 0 0} 0
85 76 75 {0 0 0} 0
86 77 75 {0 0 0} 0
87 78 77 {0 0 0} 0
88 79 77 {0 0 0} 0
89 480 79 {0 0 0} 0
90 80 82 {0 0 1} 0
91 84 80 {0 0 0} 0
92 90 80 {0 0 0} 0
93 83 81 {0 0 0} 0
94 83 82 {0 0 0} 0
95 89 82 {0 0 0} 0
96 87 83 {0 0 0} 0
97 85 84 {0 0 0} 0
98 86 84 {0 0 0} 0
99 86 87 {0 0 1} 0
100 94 86 {0 0 0} 0
101 88 87 {0 0 0} 0
102 91 89 {0 0 0} 0
103 92 89 {0 0 0} 0
104 90 91 {0 0 1} 0
105 93 90 {0 0 0} 0
106 239 91 {0 1 0} 0
107 95 94 {0 0 0} 0
108 97 95 {0 0 0} 0
109 100 95 {0 0 0} 0
110 99 96 {0 0 0} 0
111 98 97 {0 0 0} 0
112 99 97 {0 0 0} 0
113 104 99 {0 0 0} 0
114 101 100 {0 0 0} 0
115 102 100 {0 0 0} 0
116 103 102 {0 0 0} 0
117 104 102 {0 0 0} 0
118 105 104 {0 0 0} 0
119 106 105 {0 0 0} 0
120 126 105 {0 0 0} 0
121 127 105 {0 0 0} 0
122 108 106 {0 0 0} 0
123 111 106 {0 0 0} 0
124 110 107 {0 0 0} 0
125 109 108 {0 0 0} 0
126 110 108 {0 0 0} 0
127 115 110 {0 0 0} 0
128 112 111 {0 0 0} 0
129 113 111 {0 0 0} 0
130 114 113 {0 0 0} 0
131 115 113 {0 0 0} 0
132 116 115 {0 0 0} 0
133 117 116 {0 0 0} 0
134 119 117 {0 0 0} 0
135 122 117 {0 0 0} 0
136 121 118 {0 0 0} 0
137 120 119 {0 0 0} 0
138 121 119 {0 0 0} 0
139 125 121 {0 0 0} 0
140 123 122 {0 0 0} 0
141 124 122 {0 0 0} 0
142 125 124 {0 0 0} 0
143 128 124 {0 0 0} 0
144 129 125 {0 0 0} 0
145 131 126 {0 0 0} 0
146 132 126 {0 0 0} 0
147 133 126 {0 0 0} 0
148 134 127 {0 0 0} 0
149 135 127 {0 0 0} 0
150 136 127 {0 0 0} 0
151 130 128 {0 0 0} 0
152 138 128 {0 0 0} 0
153 130 129 {0 0 0} 0
154 137 129 {0 0 0} 0
155 139 130 {0 0 0} 0
156 141 139 {0 0 0} 0
157 144 139 {0 0 0} 0
158 143 140 {0 0 0} 0
159 142 141 {0 0 0} 0
160 143 141 {0 0 0} 0
161 148 143 {0 0 0} 0
162 145 144 {0 0 0} 0
163 146 144 {0 0 0} 0
164 147 146 {0 0 0} 0
165 148 146 {0 0 0} 0
166 149 148 {0 0 0} 0
167 150 149 {0 0 0} 0
168 152 150 {0 0 0} 0
169 150 155 {1 0 0} 0
170 154 151 {0 0 0} 0
171 153 152 {0 0 0} 0
172 154 152 {0 0 0} 0
173 159 154 {0 0 0} 0
174 156 155 {0 0 0} 0
175 157 155 {0 0 0} 0
176 158 157 {0 0 1} 0
177 159 157 {1 0 0} 0
178 162 160 {0 0 0} 0
179 164 160 {0 0 0} 0
180 170 160 {0 0 0} 0
181 163 161 {0 0 0} 0
182 163 162 {0 0 1} 0
183 169 162 {1 0 0} 0
184 167 163 {0 0 0} 0
185 165 164 {0 0 0} 0
186 166 164 {0 0 0} 0
187 167 166 {0 0 1} 0
188 174 166 {0 0 0} 0
189 168 167 {0 0 0} 0
190 171 169 {0 0 0} 0
191 172 169 {0 0 0} 0
192 171 170 {1 0 0} 0
193 173 170 {0 0 0} 0
194 319 171 {0 0 0} 0
195 175 174 {0 0 1} 0
196 177 175 {0 0 0} 0
197 180 175 {0 0 0} 0
198 179 176 {0 0 0} 0
199 177 178 {0 0 1} 0
200 179 177 {0 0 0} 0
201 184 179 {0 0 0} 0
202 181 180 {0 0 0} 0
203 182 180 {0 0 0} 0
204 183 182 {0 0 0} 0
205 184 182 {0 0 0} 0
206 185 184 {0 0 0} 0
207 186 185 {0 0 0} 0
208 206 185 {0 0 0} 0
209 207 185 {0 0 0} 0
210 188 186 {0 0 0} 0
211 191 186 {0 0 0} 0
212 190 187 {0 0 0} 0
213 189 188 {0 0 0} 0
214 190 188 {0 0 0} 0
215 195 190 {0 0 0} 0
216 192 191 {0 0 0} 0
217 193 191 {0 0 0} 0
218 194 193 {0 0 0} 0
219 195 193 {0 0 0} 0
220 196 195 {0 0 0} 0
221 197 196 {0 0 0} 0
222 197 199 {0 1 0} 0
223 202 197 {0 0 0} 0
224 201 198 {0 0 1} 0
225 200 199 {0 0 0} 0
226 201 199 {0 0 0} 0
227 205 201 {0 1 -1} 0
228 203 202 {0 0 0} 0
229 204 202 {0 0 0} 0
230 204 205 {0 0 1} 0
231 208 204 {0 0 0} 0
232 209 205 {0 0 0} 0
233 211 206 {0 0 0} 0
234 212 206 {0 0 0} 0
235 213 206 {0 0 0} 0
236 214 207 {0 0 0} 0
237 215 207 {0 0 0} 0
238 216 207 {0 0 0} 0
239 208 210 {0 0 1} 0
240 475 208 {0 0 0} 0
241 210 209 {0 0 0} 0
242 217 209 {0 0 0} 0
243 219 210 {0 0 0} 0
244 477 218 {0 0 0} 0
245 479 218 {0 0 0} 0
246 221 219 {0 0 0} 0
247 224 219 {0 0 0} 0
248 223 220 {0 0 0} 0
249 222 221 {0 0 1} 0
250 223 221 {0 0 0} 0
251 470 221 {0 0 0} 0
252 228 223 {0 0 0} 0
253 225 224 {0 0 0} 0
254 226 224 {0 0 0} 0
255 227 226 {0 0 0} 0
256 228 226 {0 0 0} 0
257 229 228 {0 0 0} 0
258 232 230 {0 0 1} 0
259 235 230 {0 0 0} 0
260 234 231 {0 0 0} 0
261 233 232 {0 0 0} 0
262 234 232 {0 0 0} 0
263 234 239 {0 0 1} 0
264 236 235 {0 0 0} 0
265 237 235 {0 0 0} 0
266 238 237 {0 0 0} 0
267 239 237 {0 0 0} 0
268 242 240 {0 0 0} 0
269 244 240 {0 0 0} 0
270 250 240 {0 0 0} 0
271 243 241 {0 0 0} 0
272 242 243 {1 0 0} 0
273 249 242 {0 0 0} 0
274 247 243 {0 0 0} 0
275 245 244 {0 0 0} 0
276 246 244 {0 0 0} 0
277 246 247 {1 0 0} 0
278 254 246 {0 0 0} 0
279 248 247 {0 0 0} 0
280 251 249 {0 0 0} 0
281 252 249 {0 0 0} 0
282 251 250 {0 0 0} 0
283 253 250 {0 0 0} 0
284 399 251 {0 0 0} 0
285 255 254 {0 0 0} 0
286 257 255 {0 0 0} 0
287 255 260 {1 0 0} 0
288 259 256 {0 0 0} 0
289 258 257 {0 0 0} 0
290 259 257 {0 0 0} 0
291 264 259 {0 0 0} 0
292 261 260 {0 0 0} 0
293 262 260 {0 0 0} 0
294 263 262 {0 0 0} 0
295 264 262 {1 0 0} 0
296 265 264 {0 0 0} 0
297 265 266 {1 0 0} 0
298 286 265 {0 0 0} 0
299 287 265 {0 0 0} 0
300 268 266 {0 0 0} 0
301 271 266 {0 0 0} 0
302 270 267 {0 0 0} 0
303 269 268 {0 0 0} 0
304 270 268 {0 0 0} 0
305 275 270 {0 0 0} 0
306 272 271 {0 0 0} 0
307 273 271 {0 0 0} 0
308 274 273 {0 0 0} 0
309 275 273 {0 0 0} 0
310 276 275 {0 0 0} 0
311 277 276 {0 0 0} 0
312 279 277 {0 0 0} 0
313 282 277 {0 0 0} 0
314 281 278 {0 0 0} 0
315 280 279 {0 0 0} 0
316 281 279 {0 0 0} 0
317 285 281 {0 0 0} 0
318 283 282 {0 0 0} 0
319 284 282 {0 0 0} 0
320 285 284 {0 0 0} 0
321 288 284 {0 0 0} 0
322 289 285 {0 0 0} 0
323 291 286 {0 0 0} 0
324 292 286 {0 0 0} 0
325 293 286 {0 0 0} 0
326 294 287 {0 0 0} 0
327 295 287 {0 0 0} 0
328 296 287 {0 0 0} 0
329 290 288 {0 0 0} 0
330 298 288 {0 0 0} 0
331 290 289 {0 0 0} 0
332 297 289 {0 0 0} 0
333 299 290 {0 0 0} 0
334 301 299 {0 0 0} 0
335 304 299 {0 0 0} 0
336 303 300 {0 0 0} 0
337 302 301 {0 0 0} 0
338 303 301 {0 0 0} 0
339 308 303 {0 0 0} 0
340 305 304 {0 0 0} 0
341 306 304 {0 0 0} 0
342 307 306 {0 0 0} 0
343 308 306 {0 0 0} 0
344 309 308 {0 0 0} 0
345 310 309 {0 0 0} 0
346 312 310 {0 0 0} 0
347 315 310 {0 0 0} 0
348 314 311 {0 0 0} 0
349 313 312 {0 0 0} 0
350 314 312 {0 0 0} 0
351 319 314 {0 0 0} 0
352 316 315 {0 0 0} 0
353 317 315 {0 0 0} 0
354 318 317 {0 0 0} 0
355 319 317 {0 0 0} 0
356 322 320 {0 0 0} 0
357 324 320 {0 0 0} 0
358 330 320 {0 0 0} 0
359 323 321 {0 0 0} 0
360 323 322 {0 0 0} 0
361 329 322 {0 0 0} 0
362 327 323 {0 0 0} 0
363 325 324 {0 0 0} 0
364 326 324 {0 0 0} 0
365 327 326 {0 0 0} 0
366 334 326 {0 0 0} 0
367 328 327 {0 0 0} 0
368 331 329 {0 0 0} 0
369 332 329 {0 0 0} 0
370 331 330 {0 0 0} 0
371 333 330 {0 0 0} 0
372 479 331 {0 0 0} 0
373 335 334 {0 0 0} 0
374 337 335 {0 0 0} 0
375 340 335 {0 0 0} 0
376 339 336 {0 0 0} 0
377 338 337 {0 0 0} 0
378 339 337 {0 0 0} 0
379 344 339 {0 0 0} 0
380 341 340 {0 0 0} 0
381 342 340 {0 0 0} 0
382 343 342 {0 0 0} 0
383 344 342 {0 0 0} 0
384 345 344 {0 0 0} 0
385 346 345 {0 0 0} 0
386 366 345 {0 0 0} 0
387 367 345 {0 0 0} 0
388 348 346 {0 0 0} 0
389 351 346 {0 0 0} 0
390 350 347 {0 0 0} 0
391 349 348 {0 0 0} 0
392 350 348 {0 0 0} 0
393 355 350 {0 0 0} 0
394 352 351 {0 0 0} 0
395 353 351 {0 0 0} 0
396 354 353 {0 0 0} 0
397 355 353 {0 0 0} 0
398 356 355 {0 0 0} 0
399 356 357 {0 0 1} 0
400 359 357 {0 1 0} 0
401 362 357 {0 0 0} 0
402 361 358 {0 0 0} 0
403 360 359 {0 0 1} 0
404 361 359 {0 0 0} 0
405 365 361 {0 0 0} 0
406 363 362 {0 0 0} 0
407 364 362 {0 0 0} 0
408 365 364 {0 1 0} 0
409 368 364 {0 0 0} 0
410 369 365 {0 0 0} 0
411 371 366 {0 0 0} 0
412 372 366 {0 0 0} 0
413 373 366 {0 0 0} 0
414 374 367 {0 0 0} 0
415 375 367 {0 0 0} 0
416 376 367 {0 0 0} 0
417 370 368 {0 0 0} 0
418 378 368 {0 0 0} 0
419 369 370 {0 1 0} 0
420 377 369 {0 0 0} 0
421 379 370 {0 0 0} 0
422 381 379 {0 1 0} 0
423 384 379 {0 0 0} 0
424 383 380 {0 0 0} 0
425 382 381 {0 0 0} 0
426 383 381 {0 0 0} 0
427 388 383 {0 0 0} 0
428 385 384 {0 0 0} 0
429 386 384 {0 0 0} 0
430 387 386 {0 0 0} 0
431 388 386 {0 1 0} 0
432 389 388 {0 0 0} 0
433 389 390 {0 1 0} 0
434 392 390 {0 0 0} 0
435 395 390 {0 0 0} 0
436 394 391 {0 0 0} 0
437 393 392 {0 1 0} 0
438 394 392 {0 0 0} 0
439 399 394 {0 0 0} 0
440 396 395 {0 0 0} 0
441 397 395 {0 0 0} 0
442 398 397 {0 0 0} 0
443 399 397 {0 0 0} 0
444 402 400 {0 0 0} 0
445 404 400 {0 0 0} 0
446 410 400 {0 0 0} 0
447 403 401 {0 0 0} 0
448 403 402 {0 0 1} 0
449 409 402 {0 1 0} 0
450 407 403 {0 0 0} 0
451 405 404 {0 0 0} 0
452 406 404 {0 0 0} 0
453 407 406 {0 0 1} 0
454 414 406 {0 0 0} 0
455 408 407 {0 0 0} 0
456 409 411 {0 1 0} 0
457 412 409 {0 0 0} 0
458 411 410 {0 0 0} 0
459 413 410 {0 0 0} 0
460 481 411 {0 1 0} 0
461 415 414 {0 0 0} 0
462 417 415 {0 0 0} 0
463 420 415 {0 0 0} 0
464 419 416 {0 0 0} 0
465 418 417 {0 0 0} 0
466 419 417 {0 0 0} 0
467 424 419 {0 0 0} 0
468 421 420 {0 0 1} 0
469 422 420 {0 0 1} 0
470 423 422 {0 0 0} 0
471 422 424 {0 0 1} 0
472 425 424 {0 0 1} 0
473 426 425 {0 0 0} 0
474 425 446 {0 0 1} 0
475 425 447 {0 0 1} 0
476 428 426 {0 0 0} 0
477 431 426 {0 0 0} 0
478 430 427 {0 0 0} 0
479 429 428 {0 0 0} 0
480 430 428 {0 0 0} 0
481 435 430 {0 0 0} 0
482 432 431 {0 0 0} 0
483 433 431 {0 0 0} 0
484 434 433 {0 0 0} 0
485 435 433 {0 0 0} 0
486 436 435 {0 0 0} 0
487 437 436 {0 0 0} 0
488 439 437 {0 0 0} 0
489 442 437 {0 0 0} 0
490 441 438 {0 0 0} 0
491 440 439 {0 0 0} 0
492 441 439 {0 0 0} 0
493 445 441 {0 0 0} 0
494 443 442 {0 0 0} 0
495 444 442 {0 0 0} 0
496 445 444 {0 0 0} 0
497 448 444 {0 0 0} 0
498 449 445 {0 0 0} 0
499 451 446 {0 0 0} 0
500 452 446 {0 0 1} 0
501 453 446 {0 0 1} 0
502 454 447 {0 0 0} 0
503 455 447 {0 0 1} 0
504 456 447 {0 0 0} 0
505 450 448 {0 0 0} 0
506 458 448 {0 0 0} 0
507 450 449 {0 0 0} 0
508 457 449 {0 0 0} 0
509 459 450 {0 0 0} 0
510 461 459 {0 0 0} 0
511 464 459 {0 0 0} 0
512 463 460 {0 0 0} 0
513 462 461 {0 0 0} 0
514 463 461 {0 0 0} 0
515 468 463 {0 0 0} 0
516 465 464 {0 0 0} 0
517 466 464 {0 0 0} 0
518 467 466 {0 0 0} 0
519 468 466 {0 0 0} 0
520 469 468 {0 0 0} 0
521 470 469 {0 0 0} 0
522 472 470 {0 0 0} 0
523 475 470 {0 0 1} 0
524 474 471 {0 0 0} 0
525 473 472 {0 0 0} 0
526 474 472 {0 0 1} 0
527 479 474 {0 0 0} 0
528 476 475 {0 0 0} 0
529 477 475 {0 0 0} 0
530 478 477 {0 0 0} 0
531 479 477 {0 0 0} 0
@end
@Columns Subset
Color string {{#65d9f0}}
Criteria string {{}}
DisplayLine int 0
IeqJ int 1
IgtJ int 0
IltJ int 0
Length int 1
Name string {{}}
Table string {{}}
Type string atom
UseColor int 0
@end
@data
@end}}
}
Namespace {
::thread {
}
}
Namespace {
::tsv {
}
}
Namespace {
::tpool {
}
}
Namespace {
::chemistry {
}
}
Namespace {
::chemistry::PeriodicTable {
scalar ::chemistry::PeriodicTable::gProperties {symbol {atomic radius} {covalent radius} {atomic number} {atomic mass} {discovery date} {electrical conductivity} {thermal conductivity} {specific heat} electronegativity {boiling point} {melting point} density {atomic volume} {lattice spacing a} structure {c/a, alpha, b/a} {coherent scattering length} {incoherent X-section} {absorption @1.8A} name state valency {ldf spin-polarization energy} {atomic heat of formation at 0 K} {Pettifor index} {alternate radius}}
scalar ::chemistry::PeriodicTable::gSymbols {X
H He
Li Be B C N O F Ne
Na Mg Al Si P S Cl Ar
K Ca Sc Ti V Cr Mn Fe Co Ni Cu Zn Ga Ge As Se Br Kr
Rb Sr Y Zr Nb Mo Tc Ru Rh Pd Ag Cd In Sn Sb Te I Xe
Cs Ba La Ce Pr Nd Pm Sm Eu Gd Tb Dy Ho Er Tm Yb Lu Hf Ta W Re Os Ir Pt Au Hg Tl Pb Bi Po At Rn
Fr Ra Ac Th Pa U Np Pu Am Cm Bk Cf Es Fm Md No Lr Rf Db Sg Bh Hs Mt Ds Rg Cn Nh Fl Mc Lv Ts Og
}
scalar ::chemistry::PeriodicTable::gType {{} continuous continuous continuous continuous continuous continuous continuous continuous continuous continuous continuous continuous continuous continuous discrete {} continuous continuous continuous {} discrete discrete continuous continuous discrete continuous}
scalar ::chemistry::PeriodicTable::gUnits {{} Ang Ang {} amu {} {10^6 / (cm * ohm)} {W /(cm * K)} {[J/g/K]} {} K\] K {} {} Ang {} {} {1.0E-12 cm} barn barn {} {} {} kJ/mol kJ/mol {} Ang}
scalar ::chemistry::PeriodicTable::gNElements 118
scalar ::chemistry::PeriodicTable::gElementData {{X --- --- 0 0.0 ---- --- ---- --- --- --- --- --- --- --- --- --- --- --- --- Dummy --- --- --- --- 999 1.10} {H 0.79 0.32 1 1.00794 1766 --- 0.001815 14.304 2.20 20.268 14.025 0.0899 14.4 3.75 HEX --- -0.374 79.9 0.3326 Hydrogen gas 1 86.64 216.035 103 0.20} {He 0.49 0.93 2 4.002602 1895 --- 0.00152 5.193 --- 4.215 0.95 0.1787 0.0 3.57 HEX --- 0.326 0.0 0.00747 Helium gas 0 0.00 0 1 1.00} {Li 2.05 1.23 3 6.941 1817 0.108 0.847 3.6 0.98 1615 453.7 0.53 13.10 3.49 BCC --- -0.190 0.91 70.5 Lithium solid 1 23.00 157.735 12 0.90} {Be 1.40 0.90 4 9.012182 1798 0.313 2.00 1.82 1.57 2745 1560.0 1.85 5.0 2.29 HEX 1.567 0.779 0.005 0.0076 Beryllium solid 2 0.00 319.753 77 0.80} {B 1.17 0.82 5 10.811 1828 1.0e-12 0.270 1.02 2.04 4275 2300.0 2.34 4.6 8.73 TET 0.576 0.530 1.7 767.0 Boron solid 3 24.72 559.906 86 0.65} {C 0.91 0.77 6 12.011 ???? 0.00061 1.29 0.71 2.55 4470.0 4100.0 2.62 4.58 3.57 DIA --- 0.6648 0.001 0.0035 Carbon solid 4 116.26 711.194 95 0.70} {N 0.75 0.75 7 14.00674 1772 --- 0.0002598 1.04 3.04 77.35 63.14 1.251 17.3 4.039 HEX 1.051 0.936 0.49 1.90 Nitrogen gas 3 293.49 470.818 100 0.80} {O 0.65 0.73 8 15.9994 1774 --- 0.0002674 0.92 3.44 90.18 50.35 1.429 14.0 6.83 CUB --- 0.5805 0.000 0.00019 Oxygen gas 2 142.65 246.795 101 0.90} {F 0.57 0.72 9 18.9984032 1886 --- 0.000279 0.82 3.98 84.95 53.48 1.696 17.1 --- MCL --- 0.5654 0.0008 0.0096 Fluorine gas 1 38.19 77.2745 102 0.95} {Ne 0.51 0.71 10 20.1797 1898 --- 0.000493 0.904 --- 27.096 24.553 0.901 16.7 4.43 FCC --- 0.4547 0.008 0.039 Neon gas 0 0.00 0 2 1.40} {Na 2.23 1.54 11 22.989768 1807 0.139 1.41 1.23 0.93 1156 371.0 0.97 23.7 4.23 BCC --- 0.363 1.62 0.530 Sodium solid 1 19.86 107.763 11 1.10} {Mg 1.72 1.36 12 24.3050 1808 0.226 1.56 1.02 1.31 1363 922 1.74 13.97 3.21 HEX 1.624 0.5375 0.077 0.063 Magnesium solid 2 0.00 145.901 73 0.95} {Al 1.82 1.18 13 26.981539 1825 0.377 2.37 0.90 1.61 2793 933.25 2.70 10.0 4.05 FCC --- 0.3449 0.0085 0.231 Aluminum solid 3 14.66 327.621 80 0.85} {Si 1.46 1.11 14 28.0855 1823 2.52e-12 1.48 0.71 1.90 3540.0 1685 2.33 12.1 5.43 DIA --- 0.4149 0.015 0.171 Silicon solid 4 64.45 445.667 85 0.80} {P 1.23 1.06 15 30.97362 1669 1.0e-17 0.00235 0.77 2.19 550.0 317.30 1.82 17.0 7.17 CUB --- 0.513 0.006 0.172 Phosphorus solid 3 156.41 315.663 90 0.90} {S 1.09 1.02 16 32.066 ???? 0.5e-23 0.00269 0.71 2.58 717.75 388.36 2.07 15.5 10.47 ORC 2.339/1.229 0.2847 0.007 0.53 Sulfur solid 2 73.16 274.925 94 1.25} {Cl 0.97 0.99 17 35.4527 1774 --- 0.000089 0.48 3.16 239.1 172.16 3.17 22.7 6.24 ORC 1.324/0.718 0.95792 5.2 33.5 Chlorine gas 1 19.12 119.6195 99 1.35} {Ar 0.88 0.98 18 39.948 1894 --- 0.0001772 0.520 --- 87.30 83.81 1.784 28.5 5.26 FCC --- 0.1909 0.22 0.675 Argon gas 0 0.00 0 3 1.70} {K 2.77 2.03 19 39.0983 1807 0.139 1 0.75 0.82 1032 336.35 0.86 45.46 5.23 BCC --- 0.371 0.25 2.1 Potassium solid 1 14.29 89.891 10 1.50} {Ca 2.23 1.91 20 40.078 1808 0.298 2.00 0.63 1.00 1757 1112 1.55 29.9 5.58 FCC --- 0.490 0.03 0.43 Calcium solid 2 0.00 177.339 16 1.30} {Sc 2.09 1.62 21 44.955910 1879 0.0177 0.158 0.6 1 3104 1812 3.0 15.0 3.31 HEX 1.594 1.229 4.5 27.2 Scandium solid 3 15.68 376.22 19 1.05} {Ti 2.00 1.45 22 47.88 1791 0.0234 0.219 0.52 1.54 3562 1943 4.50 10.64 2.95 HEX 1.588 -0.330 2.67 6.09 Titanium solid 4 68.91 470.285 51 1.00} {V 1.92 1.34 23 50.9415 1830 0.0489 0.307 0.49 1.63 3682 2175 5.8 8.78 3.02 BCC --- -0.0382 5.187 5.08 Vanadium solid 5 166.19 514.84 54 0.98} {Cr 1.85 1.18 24 51.9961 1797 0.0774 0.937 0.45 1.66 2945 2130.0 7.19 7.23 2.88 BCC --- 0.3635 1.83 3.07 Chromium solid 3 493.88 394.86 57 0.97} {Mn 1.79 1.17 25 54.93085 1774 0.00695 0.0782 0.48 1.55 2335 1517 7.43 1.39 8.89 FCC --- -0.373 0.40 13.3 Manganese solid 2 511.24 279.8 60 0.96} {Fe 1.72 1.17 26 55.847 ???? 0.0993 0.802 0.44 1.83 3135 1809 7.86 7.1 2.87 BCC --- 0.954 0.39 2.56 Iron solid 2 341.93 411.405 61 0.95} {Co 1.67 1.16 27 58.93320 1737 0.172 1.00 0.42 1.88 3201 1768 8.90 6.7 2.51 HEX 1.622 0.250 4.8 37.18 Cobalt solid 2 199.63 423.41 64 0.94} {Ni 1.62 1.15 28 58.69 1751 0.143 0.907 0.44 1.91 3187 1726 8.90 6.59 3.52 FCC --- 1.03 5.2 4.49 Nickel solid 2 91.65 427.97 67 0.93} {Cu 1.57 1.17 29 63.546 ???? 0.596 4.01 0.38 1.90 2836 1357.6 8.96 7.1 3.61 FCC --- 0.7718 0.52 3.78 Copper solid 2 19.68 336.207 72 0.95} {Zn 1.53 1.25 30 65.39 1746 0.166 1.16 0.39 1.65 1180.0 692.73 7.14 9.2 2.66 HEX 1.856 0.5680 0.077 1.11 Zinc solid 2 0.00 129.86 76 1.00} {Ga 1.81 1.26 31 69.723 1875 0.0678 0.406 0.37 1.81 2478 302.90 5.91 11.8 4.51 ORC 1.695/1.001 0.7288 0.0 2.9 Gallium solid 3 14.36 276.02 81 0.90} {Ge 1.52 1.22 32 72.61 1886 1 0.599 0.32 2.01 3107 1210.4 5.32 13.6 5.66 DIA --- 0.81929 0.17 2.3 Germanium solid 4 59.15 369.238 84 0.85} {As 1.33 1.20 33 74.92159 ???? 0.0345 0.500 0.33 2.18 876 1081 5.72 13.1 4.13 RHL 54\"10' 0.658 0.060 4.5 Arsenic solid 3 136.99 301.93 89 1.00} {Se 1.22 1.16 34 78.96 1817 1.0e-12 0.0204 0.32 2.55 958 494 4.80 16.45 4.36 HEX 1.136 0.797 0.33 11.7 Selenium solid 2 61.67 226.421 93 1.30} {Br 1.12 1.14 35 79.904 1826 --- 0.00122 0.473 2.96 332.25 265.90 3.12 23.5 6.67 ORC 1.307/0.672 0.679 0.10 6.9 Bromine liquid 1 15.62 117.933 98 1.40} {Kr 1.03 1.12 36 83.80 1898 --- 0.0000949 0.248 --- 119.80 115.78 3.74 38.9 5.72 FCC --- 0.780 0.03 25. Krypton gas 0 0.00 0 4 1.90} {Rb 2.98 2.16 37 85.4678 1861 0.0779 0.582 0.363 0.82 961 312.64 1.53 55.9 5.59 BCC --- 0.708 0.3 0.38 Rubidium solid 1 12.78 82.192 9 1.80} {Sr 2.45 1.91 38 87.62 1790 0.0762 0.353 0.30 0.95 1650.0 1041 2.6 33.7 6.08 FCC --- 0.702 0.04 1.28 Strontium solid 2 0.00 164 15 1.60} {Y 2.27 1.62 39 88.90585 1794 0.0166 0.172 0.30 1.22 3611 1799 4.5 19.8 3.65 HEX 1.571 0.775 0.15 1.28 Yttrium solid 3 11.91 420.11 25 1.30} {Zr 2.16 1.45 40 91.224 1789 0.0236 0.227 0.27 1.33 4682 2125 6.49 14.1 3.23 HEX 1.593 0.716 0.16 0.185 Zirconium solid 4 51.13 607.71 49 1.15} {Nb 2.09 1.34 41 92.90638 1801 0.0693 0.537 0.26 1.6 5017 2740.0 8.55 10.87 3.30 BCC --- 0.7054 0.0024 1.15 Niobium solid 5 261.09 722.89 53 1.12} {Mo 2.01 1.30 42 95.94 1778 0.187 1.38 0.25 2.16 4912 2890.0 10.2 9.4 3.15 BCC --- 0.695 0.28 2.55 Molybdenum solid 6 392.14 656.393 56 1.11} {Tc 1.95 1.27 43 98.91 1937 0.067 0.506 0.21 1.9 4538 2473 11.5 8.5 2.74 HEX 1.604 0.68 0.0 20.0 Technetium solid ? 359.05 678 59 1.10} {Ru 1.89 1.25 44 101.07 1844 0.137 1.17 0.238 2.2 4423 2523 12.2 8.3 2.70 HEX 1.584 0.721 0.07 2.56 Ruthenium solid 3 166.40 641.37 62 1.09} {Rh 1.83 1.25 45 102.90550 1803 0.211 1.50 0.242 2.28 3970.0 2236 12.4 8.3 3.90 FCC --- 0.588 0.0 145.0 Rhodium solid 3 88.99 555.71 65 1.08} {Pd 1.79 1.28 46 106.42 1803 0.0950 0.718 0.24 2.20 3237 1825 12.0 8.9 3.89 FCC --- 0.591 0.093 6.9 Palladium solid 2 0.00 377.24 69 1.07} {Ag 1.75 1.34 47 107.8682 ???? 0.630 4.29 0.235 1.93 2436 1234 10.5 10.3 4.09 FCC --- 0.5922 0.58 63.3 Silver solid 1 16.11 284.45 71 1.10} {Cd 1.71 1.48 48 112.411 1817 0.138 0.968 0.23 1.69 1040.0 594.18 8.65 13.1 2.98 HEX 1.886 0.51 2.4 2520.0 Cadmium solid 2 0.00 111.85 75 1.20} {In 2.00 1.44 49 114.82 1863 0.116 0.816 0.23 1.78 2346 429.76 7.31 15.7 4.59 TET 1.076 0.4065 0.54 193.8 Indium solid 3 12.46 243.7 79 1.05} {Sn 1.72 1.41 50 118.710 ???? 0.0917 0.666 0.227 1.96 2876 505.06 7.30 16.3 5.82 TET 0.546 0.6228 0.022 0.626 Tin solid 4 49.86 301.308 83 1.00} {Sb 1.53 1.40 51 121.75 ???? 0.0288 0.243 0.21 2.05 1860.0 904 6.68 18.23 4.51 RHL 58\"6' 0.5641 0.3 5.1 Antimony solid 3 113.05 262.7 88 1.30} {Te 1.42 1.36 52 127.60 1782 2.0e-6 0.0235 0.20 2.1 1261 722.65 6.24 20.5 4.45 HEX 1.33 0.543 0.02 4.7 Tellurium solid 2 50.05 196.62 92 1.70} {I 1.32 1.33 53 126.90447 1804 8.0e-16 0.00449 0.214 2.66 458.4 386.7 4.92 25.74 7.27 ORC 1.347/0.659 0.528 0.0 6.2 Iodine solid 1 12.51 113.759 97 1.80} {Xe 1.24 1.31 54 131.29 1898 --- 0.0000569 0.158 --- 165.03 161.36 5.89 37.3 6.20 FCC --- 0.485 0.0 23.9 Xenon gas 0 0.00 0 5 2.10} {Cs 3.34 2.35 55 132.90543 1860 0.0489 0.359 0.24 0.79 944 301.55 1.87 71.07 6.05 BCC --- 0.542 0.21 29.0 Cesium solid 1 10.91 78.014 8 1.80} {Ba 2.78 1.98 56 137.327 1808 0.030 0.184 0.204 0.89 2171 1002 3.5 39.24 5.02 BCC --- 0.525 0.01 1.2 Barium solid 2 0.00 181.7 14 1.60} {La 2.74 1.69 57 138.9055 1839 0.0126 0.135 0.19 1.10 3730.0 1193 6.7 20.73 3.75 HEX 1.619 0.824 1.13 8.97 Lanthanum solid 3 10.68 431.36 33 1.30} {Ce 2.70 1.65 58 140.115 1803 0.0115 0.114 0.19 1.12 3699 1071 6.78 20.67 5.16 FCC --- 0.484 0.0 0.63 Cerium solid 3 33.37 424.33 32 1.20} {Pr 2.67 1.65 59 140.90765 1885 0.0148 0.125 0.19 1.13 3785 1204 6.77 20.8 3.67 HEX 1.614 0.445 0.016 11.5 Praseodymium solid 3 134.97 357.08 31 1.19} {Nd 2.64 1.64 60 144.24 1925 0.0157 0.165 0.19 1.14 3341 1289 7.00 20.6 3.66 HEX 1.614 0.769 11. 50.5 Neodymium solid 3 248.46 328.93 30 1.18} {Pm 2.62 1.63 61 146.9151 1945 --- 0.179 0.18 1.13 3785 1204 6.475 22.39 --- --- --- 1.26 1.3 168.4 Promethium solid 3 399.56 --- 29 1.17} {Sm 2.59 1.62 62 150.36 1879 0.00956 0.133 0.20 1.17 2064 1345 7.54 19.95 9.00 RHL 23\"13' 0.42 50. 5670. Samarium solid 3 589.70 206.43 28 1.16} {Eu 2.56 1.85 63 151.965 1901 0.0112 0.139 0.18 1.2 1870.0 1090.0 5.26 28.9 4.61 BCC --- 0.668 2.2 4600. Europium solid 3 820.13 176.8 18 1.15} {Gd 2.54 1.61 64 157.25 1880 0.00736 0.106 0.23 1.20 3539 1585 7.89 19.9 3.64 HEX 1.588 0.95 158.0 48890. Gadolinium solid 3 949.67 398.47 27 1.14} {Tb 2.51 1.59 65 158.92534 1843 0.00889 0.111 0.18 1.2 3496 1630.0 8.27 19.2 3.60 HEX 1.581 0.738 0.004 23.4 Terbium solid 3 436.00 390.91 26 1.13} {Dy 2.49 1.59 66 162.50 1886 0.0108 0.107 0.17 1.22 2835 1682 8.54 19.0 3.59 HEX 1.573 1.69 54.5 940. Dysprosium solid 3 283.86 291.8 24 1.12} {Ho 2.47 1.58 67 164.93032 1878 0.0124 0.162 0.16 1.23 2968 1743 8.80 18.7 3.58 HEX 1.570 0.808 0.36 64.7 Holmium solid 3 162.17 302.8 23 1.11} {Er 2.45 1.57 68 167.26 1843 0.0117 0.143 0.17 1.24 3136 1795 9.05 18.4 3.56 HEX 1.570 0.803 1.2 159.2 Erbium solid 3 73.11 318.18 22 1.10} {Tm 2.42 1.56 69 168.93421 1879 0.0150 0.168 0.16 1.25 2220.0 1818 9.33 18.1 3.54 HEX 1.570 0.705 0.41 105. Thulium solid 3 18.52 233.19 21 1.09} {Yb 2.40 1.74 70 173.04 1878 0.0351 0.349 0.15 1.1 1467 1097 6.98 24.79 5.49 FCC --- 1.24 3.0 35.1 Ytterbium solid 3 0.00 152.51 17 1.08} {Lu 2.25 1.56 71 174.967 1907 0.0185 0.164 0.15 1.27 3668 1936 9.84 17.78 3.51 HEX 1.585 0.73 0.1 76.4 Lutetium solid 3 11.53 428.18 20 1.07} {Hf 2.16 1.44 72 178.49 1923 0.0312 0.230 0.14 1.3 4876 2500.0 13.1 13.6 3.20 HEX 1.582 0.777 2.6 104.1 Hafnium solid 4 48.55 618.65 50 1.15} {Ta 2.09 1.34 73 180.9479 1802 0.0761 0.575 0.14 1.5 5731 3287 16.6 10.90 3.31 BCC --- 0.691 0.02 20.6 Tantalum solid 5 112.72 781.44 52 1.12} {W 2.02 1.30 74 183.85 1783 0.189 1.74 0.13 2.36 5828 3680.0 19.3 9.53 3.16 BCC --- 0.477 2.00 18.4 Tungsten solid 6 204.93 847.76 55 1.11} {Re 1.97 1.28 75 186.207 1925 0.0542 0.479 0.13 1.9 5869 3453 21.0 8.85 2.76 HEX 1.615 0.92 0.9 90.7 Rhenium solid 5 325.85 769.22 58 1.10} {Os 1.92 1.26 76 190.2 1804 0.109 0.876 0.13 2.2 5285 3300.0 22.4 8.49 2.74 HEX 1.579 1.10 0.4 16.0 Osmium solid 4 210.26 791 63 1.09} {Ir 1.87 1.27 77 192.22 1804 0.197 1.47 0.130 2.20 4701 2716 22.5 8.54 3.84 FCC --- 1.06 0.2 425.3 Iridium solid 4 119.17 664.07 66 1.08} {Pt 1.83 1.30 78 195.08 1735 0.0966 0.716 0.13 2.28 4100.0 2045 21.4 9.10 3.92 FCC --- 0.963 0.13 10.3 Platinum solid 4 36.06 564.16 68 1.07} {Au 1.79 1.34 79 196.96654 ???? 0.452 3.17 0.128 2.54 3130.0 1337.58 19.3 10.2 4.08 FCC --- 0.763 0.36 98.65 Gold solid 3 14.78 365.81 70 1.10} {Hg 1.76 1.49 80 200.59 ???? 0.0104 0.0834 0.139 2.00 630.0 234.28 13.53 14.82 2.99 RHL 70\"45' 1.266 6.7 372.3 Mercury liquid 2 0.00 64.525 74 1.20} {Tl 2.08 1.48 81 204.3833 1861 0.0617 0.461 0.13 2.04 1746 577 11.85 17.2 3.46 HEX 1.599 0.8785 0.14 3.43 Thallium solid 3 11.75 182.83 78 1.20} {Pb 1.81 1.47 82 207.2 ???? 0.0481 0.353 0.13 2.33 2023 600.6 11.4 18.17 4.95 FCC --- 0.94003 0.003 0.171 Lead solid 4 46.28 195.873 82 1.10} {Bi 1.63 1.46 83 208.98037 ???? 0.00867 0.0787 0.12 2.02 1837 544.52 9.8 21.3 4.75 RHL 58\"14' 0.85256 0.0072 0.0338 Bismuth solid 3 103.69 207.23 87 1.30} {Po 1.53 1.46 84 209.98 1898 0.0219 0.20 0.12 2.0 1235 527 9.4 22.23 3.35 SC --- --- --- --- Polonium solid 2 45.46 --- 91 1.90} {At 1.43 1.45 85 209.9871 1940 --- 0.017 --- 2.2 610.0 575 --- --- --- --- --- --- --- --- Astatine solid 1 11.27 --- 96 2.00} {Rn 1.34 1.43 86 (222) 1898 --- 0.0000364 0.09 --- 211 202 9.91 50.5 --- --- --- --- --- --- Radon gas 0 0.00 0 6 2.20} {Fr 3.50 2.50 87 223.0197 1939 0.03 0.15 --- 0.7 950.0 300.0 --- --- --- --- --- 0.8495 0.0072 0.036 Francium solid 1 10.15 --- 7 2.00} {Ra 3.00 2.40 88 226.025 1898 --- 0.186 0.12 0.9 1809 973 5 45.20 --- --- --- 1.0 0.0 12.8 Radium solid 2 0.00 159 13 1.50} {Ac 3.20 2.20 89 227.028 1899 --- 0.12 --- 1.1 3473 1323 10.07 22.54 5.31 FCC --- --- --- --- Actinium solid 3 9.74 406 48 1.30} {Th 3.16 1.65 90 232.0381 1828 0.0653 0.540 0.12 1.3 5061 2028 11.7 19.9 5.08 FCC --- 0.984 0.0 7.37 Thorium solid 3 39.72 602 47 1.20} {Pa 3.14 1.535 91 231.03588 1917 0.0529 0.47 0.12 1.5 --- --- 15.4 15.0 3.92 TET 0.825 0.91 0.0 200.6 Protactinium solid 3 75.76 607 46 1.10} {U 3.11 1.42 92 238.0289 1789 0.0380 0.276 0.12 1.38 4407 1405 18.90 12.59 2.85 ORC 2.056/1.736 0.8417 0.004 7.57 Uranium solid 3 148.67 533 45 1.10} {Np 3.08 1.42 93 237.048 1940 0.00822 0.063 0.12 1.36 --- 910.0 20.4 11.62 4.72 ORC 1.411/1.035 1.055 0.0 175.9 Neptunium solid 3 {} --- 44 1.10} {Pu 3.05 1.42 94 244.0642 1940 0.00666 0.0674 0.13 1.28 3503 913 19.8 12.32 --- MCL --- 1.41 0.0 558. Plutonium solid 3 {} --- 43 1.10} {Am 3.02 --- 95 243.061375 1945 0.022 0.1 0.11 1.3 2880.0 1268 13.6 17.86 --- --- --- 0.83 0.0 75.3 Americium solid 3 {} --- 42 1.10} {Cm 2.99 --- 96 247.0703 1944 --- 0.1 --- 1.3 --- 1340.0 13.511 18.28 --- --- --- 0.7 0.0 0.0 Curium solid 3 {} --- 41 1.10} {Bk 2.97 --- 97 (247) 1949 --- 0.1 --- 1.3 --- --- --- --- --- --- --- --- --- --- Berkelium solid 3 {} --- 40 1.10} {Cf 2.95 --- 98 (251) 1950 --- 0.1 --- 1.3 --- 900.0 --- --- --- --- --- --- --- --- Californium solid 3 {} --- 39 1.10} {Es 2.92 --- 99 (252) 1952 --- 0.1 --- 1.3 --- --- --- --- --- --- --- --- --- --- Einsteinium solid 3 {} --- 38 1.10} {Fm 2.90 --- 100 257.0951 1953 --- 0.1 --- 1.3 --- --- --- --- --- --- --- --- --- --- Fermium solid 3 {} --- 37 1.10} {Md 2.87 --- 101 (258) 1955 --- 0.1 --- 1.3 --- --- --- --- --- --- --- --- --- --- Mendelevium solid 3 {} --- 36 1.10} {No 2.85 --- 102 (259) 1957 --- 0.1 --- 1.3 --- --- --- --- --- --- --- --- --- --- Nobelium solid 3 {} --- 35 1.10} {Lr 2.82 --- 103 (266) 1961 --- 0.1 --- --- --- --- --- --- --- --- --- --- --- --- Lawrencium solid 3 {} --- 34 1.10} {Rf --- --- 104 261.1087 1964 --- 0.23 --- --- --- --- --- --- --- --- --- --- --- --- Rutherfordium solid ? {} --- 104 1.10} {Db --- --- 105 262.1138 1970 --- 0.58 --- --- --- --- --- --- --- --- --- --- --- --- Dubnium solid ? {} --- 105 1.10} {Sg --- --- 106 263.1182 1974 --- --- --- --- --- --- --- --- --- --- --- --- --- --- Seaborgium solid ? {} --- 106 1.10} {Bh --- --- 107 262.1229 1976 --- --- --- --- --- --- --- --- --- --- --- --- --- --- Bohrium solid ? {} --- 107 1.10} {Hs --- --- 108 (270) 1984 --- --- --- --- --- --- --- --- --- --- --- --- --- --- Hassium solid ? {} --- 108 1.10} {Mt --- --- 109 (268) 1982 --- --- --- --- --- --- --- --- --- --- --- --- --- --- Meitnerium solid ? {} --- 109 1.10} {Ds --- --- 110 (281) 1994 --- --- --- --- --- --- --- --- --- --- --- --- --- --- Darmstadtium solid ? {} --- {} 1.10} {Rg --- --- 111 (280) 1994 --- --- --- --- --- --- --- --- --- --- --- --- --- --- Roentgenium solid ? {} {} {} {}} {Cn --- --- 112 (277) 1996 --- --- --- --- --- --- --- --- --- --- --- --- --- --- Copernicium solid ? {} {} {} {}} {Nh --- --- 113 (287) 2003 --- --- --- --- --- --- --- --- --- --- --- --- --- --- Nihonium solid ? {} {} {} {}} {Fl --- --- 114 (289) 1999 --- --- --- --- --- --- --- --- --- --- --- --- --- --- Flerovium solid ? {} {} {} {}} {Mc --- --- 115 (289) 2004 --- --- --- --- --- --- --- --- --- --- --- --- --- --- Moscovium solid ? {} {} {} {}} {Lv --- --- 116 (293) 2000 --- --- --- --- --- --- --- --- --- --- --- --- --- --- Livermorium solid ? {} {} {} {}} {Ts --- --- 117 (294) 2010 --- --- --- --- --- --- --- --- --- --- --- --- --- --- Tennessine solid ? {} {} {} {}} {Og --- --- 118 (294) 2006 --- --- --- --- --- --- --- --- --- --- --- --- --- --- Oganesson solid ? {} {} {} {}}}
}
}
}
job.status running
job.started {2025-07-25 20:26:32}
job.pid 4979
job.status finished
job.finished {2025-07-26 02:08:51}