Hello, my dear friends! @dexterdev is back after a long gap. Today I will discuss on creating *infinite* molecular structures for MD simulations!!! (**Sounds impossible task... Right?**) In MD(molecular dynamics) forums etc, you will find these queries very often. For example: - See this research gate link: [How to create an infinite graphene sheet with proper periodicity?](https://www.researchgate.net/post/How_to_create_an_infinite_graphene_sheet_with_proper_periodicity). - Another link from namd-l forums: [Infinite Armchair Single Wall Carbon Nanotubes and Periodic Boundary Conditions (PBC)](https://www.ks.uiuc.edu/Research/namd/mailing_list/namd-l.2006-2007/3141.html) So I thought why not document this problem with a solution on STEEM blockchain. There are times when you require to create infinite molecular structures("infinite" in the sense that the molecules in one simulation cell are covalently bonded at the interface to the respective molecules in the adjacent periodic images) in MD simulations. For example, if you want to learn how a DNA chain or protein interacts with a Carbon nanotube, you may want to keep this particular nanotube structure span whole periodic cells. It seems impossible at first sight. But there are some hacks through which we can create such structures. I will explain this in the context of VMD and NAMD softwares. As I have explained in my previous articles, VMD is a visualization software for molecular dynamics(MD) trajectories and NAMD is a MD engine. <center> *Different periodic images of an all-atom simulation system, where the carbon nanotube(cyan) technically spans infinitely(in the sense the nanotube is covalently bonded at the interface of different periodic images) in the z-direction(blue axis). The white transparent box is waterbox and the purple molecule is a protein.*</center> ## Repository https://github.com/dexterdev/STEEMIT/tree/master/INFINITE_CNT ## What will I learn? You will learn how to set up a molecular dynamics system where molecular structures should extent in its periodic cells infinitely. **Softwares used:** VMD, NAMD **Necessary Plugin for connecting bonds between periodic images:** [topotools](https://www.ks.uiuc.edu/Research/vmd/plugins/topotools/) (Topotools comes with latest versions of VMD) If you are not familiar with VMD and NAMD etc, please follow my past articles. Links in **References**. ## Difficulty Intermediate ## System **The System comprises of:** - Carbon nanotube(armchair CNT(5,10)) (5,10) are [chirality numbers](http://www.photon.t.u-tokyo.ac.jp/~maruyama/kataura/chirality.html). It is of no significance here for this article. - Aβ [intrinsically disordered protein](https://en.wikipedia.org/wiki/Intrinsically_disordered_proteins)(from [1Z0Q.pdb](https://www.rcsb.org/structure/1z0q)) - Waterbox with TIP3P water model - NaCl ions with concentration 150mM/litre to neutralize the total charge in system ## Tutorial Content This tutorial is broken down into the following sections: - Creating CNT psf,pdb files using Nanobuilder VMD plugin - Adding the IDP(intrinsically disordered protein) to the system and positioning it properly - Adding Waterbox and ions - Using topotools to modify the structure by adding bonds in CNT C atoms between self and periodic image - Equilibration RUN setup - Verifying Carbon bonds between self and periodic cell are functioning properly ## Creating CNT psf,pdb files This is pretty straightforward. Open `Carbon Nanostructure builder` tool from VMD>Extensions>Modeling.  Choose CNT options accordingly. Chirality numbers and length of tube etc. Once the structure is created, create the pdb psf files using: ``` animate write pdb CNT.pdb animate write psf CNT.psf ``` in VMD Tk console. ## Adding the IDP to the system and positioning it properly The IDP structure can be downloaded from PDB databank([LINK](https://www.rcsb.org/structure/1z0q)). The PDB id is 1Z0Q. Load the CNT structure and you can position the loaded IDP wherever appropriate(VMD hotkey for moving molecule is `8`). Merge the structures in VMD. Save the merged structures. ## Adding Waterbox and ions ``` package require solvate solvate ./OUT.psf ./OUT.pdb -minmax {{-30.56800079345703 -11.4019999504089355 0.0} {40.322999954223633 47.20600128173828 119.11799621582031}} -o OUT_water -s WB ``` The above script can be used to add water. Change the coordinates appropriately. Add ions using Autoionize from here VMD>Extensions>Modeling. ## Using topotools There is a major issue in the structure we have created now. The CNT terminates at box edges of the "self" simulation cell. Which means there is a minor gap between this structure and the CNT in the next periodic cells. Topotools can be used to modify the structure by adding bonds in CNT C atoms between self and periodic images.  *(self-red,periodic-green. See there is no bond between red and green tubes, which can create unnecessary artifacts.)*  *(The distance between the "supposed to be" carbon-carbon bond, is lesser than the usual 1.4 Angstroms.)* So how do we create infinite CNT is the question. There is a hack possible with the aid of topotools. Topotools can create bonds between atoms. The format is as below: ``` package require topotools topo addbond $atom-index1 $atom-index2 ``` For example in the above figure, we need a bond between atom 22 and 1403. The respective atom indices are 21 and 1402. ``` topo addbond 21 1402 ``` You do this for the multiple selections. To make things easier in terms of getting at least the required atom indices, you can use the below selection commands(The selections lie in the 0.9 Angstrom edges of the nanotube): ``` set sel [atomselect top “segname TUB and z<0.9”] $sel get index set sel [atomselect top “segname TUB and z>122.5”] #(118.2 = 123.2-0.9) $sel get index ``` After applying that topo command, let us see the image:  It seems like something has gone wrong. The bond went in between self molecules rather than between self and periodic cell. This problem which is a VMD rendition one will persist in our simulation. But we can verify if there is a proper bond between self and periodic cell structure by running a small simulation. We will come to that section later. ## Equilibration RUN setup ``` structure ./OUT_water_ionized_bondcorrection.psf coordinates ./OUT_water_ionized_bondcorrection.pdb set temperature 298 set outputname test firsttimestep 0 ############################################################# ## SIMULATION PARAMETERS ## ############################################################# # Input paraTypeCharmm on parameters ./par_water_ions.prm parameters ./par_nanotubes.inp parameters ./par_all36_prot.prm temperature $temperature # Force-Field Parameters exclude scaled1-4 1-4scaling 1.0 cutoff 12. switching on switchdist 10. pairlistdist 15.0 margin 8.0 # Integrator Parameters # fullElectFrequency*timestep <=4.0 # stable time steps: # with rigidBonds=all: electro:6fs;short-rangeNB:2fs;bonded:2fs # otherwise : 2fs 2fs 1fs timestep 2.0 ;# 2fs/step rigidBonds all ;# Needed for 2fs steps useSettle on nonbondedFreq 1 fullElectFrequency 2 stepspercycle 10 zeroMomentum yes # Constant Temperature Control langevin off ;# do langevin dynamics langevinDamping 5 ;# damping coefficient (gamma) of 5/ps langevinTemp $temperature langevinHydrogen off ;# don't couple langevin bath to hydrogens #temperature coupling for temperature coupling tCouple on tCoupleTemp $temperature # Periodic Boundary Conditions # center of the periodic box; NOT ORIGIN!!! cellBasisVector1 71 0 0 cellBasisVector2 0 68 0 cellBasisVector3 0 0 124 cellOrigin 10.136194229125977 18.867944717407227 61.83677673339844 #add appropriate numbers at # above wrapAll on # PME (for full-system periodic electrostatics) # multiples of 2,3,5 & >=dimensions above PME yes PMEGridSizeX 90 PMEGridSizeY 90 PMEGridSizeZ 150 #add appropriate numbers at # above # Constant Pressure Control (variable volume) useGroupPressure yes ;# needed for rigidBonds useFlexibleCell no useConstantArea no langevinPiston on langevinPistonTarget 1.01325 ;# in bar -> 1 atm langevinPistonPeriod 100. langevinPistonDecay 50. langevinPistonTemp $temperature # Output outputName $outputname restartfreq 50000 dcdfreq 10000 xstFreq 10000 outputEnergies 10000 outputPressure 10000 ############################################################# ## EXECUTION SCRIPT ## ############################################################# # Minimization minimize 5000 reinitvels $temperature run 111000 ;# 222ps ``` ## Verifying Carbon bonds between self and periodic cell are functioning properly To verify the topotools hack, we can check the the evolution of carbon-crbon bonds in the CNT at the interface. Between our indices 21 and 1402, the bond distance starts at 1.07 Angstroms. It spikes to 1.57 at minimization and evolves towards 1.44 which is great! Now once you feel the system is equilibrated, you can restart the simulation with fixing the CNT atoms in simulation setup.  *The above figure shows the evolution of C-C (between 21 and 1402 indices) bond distances w.r.t time. The time we simulated for is around 222ps. See the distance between carbon-carbon bonds saturating towards 1.44-ish Angstroms, which is what we need.*  *(Evolution of distances - A gif.)* ## Necessary Files All necessary files are uploaded in Github. LINK: https://github.com/dexterdev/STEEMIT/tree/master/INFINITE_CNT ## References ### My previous posts: To learn about VMD and PDB file format, see here: - https://steemit.com/steemstem/@dexterdev/visualizing-bio-molecules-in-computer-part-1-let-us-inspect-a-pdb-file-and-see-it-using-vmd - https://steemit.com/steemstem/@dexterdev/visualizing-bio-molecules-in-computer-part-2-introduction-to-tcl-scripting-environment-in-vmd-1-sbd-prize-task-inside To learn about the concepts in All-atom molecular dynamics see articles below: - https://steemit.com/steemstem/@dexterdev/classical-molecular-dynamics-series-part-1-the-fundamentals - https://steemit.com/steemstem/@dexterdev/classical-molecular-dynamics-series-part-2-the-force-field - https://steemit.com/steemstem/@dexterdev/classical-molecular-dynamics-series-part-3-solving-the-molecular-dynamics-equation To setup and run simulations in NAMD software, see below: - https://steemit.com/steemstem/@dexterdev/classical-molecular-dynamics-series-part-4a-let-us-setup-a-simulation-and-run-it - https://steemit.com/steemstem/@dexterdev/classical-molecular-dynamics-series-part-4b-running-small-systems-on-your-computer - https://steemit.com/steemstem/@dexterdev/let-us-cool-dmpc-bilayer-lipids-an-18-day-long-molecular-dynamics-experiment-on-hpc-facility ### Textbook references for learning theory of Molecular Dynamics: - "Statistical Mechanics: Theory and Molecular Simulations" by Mark E. Tuckerman - "Molecular Modelling: Principles and Applications" by Andrew R. Leach - "Computer Simulation of Liquids" by D. J. Tildesley and M.P. Allen ### References specific to NAMD and VMD: - [NAMD userguide](http://www.ks.uiuc.edu/Research/namd/cvs/ug.pdf) - [NAMD tutorial](http://www.ks.uiuc.edu/Training/Tutorials/namd/namd-tutorial-unix.pdf) - [VMD userguide](http://www.ks.uiuc.edu/Research/vmd/vmd-1.9.1/ug.pdf) - [VMD tutorial](http://www.ks.uiuc.edu/Training/TutorialsOverview/vmd/vmd-tutorial.pdf) # #steemSTEM #steemSTEM is a very vibrant community on top of STEEM blockchain for Science, Technology, Engineering and Mathematics (STEM). If you wish to support steemstem visit the links below: <center>**Have you voted for steemSTEM Witness?**</center> <center><a href='https://steemconnect.com/sign/account_witness_vote?approve=1&witness=stem.witness'><img src='https://i.imgur.com/DbWoeI7.gif'></a></center><hr> Quick link for [voting for the SteemSTEM Witness](https://steemconnect.com/sign/account_witness_vote?approve=1&witness=stem.witness)(@stem.witness) Delegation links for [@steemstem](https://steemit.com/@steemstem) gives ROI of 65% of curation rewards (quick delegation links: [50SP](https://steemconnect.com/sign/delegateVestingShares?delegator=&delegatee=steemstem&vesting_shares=50%20SP) | [100SP](https://steemconnect.com/sign/delegateVestingShares?delegator=&delegatee=steemstem&vesting_shares=100%20SP) | [500SP](https://steemconnect.com/sign/delegateVestingShares?delegator=&delegatee=steemstem&vesting_shares=500%20SP) | [1000SP](https://steemconnect.com/sign/delegateVestingShares?delegator=&delegatee=steemstem&vesting_shares=1000%20SP) | [5000SP](https://steemconnect.com/sign/delegateVestingShares?delegator=&delegatee=steemstem&vesting_shares=5000%20SP) | [10000SP](https://steemconnect.com/sign/delegateVestingShares?delegator=&delegatee=steemstem&vesting_shares=10000%20SP)). Also visit the steemstem app here: https://www.steemstem.io --- **<center>All images without image sources are my creations :)</center>** ## <center>Follow me @dexterdev</center> --- <center> ____ _______ ______ _________ ____ ______ / _ / __\ \//__ __/ __/ __/ _ / __/ \ |\ | | \| \ \ / / \ | \ | \/| | \| \ | | // | |_/| /_ / \ | | | /_| | |_/| /_| \// \____\____/__/\\ \_/ \____\_/\_\____\____\__/ </center> --- <center>https://steemitimages.com/DQmVM9FmLfAYojdB7Ex2ooGhkZMGHht3NzPLUSEvwSvpjTd/dexter.png credit: @mathowl</center>
author | dexterdev |
---|---|
permlink | how-to-create-infinite-structures-in-molecular-dynamics-simulations |
category | steemstem |
json_metadata | {"tags":["steemstem","utopian-io","science","computational-biophysics","molecular-dynamics"],"users":["dexterdev","stem.witness","mathowl"],"image":["https://i.imgur.com/Jtl1xHd.gif","https://i.imgur.com/itvqXWN.png","https://i.imgur.com/MEeMaGM.png","https://i.imgur.com/8WrE0WH.png","https://i.imgur.com/15tyEVs.png","https://i.imgur.com/RFZY8OS.png","https://i.imgur.com/DwEt8Cu.gif","https://i.imgur.com/DbWoeI7.gif","https://steemitimages.com/DQmVM9FmLfAYojdB7Ex2ooGhkZMGHht3NzPLUSEvwSvpjTd/dexter.png"],"links":["https://www.researchgate.net/post/How_to_create_an_infinite_graphene_sheet_with_proper_periodicity","https://www.ks.uiuc.edu/Research/namd/mailing_list/namd-l.2006-2007/3141.html","https://github.com/dexterdev/STEEMIT/tree/master/INFINITE_CNT","https://www.ks.uiuc.edu/Research/vmd/plugins/topotools/","http://www.photon.t.u-tokyo.ac.jp/~maruyama/kataura/chirality.html","https://en.wikipedia.org/wiki/Intrinsically_disordered_proteins","https://www.rcsb.org/structure/1z0q","https://steemit.com/steemstem/@dexterdev/visualizing-bio-molecules-in-computer-part-1-let-us-inspect-a-pdb-file-and-see-it-using-vmd","https://steemit.com/steemstem/@dexterdev/visualizing-bio-molecules-in-computer-part-2-introduction-to-tcl-scripting-environment-in-vmd-1-sbd-prize-task-inside","https://steemit.com/steemstem/@dexterdev/classical-molecular-dynamics-series-part-1-the-fundamentals","https://steemit.com/steemstem/@dexterdev/classical-molecular-dynamics-series-part-2-the-force-field","https://steemit.com/steemstem/@dexterdev/classical-molecular-dynamics-series-part-3-solving-the-molecular-dynamics-equation","https://steemit.com/steemstem/@dexterdev/classical-molecular-dynamics-series-part-4a-let-us-setup-a-simulation-and-run-it","https://steemit.com/steemstem/@dexterdev/classical-molecular-dynamics-series-part-4b-running-small-systems-on-your-computer","https://steemit.com/steemstem/@dexterdev/let-us-cool-dmpc-bilayer-lipids-an-18-day-long-molecular-dynamics-experiment-on-hpc-facility","http://www.ks.uiuc.edu/Research/namd/cvs/ug.pdf","http://www.ks.uiuc.edu/Training/Tutorials/namd/namd-tutorial-unix.pdf","http://www.ks.uiuc.edu/Research/vmd/vmd-1.9.1/ug.pdf","http://www.ks.uiuc.edu/Training/TutorialsOverview/vmd/vmd-tutorial.pdf","https://steemconnect.com/sign/account_witness_vote?approve=1&witness=stem.witness","https://steemit.com/@steemstem","https://steemconnect.com/sign/delegateVestingShares?delegator=&delegatee=steemstem&vesting_shares=50%20SP","https://steemconnect.com/sign/delegateVestingShares?delegator=&delegatee=steemstem&vesting_shares=100%20SP","https://steemconnect.com/sign/delegateVestingShares?delegator=&delegatee=steemstem&vesting_shares=500%20SP","https://steemconnect.com/sign/delegateVestingShares?delegator=&delegatee=steemstem&vesting_shares=1000%20SP","https://steemconnect.com/sign/delegateVestingShares?delegator=&delegatee=steemstem&vesting_shares=5000%20SP","https://steemconnect.com/sign/delegateVestingShares?delegator=&delegatee=steemstem&vesting_shares=10000%20SP","https://www.steemstem.io"],"app":"steemit/0.1","format":"markdown"} |
created | 2018-11-16 06:27:48 |
last_update | 2018-11-19 07:44:36 |
depth | 0 |
children | 10 |
last_payout | 2018-11-23 06:27:48 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 34.659 HBD |
curator_payout_value | 11.420 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 14,207 |
author_reputation | 17,771,704,061,240 |
root_title | "How to create infinite structures for Molecular Dynamics simulations?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 75,375,052 |
net_rshares | 71,647,678,221,432 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
wackou | 0 | 411,289,248,402 | 6.48% | ||
lafona-miner | 0 | 3,279,755,878,982 | 100% | ||
tuck-fheman | 0 | 112,045,766 | 10.8% | ||
mor | 0 | 2,470,600,543 | 100% | ||
eric-boucher | 0 | 35,521,154,633 | 10.8% | ||
anwenbaumeister | 0 | 1,125,502,641 | 21.6% | ||
expanse | 0 | 338,745,021 | 10.8% | ||
diana.catherine | 0 | 10,427,491,275 | 50% | ||
raymondspeaks | 0 | 2,129,542,527 | 10.8% | ||
jesse5th | 0 | 65,013,573 | 50% | ||
social | 0 | 64,624,258 | 100% | ||
joshglen | 0 | 265,257,437 | 21.6% | ||
steemeat | 0 | 201,283,963 | 100% | ||
warofcraft | 0 | 33,798,576,448 | 20% | ||
minnowsunite | 0 | 200,190,993 | 100% | ||
psygambler | 0 | 1,412,929,888 | 10.8% | ||
charlie777pt | 0 | 2,262,310,059 | 2.16% | ||
rwilday | 0 | 50,719,282 | 100% | ||
fraenk | 0 | 27,130,465,058 | 100% | ||
marohf | 0 | 357,395,139 | 50% | ||
lk666 | 0 | 2,569,347,034 | 10.8% | ||
whoib | 0 | 8,653,041,082 | 70% | ||
curie | 0 | 588,144,983,788 | 21.6% | ||
landria | 0 | 201,955,288 | 10.8% | ||
hendrikdegrote | 0 | 9,728,573,571,593 | 21.6% | ||
vact | 0 | 390,666,666,129 | 21.6% | ||
k-syusteem | 0 | 116,914,806 | 5.4% | ||
golbang | 0 | 43,066,451,060 | 6.48% | ||
steemstem | 0 | 3,736,952,001,263 | 100% | ||
dashfit | 0 | 1,995,863,609 | 10.8% | ||
bukiland | 0 | 12,038,211,662 | 3% | ||
j3dy | 0 | 83,563,910 | 0.64% | ||
gangstayid | 0 | 684,570,931 | 10.8% | ||
dna-replication | 0 | 27,555,973,565 | 100% | ||
resteemer | 0 | 301,728,694 | 8.64% | ||
boynashruddin | 0 | 446,333,849 | 10.8% | ||
gmedley | 0 | 1,604,309,706 | 10.8% | ||
jan-mccomas | 0 | 211,444,848 | 10.8% | ||
pacokam8 | 0 | 1,000,031,681 | 8.64% | ||
moksamol | 0 | 2,385,076,484 | 10.8% | ||
getrichordie | 0 | 759,014,379 | 10.8% | ||
thatsweeneyguy | 0 | 1,249,572,936 | 10.8% | ||
bloom | 0 | 397,335,499,036 | 100% | ||
jacalf | 0 | 100,186,109 | 21.6% | ||
foways | 0 | 154,697,802 | 10.8% | ||
momogrow | 0 | 14,775,033,243 | 21.6% | ||
the-eliot | 0 | 401,006,158 | 10.8% | ||
eurogee | 0 | 883,943,157 | 10% | ||
khussan | 0 | 506,181,035 | 100% | ||
dbzfan4awhile | 0 | 292,737,032 | 10.8% | ||
kryzsec | 0 | 51,274,302,254 | 80% | ||
jiujitsu | 0 | 16,288,254,970 | 10.8% | ||
jga | 0 | 3,711,009,663 | 20% | ||
helo | 0 | 18,116,837,665 | 50% | ||
lrsm13 | 0 | 141,594,343 | 6.48% | ||
samminator | 0 | 26,062,859,185 | 50% | ||
christianolu | 0 | 118,518,207 | 10.8% | ||
locikll | 0 | 8,026,003,123 | 43.2% | ||
mahdiyari | 0 | 65,673,048,760 | 50% | ||
lorenzor | 0 | 4,095,065,474 | 50% | ||
aboutyourbiz | 0 | 3,846,752,876 | 21.6% | ||
kymaticus | 0 | 496,508,083 | 100% | ||
pablocordero | 0 | 81,940,572 | 10.8% | ||
alexander.alexis | 0 | 35,067,662,264 | 100% | ||
saintopic | 0 | 92,005,224 | 10.8% | ||
howtostartablog | 0 | 456,064,496 | 2.16% | ||
cobloc | 0 | 268,139,397 | 10.8% | ||
jayna | 0 | 1,304,073,722 | 3.24% | ||
suesa | 0 | 85,186,217,420 | 25% | ||
saunter | 0 | 38,536,134,722 | 100% | ||
cryptokrieg | 0 | 2,366,754,182 | 21.6% | ||
daddylonglens | 0 | 545,249,297 | 100% | ||
riche-gould | 0 | 481,257,026 | 10.8% | ||
slickhustler007 | 0 | 1,035,944,847 | 10.8% | ||
corsica | 0 | 39,766,489,033 | 100% | ||
makrotheblack | 0 | 632,258,818 | 10.8% | ||
ludmila.kyriakou | 0 | 1,545,335,429 | 30% | ||
fancybrothers | 0 | 18,617,098,007 | 30% | ||
nolasco | 0 | 137,218,205 | 1.08% | ||
gambit.coin | 0 | 197,257,405 | 21.6% | ||
howo | 0 | 124,946,597,598 | 50% | ||
tsoldovieri | 0 | 5,573,331,036 | 50% | ||
nitego | 0 | 2,649,053,681 | 6.48% | ||
sweetdreams | 0 | 158,993,691 | 10.8% | ||
neumannsalva | 0 | 2,445,646,048 | 10.8% | ||
wargof | 0 | 268,449,189 | 10% | ||
abigail-dantes | 0 | 1,525,668,135,308 | 100% | ||
phogyan | 0 | 588,689,198 | 10.8% | ||
esteemguy | 0 | 1,378,517,697 | 100% | ||
misterakpan | 0 | 107,170,624 | 1.08% | ||
kofspades | 0 | 80,080,806 | 10.8% | ||
g0nr0gue | 0 | 1,076,755,407 | 10.8% | ||
onethousandwords | 0 | 317,004,881 | 10.8% | ||
alexzicky | 0 | 14,753,118,074 | 25% | ||
mountain.phil28 | 0 | 3,566,340,441 | 25% | ||
leyla5 | 0 | 266,413,891 | 10.8% | ||
sanderdieryck | 0 | 203,617,483 | 10.8% | ||
muliadi | 0 | 186,881,000 | 10.8% | ||
faustofraser | 0 | 73,352,933 | 10.8% | ||
weirdheadaches | 0 | 271,211,669 | 2.16% | ||
iamphysical | 0 | 9,599,638,761 | 90% | ||
kingswisdom | 0 | 1,960,834,041 | 50% | ||
zest | 0 | 19,113,813,176 | 50% | ||
felixrodriguez | 0 | 4,053,349,717 | 50% | ||
sublimenonsense | 0 | 111,943,695 | 10.8% | ||
shippou95 | 0 | 86,055,785 | 10.8% | ||
gabox | 0 | 92,567,821 | 1.08% | ||
indy8phish | 0 | 790,465,023 | 10.8% | ||
azulear | 0 | 347,871,959 | 10.8% | ||
runningman | 0 | 128,029,548 | 10.8% | ||
psicoluigi | 0 | 336,615,224 | 50% | ||
honeysara | 0 | 1,179,250,270 | 5.4% | ||
mr-aaron | 0 | 1,787,942,279 | 50% | ||
massivevibration | 0 | 3,093,784,052 | 5% | ||
crokkon | 0 | 55,803,557,371 | 50% | ||
fbslo | 0 | 3,128,609,395 | 10% | ||
cooknbake | 0 | 438,500,014 | 4.32% | ||
clweeks | 0 | 1,218,791,948 | 12.96% | ||
maxruebensal | 0 | 106,901,799 | 10.8% | ||
irishcoffee | 0 | 236,526,176 | 50% | ||
nicola71 | 0 | 6,730,257,122 | 17.5% | ||
circleoffriends | 0 | 106,962,876 | 10.8% | ||
smafey | 0 | 86,640,985 | 10.8% | ||
paddygsound | 0 | 253,444,596 | 10.8% | ||
marialefleitas | 0 | 168,862,711 | 10.8% | ||
damzxyno | 0 | 205,408,058 | 20% | ||
hillaryaa | 0 | 199,940,882 | 21.6% | ||
fabio2614 | 0 | 3,600,653,429 | 100% | ||
espoem | 0 | 8,432,645,235 | 5% | ||
erikkun28 | 0 | 0 | 1% | ||
derekvonzarovich | 0 | 262,548,623 | 10.8% | ||
gotgame | 0 | 656,716,910 | 10.8% | ||
jlsplatts | 0 | 889,772,538 | 4.32% | ||
poodai | 0 | 861,238,190 | 10.8% | ||
emdesan | 0 | 135,897,236 | 10% | ||
happychild | 0 | 336,549,261 | 10.8% | ||
peaceandwar | 0 | 2,920,996,506 | 10.8% | ||
maaz23 | 0 | 134,680,290 | 10.8% | ||
joendegz | 0 | 360,355,197 | 10.8% | ||
jesusj1 | 0 | 77,643,817 | 100% | ||
lekosvapenglass | 0 | 71,586,288 | 40% | ||
delin.english | 0 | 230,994,926 | 50% | ||
digitalpnut | 0 | 271,170,164 | 10.8% | ||
kimchi-king | 0 | 224,630,606 | 10.8% | ||
carloserp-2000 | 0 | 30,123,762,333 | 100% | ||
gauttam | 0 | 96,922,977 | 10.8% | ||
abeyaimary | 0 | 135,268,479 | 10.8% | ||
hectgranate | 0 | 138,191,014 | 5.4% | ||
utopian-io | 0 | 49,567,428,723,358 | 40% | ||
wandersells | 0 | 104,747,625 | 10.8% | ||
tfcoates | 0 | 1,529,752,813 | 25% | ||
dranren | 0 | 1,996,984,515 | 100% | ||
katerinaramm | 0 | 33,275,040,175 | 100% | ||
amanpathak | 0 | 66,558,857 | 10.8% | ||
delph-in-holland | 0 | 177,812,992 | 10.8% | ||
spectrums | 0 | 76,248,453 | 21.6% | ||
authorcolinbmw | 0 | 324,814,747 | 70% | ||
drmake | 0 | 10,371,696,190 | 10.8% | ||
eleonardo | 0 | 97,777,557 | 10% | ||
guga34 | 0 | 2,601,096,487 | 75% | ||
pechichemena | 0 | 865,525,548 | 4.32% | ||
silenteyes | 0 | 5,045,461,662 | 100% | ||
amestyj | 0 | 1,715,490,397 | 50% | ||
skycae | 0 | 2,793,944,379 | 21.6% | ||
sireh | 0 | 407,926,510 | 2.16% | ||
woolnami | 0 | 13,498,676,239 | 6.48% | ||
kenadis | 0 | 23,325,591,835 | 100% | ||
awolesigideon | 0 | 103,252,343 | 21.6% | ||
maticpecovnik | 0 | 977,990,190 | 20% | ||
iqbaladan | 0 | 9,377,194,914 | 100% | ||
tristan-muller | 0 | 574,889,786 | 100% | ||
iptrucs | 0 | 8,027,645,334 | 15% | ||
steemfreak | 0 | 51,672,544 | 100% | ||
williams-owb | 0 | 168,802,605 | 21.6% | ||
steemerscare | 0 | 55,023,012 | 100% | ||
gentleshaid | 0 | 4,016,811,275 | 10% | ||
thescubageek | 0 | 1,230,415,035 | 10.8% | ||
fejiro | 0 | 1,184,439,176 | 50% | ||
alprazo.lamb | 0 | 440,107,242 | 10.8% | ||
maski | 0 | 609,454,977 | 10.8% | ||
tomatom | 0 | 160,373,119 | 10.8% | ||
akumar | 0 | 258,634,947 | 10.8% | ||
venalbe | 0 | 736,667,072 | 10.8% | ||
ivymalifred | 0 | 890,049,688 | 50% | ||
sco | 0 | 76,890,626,786 | 90% | ||
adetola | 0 | 493,465,131 | 100% | ||
anikekirsten | 0 | 667,582,275 | 21.6% | ||
ennyta | 0 | 1,850,138,405 | 50% | ||
miqyk | 0 | 289,793,136 | 75% | ||
hkmoon | 0 | 1,544,050,151 | 10.8% | ||
rharphelle | 0 | 1,035,184,468 | 25% | ||
gordon92 | 0 | 803,750,377 | 10.8% | ||
stahlberg | 0 | 4,114,506,545 | 10.8% | ||
jordan.white306 | 0 | 252,297,543 | 10.8% | ||
gabrielatravels | 0 | 650,178,816 | 5.4% | ||
catalincernat | 0 | 821,331,286 | 21.6% | ||
thedrewshow | 0 | 89,368,374 | 21.6% | ||
all-right | 0 | 164,681,728 | 21.6% | ||
reizak | 0 | 1,742,827,165 | 8.64% | ||
cerventus | 0 | 107,529,887 | 10.8% | ||
dedicatedguy | 0 | 119,298,339,301 | 73% | ||
zlatkamrs | 0 | 1,275,758,729 | 20.52% | ||
monie | 0 | 386,905,838 | 100% | ||
mangoish | 0 | 88,079,463 | 10% | ||
creatrixity | 0 | 716,851,508 | 10.8% | ||
speaklife | 0 | 223,230,762 | 21.6% | ||
shoganaii | 0 | 923,479,451 | 50% | ||
darkiche | 0 | 574,307,935 | 50% | ||
hetty-rowan | 0 | 774,388,839 | 10.8% | ||
lilianajimenez | 0 | 314,740,376 | 10.8% | ||
langford | 0 | 39,974,409,460 | 100% | ||
mathowl | 0 | 33,058,051,778 | 100% | ||
bimijay | 0 | 79,771,647 | 21.6% | ||
anarchojeweler | 0 | 88,955,438 | 5.4% | ||
dolphinscute | 0 | 228,719,585 | 10.8% | ||
jlmol7 | 0 | 330,077,164 | 100% | ||
bennettitalia | 0 | 87,186,310 | 1.08% | ||
christianyocte | 0 | 148,489,573 | 2.16% | ||
m1alsan | 0 | 302,383,619 | 10.8% | ||
mrxplicit | 0 | 219,017,658 | 21.6% | ||
adamzi | 0 | 666,304,873 | 10.8% | ||
silkroadgo | 0 | 27,730,241,212 | 6.48% | ||
dragibusss | 0 | 262,593,743 | 10% | ||
lacher-prise | 0 | 885,927,610 | 50% | ||
terrylovejoy | 0 | 13,434,436,432 | 40% | ||
jjohnson78 | 0 | 263,421,310 | 10.8% | ||
thabiggdogg | 0 | 2,854,751,509 | 10.8% | ||
wisewoof | 0 | 794,736,734 | 10.8% | ||
vilda | 0 | 164,539,528 | 50% | ||
olajidekehinde | 0 | 600,346,628 | 50% | ||
real2josh | 0 | 952,172,059 | 50% | ||
strings | 0 | 115,944,043 | 10.8% | ||
giddyupngo | 0 | 696,388,685 | 10.8% | ||
steepup | 0 | 1,517,849,643 | 40% | ||
mrday | 0 | 71,026,292 | 10.8% | ||
gribouille | 0 | 945,573,578 | 50% | ||
aaronteng | 0 | 112,143,609 | 10.8% | ||
debbietiyan | 0 | 454,588,508 | 10.8% | ||
emirfirlar | 0 | 221,167,234 | 10.8% | ||
traviseric | 0 | 228,812,280 | 50% | ||
rionpistorius | 0 | 133,156,772 | 50% | ||
yrmaleza | 0 | 1,179,753,972 | 50% | ||
lastditch | 0 | 2,681,145,106 | 100% | ||
mininthecity | 0 | 835,663,548 | 17.28% | ||
randomwanderings | 0 | 364,388,117 | 10.8% | ||
mondodidave73 | 0 | 6,845,160,376 | 15% | ||
heajin | 0 | 80,059,453 | 25% | ||
kingabesh | 0 | 3,180,203,667 | 50% | ||
miguelangel2801 | 0 | 771,185,253 | 50% | ||
stefanyo | 0 | 83,083,238 | 10% | ||
didic | 0 | 8,746,954,396 | 10.8% | ||
niko3d | 0 | 871,193,228 | 10.8% | ||
cypher01 | 0 | 67,413,517 | 10.8% | ||
warpedpoetic | 0 | 673,486,084 | 3.24% | ||
operahoser | 0 | 1,424,327,985 | 3.45% | ||
wdoutjah | 0 | 344,698,059 | 10.8% | ||
asonintrigue | 0 | 80,410,294 | 10.8% | ||
therosepatch | 0 | 952,677,985 | 50% | ||
emiliomoron | 0 | 1,256,783,098 | 50% | ||
jpmkikoy | 0 | 151,696,057 | 10.8% | ||
galam | 0 | 469,382,686 | 35% | ||
dexterdev | 0 | 8,350,087,123 | 100% | ||
gio6 | 0 | 105,691,007 | 10.8% | ||
nwjordan | 0 | 2,991,550,718 | 21.6% | ||
oghie | 0 | 427,562,694 | 50% | ||
ameliabartlett | 0 | 495,974,155 | 3.24% | ||
robertbira | 0 | 10,129,012,511 | 25% | ||
adalhelm | 0 | 216,733,443 | 8.64% | ||
mindscapephotos | 0 | 416,088,207 | 7.56% | ||
ajpacheco1610 | 0 | 1,236,449,213 | 50% | ||
henryconache | 0 | 80,311,294 | 10.8% | ||
gdwcoins | 0 | 259,547,315 | 5.4% | ||
alexdory | 0 | 39,172,805,305 | 40% | ||
flugschwein | 0 | 41,819,517,999 | 95% | ||
benleemusic | 0 | 4,382,129,942 | 2.16% | ||
lianaakobian | 0 | 10,854,376,831 | 100% | ||
ulisesfl17 | 0 | 1,718,181,571 | 100% | ||
arac | 0 | 797,700,356 | 100% | ||
francostem | 0 | 13,409,406,651 | 100% | ||
ivan-g | 0 | 2,383,003,754 | 10.8% | ||
tajstar | 0 | 49,210,574 | 100% | ||
giovaabbatichio | 0 | 98,947,564 | 2.16% | ||
chimtivers96 | 0 | 731,855,224 | 21.6% | ||
jerscoguth | 0 | 79,686,298 | 21.6% | ||
sissyjill | 0 | 72,339,006 | 7% | ||
deusjudo | 0 | 4,426,842,667 | 17.5% | ||
wrpx | 0 | 109,208,836 | 10.8% | ||
elith | 0 | 70,868,933 | 100% | ||
buaan | 0 | 760,222,820 | 100% | ||
joelagbo | 0 | 548,298,456 | 10.8% | ||
idkpdx | 0 | 74,519,357 | 10.8% | ||
emmanuel293 | 0 | 100,642,600 | 25% | ||
atjehsteemit | 0 | 102,452,976 | 10.8% | ||
morbyjohn | 0 | 126,037,272 | 7% | ||
scorpil | 0 | 259,447,778 | 100% | ||
anyes2013 | 0 | 899,095,149 | 50% | ||
jaycem | 0 | 189,069,833 | 39.6% | ||
kookyan | 0 | 428,197,774 | 10.8% | ||
wanasoloben | 0 | 1,279,355,618 | 10.8% | ||
sathyasankar | 0 | 5,839,255,735 | 100% | ||
sunshinebear | 0 | 139,095,936 | 10.8% | ||
phaazer1 | 0 | 273,386,569 | 10.8% | ||
alexa.creates | 0 | 165,839,449 | 10.8% | ||
tomastonyperez | 0 | 4,883,919,743 | 50% | ||
bil.prag | 0 | 182,601,182 | 1.08% | ||
elvigia | 0 | 4,396,907,120 | 50% | ||
galione | 0 | 106,295,936 | 10.8% | ||
dedesuryani | 0 | 105,097,152 | 50% | ||
chillingotter | 0 | 64,378,881 | 10.8% | ||
pwner | 0 | 77,184,712 | 21.6% | ||
laurentiu.negrea | 0 | 227,062,134 | 10.8% | ||
patchnotes | 0 | 372,527,979 | 12.96% | ||
effofex | 0 | 9,337,077,334 | 50% | ||
luiscd8a | 0 | 1,904,993,185 | 80% | ||
count-antonio | 0 | 247,462,283 | 50% | ||
eniolw | 0 | 2,293,478,770 | 50% | ||
de-stem | 0 | 61,966,259,173 | 99% | ||
geadriana | 0 | 911,712,353 | 50% | ||
ikeror | 0 | 91,388,495 | 19.44% | ||
elpdl | 0 | 405,280,929 | 100% | ||
derbesserwisser | 0 | 20,294,640,427 | 100% | ||
serylt | 0 | 28,991,153,825 | 98% | ||
greatwarrior79 | 0 | 124,553,718 | 50% | ||
bavi | 0 | 666,155,083 | 10.8% | ||
captainquenta | 0 | 74,861,640 | 50% | ||
misia1979 | 0 | 1,966,856,766 | 10.8% | ||
ari16 | 0 | 1,028,363,331 | 50% | ||
josedelacruz | 0 | 2,727,458,734 | 50% | ||
viannis | 0 | 2,277,510,275 | 50% | ||
technotroll | 0 | 171,467,939 | 10.8% | ||
f-steemit | 0 | 444,076,071 | 1% | ||
outtheshellvlog | 0 | 1,816,732,199 | 50% | ||
flores39 | 0 | 417,584,705 | 100% | ||
majapesi | 0 | 244,614,823 | 50% | ||
kendallron | 0 | 331,138,905 | 21.6% | ||
erickyoussif | 0 | 2,402,864,391 | 100% | ||
thomaskatan | 0 | 201,783,997 | 15.12% | ||
recordpool | 0 | 277,419,928 | 10% | ||
michaelwrites | 0 | 1,328,631,749 | 50% | ||
scintillaic | 0 | 756,085,685 | 50% | ||
yaqinnas | 0 | 142,411,752 | 98% | ||
woolnyeo | 0 | 1,579,597,816 | 6.48% | ||
apteacher | 0 | 392,344,596 | 4.32% | ||
deholt | 0 | 3,527,654,618 | 100% | ||
justasperm | 0 | 300,007,359 | 10.8% | ||
jembee | 0 | 112,842,731 | 10.8% | ||
nigerian-yogagal | 0 | 457,641,186 | 10.8% | ||
temitayo-pelumi | 0 | 7,426,278,087 | 100% | ||
melaniesaray | 0 | 133,973,415 | 10.8% | ||
qberryfarms | 0 | 472,806,814 | 10.8% | ||
yusvelasquez | 0 | 424,751,167 | 50% | ||
joanpablo | 0 | 143,439,843 | 10.8% | ||
doctor-cog-diss | 0 | 483,925,280 | 90% | ||
alexworld | 0 | 440,973,310 | 25% | ||
onethousandpics | 0 | 246,687,850 | 10.8% | ||
marcuz | 0 | 2,046,562,278 | 50% | ||
toby-l | 0 | 79,547,712 | 21.6% | ||
frost1903 | 0 | 50,578,650 | 50% | ||
synick | 0 | 89,712,637 | 15% | ||
krasnalek | 0 | 166,636,900 | 21.6% | ||
avizor | 0 | 2,780,672,009 | 10.8% | ||
romanleopold | 0 | 471,026,199 | 10.8% | ||
acont | 0 | 262,855,146 | 50% | ||
dobrica | 0 | 597,320,276 | 10.8% | ||
niouton | 0 | 1,014,356,119 | 4.32% | ||
beautyinscience | 0 | 250,181,781 | 50% | ||
anaestrada12 | 0 | 6,230,456,683 | 100% | ||
disruptivas | 0 | 332,767,306 | 10.25% | ||
medicnet | 0 | 180,394,648 | 40% | ||
communityisyou | 0 | 180,240,819 | 40% | ||
hardaeborla | 0 | 483,974,488 | 10.8% | ||
steemzeiger | 0 | 4,609,606,584 | 99% | ||
council | 0 | 629,570,193 | 10% | ||
lil-splatts | 0 | 336,145,777 | 10.8% | ||
naomipangolin | 0 | 225,628,260 | 10.8% | ||
mayib | 0 | 75,592,441 | 10.8% | ||
yogaspirit | 0 | 302,413,387 | 100% | ||
eroticabian | 0 | 241,152,154 | 4.32% | ||
reconstitution | 0 | 125,764,186 | 3.02% | ||
biomimi | 0 | 188,581,363 | 40% | ||
ibk-gabriel | 0 | 797,914,701 | 50% | ||
scrawly | 0 | 3,970,246,773 | 10.8% | ||
funster | 0 | 180,865,930 | 99% | ||
osakuni | 0 | 71,440,604 | 50% | ||
hhtb | 0 | 800,403,125 | 10% | ||
kingabesh1 | 0 | 250,522,026 | 50% | ||
reyvaj | 0 | 16,281,314,735 | 50% | ||
mahmudulhassan | 0 | 175,537,032 | 10.8% | ||
jesusfl17 | 0 | 412,305,399 | 100% | ||
angelzam | 0 | 79,955,621 | 21.6% | ||
angelica7 | 0 | 105,191,083 | 6.48% | ||
patapa | 0 | 82,954,809 | 21.6% | ||
purelyscience | 0 | 777,011,131 | 50% | ||
derg | 0 | 79,941,926 | 21.6% | ||
yomismosoy | 0 | 151,344,338 | 50% | ||
juanmolina | 0 | 80,324,845 | 21.6% | ||
lagrangemit | 0 | 79,893,975 | 21.6% | ||
riemman-stielmit | 0 | 79,514,082 | 21.6% | ||
ashfaaaq | 0 | 367,445,706 | 10.8% | ||
mitaenda | 0 | 87,666,907 | 20% | ||
juanhobos | 0 | 97,527,897 | 10.8% | ||
ubaldonet | 0 | 1,835,882,218 | 80% | ||
tradermeetscoder | 0 | 3,641,144,249 | 33% | ||
nikola.kalabic | 0 | 79,814,805 | 21.6% | ||
sina-adventure | 0 | 146,467,104 | 10.8% | ||
doneliseo | 0 | 0 | 28% | ||
bitson | 0 | 100,567,694 | 10.8% | ||
call-me-howie | 0 | 9,481,418,141 | 10.8% | ||
mary11 | 0 | 147,502,716 | 50% | ||
sergiotorres | 0 | 82,086,367 | 21.6% | ||
tropicalgrey | 0 | 82,340,425 | 21.6% | ||
acousticguitar | 0 | 1,237,816,844 | 50% | ||
homespun | 0 | 132,337,225 | 21.6% | ||
cryptoisfun | 0 | 115,367,438 | 10.8% | ||
hansmast | 0 | 1,587,260,276 | 10.8% | ||
momimalhi | 0 | 231,345,820 | 10.8% | ||
cynicalcake | 0 | 188,574,316 | 10.8% | ||
deividluchi | 0 | 341,855,815 | 10.8% | ||
wstanley226 | 0 | 1,866,383,707 | 50% | ||
gpcx86 | 0 | 193,193,269 | 5% | ||
jireneye | 0 | 85,220,620 | 21.6% | ||
maikolp | 0 | 80,671,391 | 21.6% | ||
carlosvls | 0 | 82,037,964 | 21.6% | ||
amelisfer | 0 | 79,539,724 | 21.6% | ||
reinaseq | 0 | 2,098,646,895 | 70% | ||
suasteguimichel | 0 | 68,306,863 | 50% | ||
testomilian | 0 | 304,888,035 | 59.4% | ||
sciencebox | 0 | 79,862,622 | 21.6% | ||
scienceboard | 0 | 79,728,462 | 21.6% | ||
jasb | 0 | 80,248,785 | 21.6% | ||
juanchop | 0 | 79,728,442 | 21.6% | ||
allhailfish | 0 | 83,466,034 | 50% | ||
danlipert | 0 | 407,961,596 | 10.8% | ||
cutie-pie | 0 | 431,319,862 | 100% | ||
ujhg1004 | 0 | 169,371,903 | 6.48% | ||
clement.poiret | 0 | 1,110,514,298 | 21.6% | ||
shadown99 | 0 | 406,391,806 | 10.8% | ||
vzlauniversity | 0 | 79,567,459 | 21.6% | ||
karlab | 0 | 82,037,295 | 21.6% | ||
masterkey1 | 0 | 79,566,589 | 21.6% | ||
michaelto | 0 | 79,494,391 | 21.6% | ||
fran.frey | 0 | 1,776,024,465 | 50% | ||
scienceblocks | 0 | 12,208,800,869 | 100% | ||
perpetuum-lynx | 0 | 2,092,069,563 | 98% | ||
supposer | 0 | 1,592,952,984 | 99% | ||
herbayomi | 0 | 1,003,658,201 | 50% | ||
annaabi | 0 | 1,929,720,549 | 10.8% | ||
abraham10 | 0 | 65,978,275 | 82% | ||
ananas.studio | 0 | 178,267,777 | 10.8% | ||
kiikoh | 0 | 144,827,489 | 21.6% | ||
mrunderstood | 0 | 417,988,482 | 10.8% | ||
squinty | 0 | 378,141,816 | 100% | ||
diyanti86 | 0 | 143,403,128 | 10.8% | ||
changevictory | 0 | 79,661,550 | 21.6% | ||
matrixbinary | 0 | 79,540,187 | 21.6% | ||
fclosamigos | 0 | 79,540,175 | 21.6% | ||
plumesteemit | 0 | 79,466,299 | 21.6% | ||
brandsteemit | 0 | 79,540,187 | 21.6% | ||
parchazar | 0 | 79,722,288 | 21.6% | ||
trickgame | 0 | 79,540,181 | 21.6% | ||
skorup87 | 0 | 22,761,215 | 12% | ||
elvenbard | 0 | 48,226,129 | 50% | ||
swapsteem | 0 | 537,222,424 | 50% | ||
trang | 0 | 1,855,316,292 | 10.8% | ||
stem-espanol | 0 | 27,509,686,302 | 100% | ||
praditya | 0 | 467,650,245 | 24% | ||
yashshah991 | 0 | 66,188,306 | 50% | ||
chappertron | 0 | 14,675,516,193 | 100% | ||
gbemy | 0 | 70,918,439 | 20% | ||
raghao | 0 | 350,437,601 | 10.8% | ||
rhethypo | 0 | 992,637,794 | 10.8% | ||
mistyexe | 0 | 537,993,893 | 100% | ||
jjsegovia | 0 | 80,294,913 | 21.6% | ||
tecnosc | 0 | 80,291,519 | 21.6% | ||
purplepaper | 0 | 79,566,577 | 21.6% | ||
wonderfulfood | 0 | 80,291,500 | 21.6% | ||
knightbjj | 0 | 262,250,658 | 10.8% | ||
predict-crypto | 0 | 759,599,287 | 0.43% | ||
alpha-today | 0 | 74,596,956 | 10.8% | ||
javier.dejuan | 0 | 22,004,226,200 | 100% | ||
jewlzie | 0 | 221,459,423 | 10.8% | ||
ejgarcia | 0 | 175,112,619 | 10.8% | ||
faithfullwills | 0 | 67,910,134 | 85% | ||
stonecoin | 0 | 208,974,710 | 21.6% | ||
fanta-steem | 0 | 230,419,951 | 4.32% | ||
kinglypalace | 0 | 93,761,522 | 21.6% | ||
zerokun | 0 | 264,357,686 | 10.8% | ||
xeliram | 0 | 267,261,448 | 50% | ||
giulyfarci52 | 0 | 315,357,922 | 50% | ||
nesmeliy | 0 | 94,821,972 | 10.8% | ||
darklands | 0 | 4,991,668,273 | 10% | ||
alom8 | 0 | 432,013,310 | 10.8% | ||
raoufwilly | 0 | 281,514,308 | 6.48% | ||
cryptowrld | 0 | 0 | 26% | ||
nothingismagick | 0 | 202,144,137 | 10.8% | ||
positiveninja2 | 0 | 158,230,594 | 5.4% | ||
deadcountry | 0 | 526,445,707 | 10.8% | ||
cherryandberry | 0 | 0 | 5% | ||
lordkipas | 0 | 138,232,512 | 10.8% | ||
stem.witness | 0 | 15,604,551,804 | 100% | ||
sarhugo | 0 | 709,919,238 | 10.8% | ||
anthive | 0 | 65,088,919 | 50% | ||
andiblok | 0 | 63,240,604 | 25% | ||
double-negative | 0 | 219,760,287 | 20% | ||
phatima | 0 | 6,300,429,660 | 5% | ||
lostplace | 0 | 268,840,697 | 21.6% | ||
amin-ove | 0 | 89,330,808 | 50% | ||
trailreward | 0 | 9,456,854,130 | 100% | ||
cerd26 | 0 | 103,657,264 | 100% |
I can't claim I know much what this is about... I guess the title says it all... > How to create infinite structures for Molecular Dynamics simulations? It's probably self-explanatory, just way above my head... but it looks effin intriguing! Where are those #steemSTEM curators at?!
author | fraenk |
---|---|
permlink | re-dexterdev-how-to-create-infinite-structures-in-molecular-dynamics-simulations-20181119t104815724z |
category | steemstem |
json_metadata | {"tags":["steemstem"],"app":"steemit/0.1"} |
created | 2018-11-19 10:48:15 |
last_update | 2018-11-19 10:48:45 |
depth | 1 |
children | 1 |
last_payout | 2018-11-26 10:48:15 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.033 HBD |
curator_payout_value | 0.007 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 284 |
author_reputation | 17,144,676,870,084 |
root_title | "How to create infinite structures for Molecular Dynamics simulations?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 75,547,626 |
net_rshares | 69,960,783,534 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
mathowl | 0 | 22,253,547,213 | 60% | ||
dexterdev | 0 | 8,517,491,041 | 100% | ||
dustsweeper | 0 | 39,189,745,280 | 5.96% |
Thank you for the encouragement @fraenk . I highly appreciate it. Thanks for visiting. But I guess this post may not attract that many popsci readers. It is not accessible to most people. Perhaps that's why it got no recognition. :P Update: I got steemSTEM vote finally😍
author | dexterdev |
---|---|
permlink | re-fraenk-re-dexterdev-how-to-create-infinite-structures-in-molecular-dynamics-simulations-20181119t104937083z |
category | steemstem |
json_metadata | {"tags":["steemstem"],"users":["fraenk"],"app":"steemit/0.1"} |
created | 2018-11-19 10:52:18 |
last_update | 2018-11-20 03:08:36 |
depth | 2 |
children | 0 |
last_payout | 2018-11-26 10:52:18 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 271 |
author_reputation | 17,771,704,061,240 |
root_title | "How to create infinite structures for Molecular Dynamics simulations?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 75,547,825 |
net_rshares | 0 |
Nice article. But your coordinate axes are confusing me.
author | isarmoewe |
---|---|
permlink | re-dexterdev-how-to-create-infinite-structures-in-molecular-dynamics-simulations-20181128t102634235z |
category | steemstem |
json_metadata | {"tags":["steemstem"],"app":"steemit/0.1"} |
created | 2018-11-28 10:26:36 |
last_update | 2018-11-28 10:26:36 |
depth | 1 |
children | 2 |
last_payout | 2018-12-05 10:26:36 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.019 HBD |
curator_payout_value | 0.004 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 56 |
author_reputation | 27,164,632,553,667 |
root_title | "How to create infinite structures for Molecular Dynamics simulations?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 76,035,052 |
net_rshares | 41,284,182,334 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
isnochys | 0 | 5,287,642,102 | 10% | ||
dexterdev | 0 | 11,586,455,515 | 100% | ||
steemelements | 0 | 67,191,675 | 100% | ||
dustbunny | 0 | 24,342,893,042 | 9.16% |
X axis is the frames which can be converted to time. Y axis is in Angstrom units. (since they are in bond distance units) Let me know if you have specific doubts. I will clarify it.
author | dexterdev |
---|---|
permlink | re-isarmoewe-re-dexterdev-how-to-create-infinite-structures-in-molecular-dynamics-simulations-20181128t103948140z |
category | steemstem |
json_metadata | {"tags":["steemstem"],"app":"steemit/0.1"} |
created | 2018-11-28 10:42:33 |
last_update | 2018-11-28 10:48:42 |
depth | 2 |
children | 1 |
last_payout | 2018-12-05 10:42:33 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 181 |
author_reputation | 17,771,704,061,240 |
root_title | "How to create infinite structures for Molecular Dynamics simulations?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 76,035,587 |
net_rshares | 0 |
Hm. I simply associated it with a Cartesian coordinate system. Which is probably why nobody else questioned the coordinates. I found myself trying to sort out where z should point to if x was my right thumb, y and z being the second and third finger, respectively. Well, you probably should ignore my thoughts, I'm afraid I'm being ridiculous. I just tried to figure out the orientation with my left hand too.
author | isarmoewe |
---|---|
permlink | re-dexterdev-re-isarmoewe-re-dexterdev-how-to-create-infinite-structures-in-molecular-dynamics-simulations-20181128t111738363z |
category | steemstem |
json_metadata | {"tags":["steemstem"],"app":"steemit/0.1"} |
created | 2018-11-28 11:17:42 |
last_update | 2018-11-28 11:17:42 |
depth | 3 |
children | 0 |
last_payout | 2018-12-05 11:17:42 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 409 |
author_reputation | 27,164,632,553,667 |
root_title | "How to create infinite structures for Molecular Dynamics simulations?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 76,036,722 |
net_rshares | 5,408,432,160 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
isnochys | 0 | 5,273,384,496 | 10% | ||
steem.observer | 0 | 135,047,664 | 100% |
Congratulations @dexterdev! You have completed the following achievement on the Steem blockchain and have been rewarded with new badge(s) : <table><tr><td>https://steemitimages.com/60x70/http://steemitboard.com/@dexterdev/votes.png?201811190347</td><td>You made more than 7000 upvotes. Your next target is to reach 8000 upvotes.</td></tr> </table> <sub>_[Click here to view your Board of Honor](https://steemitboard.com/@dexterdev)_</sub> <sub>_If you no longer want to receive notifications, reply to this comment with the word_ `STOP`</sub> **Do not miss the last post from @steemitboard:** <table><tr><td><a href="https://steemit.com/steemfest/@steemitboard/meet-the-steemians-contest-the-results-the-winners-and-the-prizes"><img src="https://steemitimages.com/64x128/https://cdn.steemitimages.com/DQmeLukvNFRsa7RURqsFpiLGEZZD49MiU52JtWmjS5S2wtW/image.png"></a></td><td><a href="https://steemit.com/steemfest/@steemitboard/meet-the-steemians-contest-the-results-the-winners-and-the-prizes">Meet the Steemians Contest - The results, the winners and the prizes</a></td></tr><tr><td><a href="https://steemit.com/steemfest/@steemitboard/meet-the-steemians-contest-special-attendees-revealed"><img src="https://steemitimages.com/64x128/https://cdn.steemitimages.com/DQmeLukvNFRsa7RURqsFpiLGEZZD49MiU52JtWmjS5S2wtW/image.png"></a></td><td><a href="https://steemit.com/steemfest/@steemitboard/meet-the-steemians-contest-special-attendees-revealed">Meet the Steemians Contest - Special attendees revealed</a></td></tr><tr><td><a href="https://steemit.com/steemfest/@steemitboard/meet-the-steemians-contest-intermediate-results"><img src="https://steemitimages.com/64x128/https://cdn.steemitimages.com/DQmeLukvNFRsa7RURqsFpiLGEZZD49MiU52JtWmjS5S2wtW/image.png"></a></td><td><a href="https://steemit.com/steemfest/@steemitboard/meet-the-steemians-contest-intermediate-results">Meet the Steemians Contest - Intermediate results</a></td></tr></table> > Support [SteemitBoard's project](https://steemit.com/@steemitboard)! **[Vote for its witness](https://v2.steemconnect.com/sign/account-witness-vote?witness=steemitboard&approve=1)** and **get one more award**!
author | steemitboard |
---|---|
permlink | steemitboard-notify-dexterdev-20181119t073925000z |
category | steemstem |
json_metadata | {"image":["https://steemitboard.com/img/notify.png"]} |
created | 2018-11-19 07:39:24 |
last_update | 2018-11-19 07:39:24 |
depth | 1 |
children | 0 |
last_payout | 2018-11-26 07:39:24 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 2,159 |
author_reputation | 38,975,615,169,260 |
root_title | "How to create infinite structures for Molecular Dynamics simulations?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 75,539,904 |
net_rshares | 0 |
Congratulations @dexterdev! You have completed the following achievement on the Steem blockchain and have been rewarded with new badge(s) : <table><tr><td>https://steemitimages.com/60x70/http://steemitboard.com/@dexterdev/voted.png?201811192147</td><td>You received more than 5000 upvotes. Your next target is to reach 6000 upvotes.</td></tr> </table> <sub>_[Click here to view your Board of Honor](https://steemitboard.com/@dexterdev)_</sub> <sub>_If you no longer want to receive notifications, reply to this comment with the word_ `STOP`</sub> **Do not miss the last post from @steemitboard:** <table><tr><td><a href="https://steemit.com/steemfest/@steemitboard/meet-the-steemians-contest-the-results-the-winners-and-the-prizes"><img src="https://steemitimages.com/64x128/https://cdn.steemitimages.com/DQmeLukvNFRsa7RURqsFpiLGEZZD49MiU52JtWmjS5S2wtW/image.png"></a></td><td><a href="https://steemit.com/steemfest/@steemitboard/meet-the-steemians-contest-the-results-the-winners-and-the-prizes">Meet the Steemians Contest - The results, the winners and the prizes</a></td></tr><tr><td><a href="https://steemit.com/steemfest/@steemitboard/meet-the-steemians-contest-special-attendees-revealed"><img src="https://steemitimages.com/64x128/https://cdn.steemitimages.com/DQmeLukvNFRsa7RURqsFpiLGEZZD49MiU52JtWmjS5S2wtW/image.png"></a></td><td><a href="https://steemit.com/steemfest/@steemitboard/meet-the-steemians-contest-special-attendees-revealed">Meet the Steemians Contest - Special attendees revealed</a></td></tr><tr><td><a href="https://steemit.com/steemfest/@steemitboard/meet-the-steemians-contest-intermediate-results"><img src="https://steemitimages.com/64x128/https://cdn.steemitimages.com/DQmeLukvNFRsa7RURqsFpiLGEZZD49MiU52JtWmjS5S2wtW/image.png"></a></td><td><a href="https://steemit.com/steemfest/@steemitboard/meet-the-steemians-contest-intermediate-results">Meet the Steemians Contest - Intermediate results</a></td></tr></table> > Support [SteemitBoard's project](https://steemit.com/@steemitboard)! **[Vote for its witness](https://v2.steemconnect.com/sign/account-witness-vote?witness=steemitboard&approve=1)** and **get one more award**!
author | steemitboard |
---|---|
permlink | steemitboard-notify-dexterdev-20181120t073513000z |
category | steemstem |
json_metadata | {"image":["https://steemitboard.com/img/notify.png"]} |
created | 2018-11-20 07:35:12 |
last_update | 2018-11-20 07:35:12 |
depth | 1 |
children | 0 |
last_payout | 2018-11-27 07:35:12 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 2,163 |
author_reputation | 38,975,615,169,260 |
root_title | "How to create infinite structures for Molecular Dynamics simulations?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 75,601,386 |
net_rshares | 0 |
Congratulations @dexterdev! You have completed the following achievement on the Steem blockchain and have been rewarded with new badge(s) : <table><tr><td>https://steemitimages.com/60x70/http://steemitboard.com/@dexterdev/payout.png?201811230829</td><td>You received more than 250 as payout for your posts. Your next target is to reach a total payout of 500</td></tr> </table> <sub>_[Click here to view your Board of Honor](https://steemitboard.com/@dexterdev)_</sub> <sub>_If you no longer want to receive notifications, reply to this comment with the word_ `STOP`</sub> **Do not miss the last post from @steemitboard:** <table><tr><td><a href="https://steemit.com/steemfest/@steemitboard/meet-the-steemians-contest-the-results-the-winners-and-the-prizes"><img src="https://steemitimages.com/64x128/https://cdn.steemitimages.com/DQmeLukvNFRsa7RURqsFpiLGEZZD49MiU52JtWmjS5S2wtW/image.png"></a></td><td><a href="https://steemit.com/steemfest/@steemitboard/meet-the-steemians-contest-the-results-the-winners-and-the-prizes">Meet the Steemians Contest - The results, the winners and the prizes</a></td></tr><tr><td><a href="https://steemit.com/steemfest/@steemitboard/meet-the-steemians-contest-special-attendees-revealed"><img src="https://steemitimages.com/64x128/https://cdn.steemitimages.com/DQmeLukvNFRsa7RURqsFpiLGEZZD49MiU52JtWmjS5S2wtW/image.png"></a></td><td><a href="https://steemit.com/steemfest/@steemitboard/meet-the-steemians-contest-special-attendees-revealed">Meet the Steemians Contest - Special attendees revealed</a></td></tr><tr><td><a href="https://steemit.com/steemfest/@steemitboard/meet-the-steemians-contest-intermediate-results"><img src="https://steemitimages.com/64x128/https://cdn.steemitimages.com/DQmeLukvNFRsa7RURqsFpiLGEZZD49MiU52JtWmjS5S2wtW/image.png"></a></td><td><a href="https://steemit.com/steemfest/@steemitboard/meet-the-steemians-contest-intermediate-results">Meet the Steemians Contest - Intermediate results</a></td></tr></table> > Support [SteemitBoard's project](https://steemit.com/@steemitboard)! **[Vote for its witness](https://v2.steemconnect.com/sign/account-witness-vote?witness=steemitboard&approve=1)** and **get one more award**!
author | steemitboard |
---|---|
permlink | steemitboard-notify-dexterdev-20181123t091608000z |
category | steemstem |
json_metadata | {"image":["https://steemitboard.com/img/notify.png"]} |
created | 2018-11-23 09:16:06 |
last_update | 2018-11-23 09:16:06 |
depth | 1 |
children | 0 |
last_payout | 2018-11-30 09:16:06 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 2,188 |
author_reputation | 38,975,615,169,260 |
root_title | "How to create infinite structures for Molecular Dynamics simulations?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 75,776,041 |
net_rshares | 0 |
<div class='text-justify'> <div class='pull-left'> <br /> <center> <img width='125' src='https://i.postimg.cc/Gtd18f7W/steemstem_curie_utopian.png'> </center> <br /> </div> <br /> <br /> This post has been voted on by the **SteemSTEM** curation team and voting trail in collaboration with **@utopian-io** and **@curie**. <br /> If you appreciate the work we are doing then consider [voting](https://steemit.com/~witnesses) all three projects for witness by selecting [**stem.witness**](https://steemconnect.com/sign/account_witness_vote?approve=1&witness=stem.witness), [**utopian-io**](https://steemconnect.com/sign/account_witness_vote?approve=1&witness=utopian-io) and [**curie**](https://steemconnect.com/sign/account_witness_vote?approve=1&witness=curie)! <br /> For additional information please join us on the [**SteemSTEM discord**]( https://discord.gg/BPARaqn) and to get to know the rest of the community! </div>
author | steemstem |
---|---|
permlink | re-dexterdev-how-to-create-infinite-structures-in-molecular-dynamics-simulations-20181119t211518141z |
category | steemstem |
json_metadata | {"app":"bloguable-bot"} |
created | 2018-11-19 21:15:21 |
last_update | 2018-11-19 21:15:21 |
depth | 1 |
children | 0 |
last_payout | 2018-11-26 21:15:21 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 929 |
author_reputation | 262,017,435,115,313 |
root_title | "How to create infinite structures for Molecular Dynamics simulations?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 75,577,337 |
net_rshares | 8,084,081,005 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
dexterdev | 0 | 8,084,081,005 | 100% |
#### Hi @dexterdev! Your post was upvoted by Utopian.io in cooperation with @steemstem - supporting knowledge, innovation and technological advancement on the Steem Blockchain. #### Contribute to Open Source with utopian.io Learn how to contribute on <a href='https://join.utopian.io'>our website</a> and join the new open source economy. **Want to chat? Join the Utopian Community on Discord https://discord.gg/h52nFrV**
author | utopian-io |
---|---|
permlink | re-how-to-create-infinite-structures-in-molecular-dynamics-simulations-20181120t031144z |
category | steemstem |
json_metadata | "{"app": "beem/0.20.9"}" |
created | 2018-11-20 03:11:45 |
last_update | 2018-11-20 03:11:45 |
depth | 1 |
children | 0 |
last_payout | 2018-11-27 03:11:45 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 424 |
author_reputation | 152,955,367,999,756 |
root_title | "How to create infinite structures for Molecular Dynamics simulations?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 75,591,441 |
net_rshares | 7,921,577,913 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
dexterdev | 0 | 7,921,577,913 | 100% |