<div class="text-justify"> <center><h2>My Coding Quiz #53 👨💻🛠️🧩</h2></center> <p>Welcome to the new installment of my series of <b>Coding Quizzes</b>, in which you will be able to test your knowledge and skills about programming and software development in a simple and fun way. If you want to learn more about it visit <a href="/@eniolw">my blog</a> here on Hive and the <a href="/@eniolw/my-coding-quiz-1">first post</a> where I introduced it.</p> <h3>Without further ado, here's the riddle...</h3> <br> <center> <img src="https://images.ecency.com/DQmdy8VkxmfMERram9zEiNj1Yde8Wno4JEF4V9uTSNKUBPb/imagen.png" alt="Quiz"> <h6>By @eniolw</h6> </center> <br><center><h3>What's your choice?</h3></center> <p><b>Solution to the <a href="/@eniolw/my-coding-quiz-52">previous quiz</a>:</b> <b>'8/KppppPPk/8/8/8/8/8/8'</b>. As always, let's analyze the script line by line. First we define a string <code>fen</code> with the value <code>"8/KPPppppppk/8/8/8/8/8/8/8/8/8/8 w - - 0 1"</code> and you may wonder, what the hell is this? Well, although it doesn't look like it, <i>it's a representation of a chess position</i>. It is not a diagram, but <a href="https://en.wikipedia.org/wiki/Forsyth%E2%80%93Edwards_Notation">it is a format</a> that is readable by a chess program and contains all the essential elements that describe a chess position.</p> <p>These elements are extracted from the FEN in the following line <code>p, t, r1, r2, o, m = fen.split()</code>. Here we have used the <code>split</code> method and then unpacked the content in the variables <code>p</code> (piece arrangement), <code>t</code> (turn), <code>r1</code> (castling possibilities), <code>r2</code> (square for the en passant pawn; I should have named this variable differently), <code>o</code> (number of half moves to apply the fifty move rule) and <code>m</code> (number of full moves since the game started).</p> <p>These are all attributes of a chess position, but for this script we are only interested in the first one, <code>p</code>, that is, the piece arrangement itself.</p> <p>What we basically do is to apply the <code>replace</code> method to replace the characters <code>"P"</code> in the string with the character <code>"p"</code>, but by specifying the third numerical argument of <code>replace</code>, we are telling it to do the replacement only for that number of characters. Since in this case we said <code>2</code>, only two <code>"P"</code> characters will be replaced. That explains why the value of <code>new</code> is <b>'8/KppppPPPPk/8/8/8/8/8/8/8/8/8/8'</b>.</p> <p>I know, it might be annoying for a human to read that string, but it's not impossible. By the way, the capital <b>P</b> stands for white pawn, while the small <b>p</b> stands for black pawn, so with this operation what we did was to replace two white pawns by two black ones.</p> <hr> <p>If you want to blog about computer science and programming content, I invite you to join <a href="/">Hive</a> and participate in its communities, such as <a href="/created/hive-196387">STEM-social</a>, <a href="/created/hive-154226">Develop Spanish</a>, <a href="/created/hive-169321">Programming & Dev</a> and others.</p> <hr> <center><h2>Mi Quiz de Programación #53 👨💻🛠️🧩</h2></center> <p>Bienvenido a mi nueva serie de <b>Quizzes de Programación</b>, en la cual podrás poner a prueba tus conocimientos y habilidades sobre programación y desarrollo de software de una manera sencilla y divertida. Si quieres aprender más sobre ella visita <a href="/@eniolw">mi blog</a> aquí en Hive y el <a href="/@eniolw/my-coding-quiz-1">primer post</a> donde la presenté.</p> <h3>Sin más preámbulos, he aquí el acertijo...</h3> <br> <center> <img src="https://images.ecency.com/DQmSjqMk7QcXKuZepZ1Wf3chbCqLvmqoyLVuUWtGi7rcqUm/imagen.png" alt="Quiz"> <h6>Por @eniolw</h6> </center> <br><center><h3>¿Cuál es tu elección?</h3></center> <p><b>Solución al <a href="/@eniolw/my-coding-quiz-52">quiz anterior</a>:</b> <b>'8/KppppPPk/8/8/8/8/8/8'</b>. Como siempre, analicemos el script línea por línea. Primero definimos la cadena <code>fen</code> con el valor <code>"8/KPPppppppk/8/8/8/8/8/8/8/8/8/8 w - - 0 1"</code> y te preguntarás, ¿qué carajos es esto? Pues aunque no lo parezca, <i>es una representación de una posición de ajedrez</i>. No es un diagrama, pero <a href="https://es.wikipedia.org/wiki/Notaci%C3%B3n_de_Forsyth-Edwards">es un formato</a> que es legible por un programa de ajedrez y contiene todos los elementos esenciales que describen una posición de ajedrez.</p> <p>Estos elementos son extraídos del FEN en la siguiente línea <code>p, t, r1, r2, o, m = fen.split()</code>. Aquí hemos utilizado el método <code>split</code> y luego descomprimimos el contenido en las variables <code>p</code> (disposición de piezas), <code>t</code> (turno), <code>r1</code> (posibilidades de enroque), <code>r2</code> (casilla para el peón al paso; debería haber nombrado esta variable de otra manera), <code>o</code> (número de medios movimientos para aplicar la regla de los cincuenta movimientos) y <code>m</code> (número de movimientos completos desde que comenzó la partida).</p> <p>Todos estos son atributos de una posición de ajedrez, pero para este script sólo nos interesa el primero, <code>p</code>, es decir, la disposición de las piezas en sí.</p> <p>Lo que básicamente hacemos es aplicar el método <code>replace</code> para reemplazar los caracteres <code>"P"</code> en la cadena con el carácter <code>"p"</code> , pero al especificar el tercer argumento numérico de <code>replace</code>, le estamos diciendo que reemplace solo esa cantidad de caracteres. Como en este caso dijimos <code>2</code>, solo se reemplazarán dos caracteres <code>"P"</code>. Eso explica por qué el valor de <code>new</code> es <b>'8/KppppPPPPk/8/8/8/8/8/8/8/8/8/8'</b>.</p> <p>Lo sé, puede resultar molesto para un humano leer esa cadena, pero no es imposible. Por cierto, la <b>P</b> mayúscula representa un peón blanco, mientras que la <b>p</b> minúscula representa un peón negro, entonces con esta operación lo que hicimos fue sustituir dos peones blancos por dos negros.</p> <hr> <p>Si quieres bloguear sobre contenido informático y de programación, te invito a unirte a <a href="/">Hive</a> y participar en sus comunidades, tales como <a href="/created/hive-196387">STEM-social</a>, <a href="/created/hive-154226">Develop Spanish</a>, <a href="/created/hive-169321">Programming & Dev</a> y otras.</p> </div>
author | eniolw |
---|---|
permlink | my-coding-quiz-53 |
category | hive-197685 |
json_metadata | "{"image":["https://images.ecency.com/DQmdy8VkxmfMERram9zEiNj1Yde8Wno4JEF4V9uTSNKUBPb/imagen.png","https://images.ecency.com/DQmSjqMk7QcXKuZepZ1Wf3chbCqLvmqoyLVuUWtGi7rcqUm/imagen.png"],"tags":["hive-197685","programming","coding","python","quiz","chess","neoxian","proofofbrain","waivio","creativecoin","spanish"],"description":"My Coding Quiz #53 Welcome to the new installment of my series of Coding Quizzes, in which you will be able to test your knowledge and skills about programming and software development in a fun way.","app":"ecency/3.1.0-vision","format":"markdown+html","image_ratios":["1.3550","1.3550"]}" |
created | 2024-03-20 00:13:33 |
last_update | 2024-03-20 00:13:33 |
depth | 0 |
children | 2 |
last_payout | 2024-03-27 00:13:33 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 5.504 HBD |
curator_payout_value | 5.388 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 6,472 |
author_reputation | 253,650,633,664,455 |
root_title | "My Coding Quiz #53" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 132,183,635 |
net_rshares | 21,528,018,794,175 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
drifter1 | 0 | 1,026,949,998 | 2.8% | ||
kevinwong | 0 | 1,135,457,694 | 0.56% | ||
justtryme90 | 0 | 1,433,353,097 | 70% | ||
eric-boucher | 0 | 14,547,453,573 | 2.8% | ||
juanmiguelsalas | 0 | 1,152,527,958 | 1.68% | ||
thecryptodrive | 0 | 37,519,021,680 | 1.12% | ||
kaylinart | 0 | 8,937,783,956 | 2.8% | ||
roelandp | 0 | 423,462,465,739 | 35% | ||
cloh76 | 0 | 3,921,495,361 | 2.8% | ||
nascimentoab | 0 | 605,042,672 | 2.8% | ||
joshglen | 0 | 709,368,773 | 5.6% | ||
rmach | 0 | 3,292,962,574 | 35% | ||
lemouth | 0 | 1,223,440,167,772 | 45% | ||
someguy123 | 0 | 18,611,260,857 | 2.8% | ||
alaqrab | 0 | 551,896,662 | 2.8% | ||
lamouthe | 0 | 5,586,449,543 | 70% | ||
tfeldman | 0 | 5,347,682,949 | 2.8% | ||
sergiomendes | 0 | 1,563,007,042 | 2.8% | ||
metabs | 0 | 8,048,579,030 | 70% | ||
mcsvi | 0 | 115,635,477,261 | 50% | ||
lk666 | 0 | 1,972,808,753 | 2.8% | ||
cnfund | 0 | 11,558,272,336 | 5.6% | ||
boxcarblue | 0 | 13,768,391,137 | 2.8% | ||
justyy | 0 | 35,065,298,453 | 5.6% | ||
michelle.gent | 0 | 3,402,766,033 | 1.12% | ||
dylanhobalart | 0 | 64,763,591,241 | 11% | ||
curie | 0 | 328,790,861,514 | 5.6% | ||
modernzorker | 0 | 3,763,601,458 | 3.92% | ||
techslut | 0 | 186,330,635,482 | 28% | ||
steemstem | 0 | 1,296,408,648,731 | 70% | ||
dashfit | 0 | 478,452,845 | 2.8% | ||
tristancarax | 0 | 699,740,976 | 2.8% | ||
edb | 0 | 6,073,133,595 | 7% | ||
yadamaniart | 0 | 3,809,866,572 | 2.8% | ||
bigtakosensei | 0 | 1,754,817,188 | 1.4% | ||
walterjay | 0 | 456,744,008,005 | 35% | ||
metroair | 0 | 25,504,205,518 | 5.6% | ||
saleg25 | 0 | 555,481,609 | 2.8% | ||
driptorchpress | 0 | 2,208,999,932 | 1.4% | ||
dna-replication | 0 | 2,744,070,695 | 70% | ||
privex | 0 | 3,597,082,819 | 5.6% | ||
boynashruddin | 0 | 767,639,269 | 5.6% | ||
steemiteducation | 0 | 1,439,784,167 | 2.8% | ||
dhimmel | 0 | 372,984,113,277 | 17.5% | ||
oluwatobiloba | 0 | 2,004,519,264 | 70% | ||
elevator09 | 0 | 7,462,388,699 | 2.8% | ||
detlev | 0 | 26,874,259,799 | 1.68% | ||
chasmic-cosm | 0 | 844,318,623 | 2.8% | ||
dune69 | 0 | 641,382,857 | 5.6% | ||
lugaxker | 0 | 824,083,802 | 34.65% | ||
federacion45 | 0 | 8,452,483,289 | 2.8% | ||
amberyooper | 0 | 646,830,030 | 2.8% | ||
gamersclassified | 0 | 4,119,714,664 | 2.8% | ||
mobbs | 0 | 186,613,516,508 | 70% | ||
eliel | 0 | 14,968,030,443 | 5.6% | ||
jerrybanfield | 0 | 16,399,568,854 | 5.6% | ||
rt395 | 0 | 1,968,237,107 | 1.5% | ||
bitrocker2020 | 0 | 11,464,646,161 | 1.12% | ||
maxdevalue | 0 | 716,364,371 | 5.6% | ||
sustainablyyours | 0 | 20,337,086,526 | 35% | ||
arunava | 0 | 15,297,813,068 | 2.24% | ||
schoolforsdg4 | 0 | 1,039,059,442 | 5% | ||
samminator | 0 | 43,224,185,344 | 35% | ||
zerotoone | 0 | 1,094,897,950 | 2.8% | ||
enjar | 0 | 45,922,594,069 | 5.04% | ||
mahdiyari | 0 | 1,953,202,446,237 | 80% | ||
lorenzor | 0 | 1,356,782,769 | 50% | ||
firstamendment | 0 | 90,559,078,520 | 50% | ||
aboutyourbiz | 0 | 1,005,172,605 | 5.6% | ||
derosnec | 0 | 573,020,645 | 2.8% | ||
alexander.alexis | 0 | 43,013,139,769 | 70% | ||
jayna | 0 | 8,066,343,219 | 1.12% | ||
deanlogic | 0 | 1,435,793,435 | 2.8% | ||
hhayweaver | 0 | 964,769,046 | 1.4% | ||
finkistinger | 0 | 736,067,099 | 2.8% | ||
princessmewmew | 0 | 7,683,254,931 | 2.8% | ||
joeyarnoldvn | 0 | 470,086,502 | 1.47% | ||
diabolika | 0 | 930,083,421 | 2.8% | ||
zacherybinx | 0 | 975,596,928 | 5.6% | ||
hardikv | 0 | 708,701,041 | 6% | ||
ufv | 0 | 3,006,808,420 | 50% | ||
gunthertopp | 0 | 74,168,540,692 | 1.4% | ||
pipiczech | 0 | 2,436,155,958 | 5.6% | ||
empath | 0 | 4,178,278,242 | 2.8% | ||
minnowbooster | 0 | 774,478,758,254 | 20% | ||
felt.buzz | 0 | 7,811,441,378 | 1.4% | ||
codingdefined | 0 | 18,281,080,023 | 6% | ||
howo | 0 | 2,177,491,672,636 | 70% | ||
tsoldovieri | 0 | 7,434,624,932 | 35% | ||
neumannsalva | 0 | 4,596,152,899 | 2.8% | ||
stayoutoftherz | 0 | 153,404,176,750 | 1.4% | ||
abigail-dantes | 0 | 25,950,038,435 | 70% | ||
coindevil | 0 | 2,854,588,784 | 4.48% | ||
bambukah | 0 | 3,535,087,721 | 4% | ||
ansoe | 0 | 874,292,624 | 2.8% | ||
zonguin | 0 | 3,765,030,670 | 17.5% | ||
mhel | 0 | 487,116,653 | 1.12% | ||
enfocate | 0 | 3,871,780,641 | 24% | ||
investingpennies | 0 | 19,111,851,946 | 5.6% | ||
martibis | 0 | 2,982,784,566 | 1.68% | ||
jasonbu | 0 | 56,265,197,646 | 80% | ||
redrica | 0 | 2,120,489,887 | 2.8% | ||
pepskaram | 0 | 580,952,428 | 2.8% | ||
iamphysical | 0 | 1,570,329,668 | 90% | ||
zest | 0 | 1,013,972,896 | 35% | ||
aaronleang | 0 | 9,404,346,250 | 20% | ||
zyx066 | 0 | 2,862,912,199 | 1.68% | ||
chrisdavidphoto | 0 | 1,263,845,666 | 1.68% | ||
revo | 0 | 11,386,228,390 | 5.6% | ||
azulear | 0 | 1,639,827,686 | 100% | ||
psicoluigi | 0 | 810,915,342 | 50% | ||
risckylu | 0 | 920,298,053 | 24% | ||
wilians | 0 | 548,137,818 | 35% | ||
stickchumpion | 0 | 920,617,446 | 2.8% | ||
thelordsharvest | 0 | 4,229,234,496 | 5.6% | ||
raj808 | 0 | 935,443,895 | 1.68% | ||
aidefr | 0 | 7,297,928,904 | 35% | ||
torico | 0 | 1,509,966,280 | 1.84% | ||
cconn | 0 | 634,063,979 | 5.6% | ||
therealwolf | 0 | 27,667,287,495 | 2.8% | ||
fatman | 0 | 9,073,208,388 | 2% | ||
minnowpowerup | 0 | 814,543,013 | 2.8% | ||
yangyanje | 0 | 558,422,104 | 2.8% | ||
splash-of-angs63 | 0 | 11,861,416,782 | 50% | ||
cryptononymous | 0 | 1,937,988,381 | 2.8% | ||
meno | 0 | 27,773,359,464 | 2.8% | ||
buttcoins | 0 | 2,312,207,685 | 1.12% | ||
steemed-proxy | 0 | 1,087,411,247,655 | 5.6% | ||
fatkat | 0 | 1,447,075,541 | 2.79% | ||
peaceandwar | 0 | 859,427,978 | 2.8% | ||
bhoa | 0 | 1,358,472,667 | 35% | ||
enzor | 0 | 2,145,796,216 | 35% | ||
marcoriccardi | 0 | 988,569,301 | 5.6% | ||
bartosz546 | 0 | 46,098,302,886 | 2.8% | ||
tazbaz | 0 | 553,382,360 | 2.8% | ||
jatinhota | 0 | 38,397,996,692 | 40% | ||
battebilly | 0 | 739,672,427 | 2.8% | ||
caladan | 0 | 17,301,058,895 | 5.6% | ||
lifecruiser | 0 | 4,039,921,000 | 50% | ||
dejan.vuckovic | 0 | 805,230,801 | 1.12% | ||
lottje | 0 | 612,414,932 | 70% | ||
myach | 0 | 929,680,411 | 4.48% | ||
inuke | 0 | 2,377,948,959 | 20% | ||
sunsea | 0 | 4,505,228,456 | 2.8% | ||
eonwarped | 0 | 226,209,201,330 | 30% | ||
postpromoter | 0 | 1,673,115,900,716 | 70% | ||
mejustandrew | 0 | 835,434,112 | 2.8% | ||
bluefinstudios | 0 | 3,893,319,802 | 1.68% | ||
bobinson | 0 | 121,931,290,667 | 12% | ||
steveconnor | 0 | 4,927,364,358 | 2.8% | ||
sankysanket18 | 0 | 1,491,989,003 | 35% | ||
dbddv01 | 0 | 2,577,483,121 | 17.5% | ||
zmx | 0 | 599,576,666 | 2.8% | ||
skippyza | 0 | 481,177,582 | 5.6% | ||
nicole-st | 0 | 918,361,098 | 2.8% | ||
smartsteem | 0 | 131,892,158,925 | 2.8% | ||
travoved | 0 | 12,949,656,941 | 50% | ||
smitop | 0 | 10,904,791,462 | 100% | ||
aboutcoolscience | 0 | 358,237,830,292 | 70% | ||
elisonr13 | 0 | 2,690,790,095 | 12% | ||
vishire | 0 | 644,384,957 | 12% | ||
afifa | 0 | 588,931,762 | 10% | ||
amestyj | 0 | 81,837,499,025 | 100% | ||
sandracarrascal | 0 | 513,458,753 | 50% | ||
skycae | 0 | 707,202,629 | 5.6% | ||
kenadis | 0 | 18,775,957,661 | 70% | ||
bebeomega | 0 | 846,547,473 | 2.8% | ||
shonyishere | 0 | 623,271,258 | 12% | ||
madridbg | 0 | 32,882,806,327 | 70% | ||
robotics101 | 0 | 21,076,504,131 | 70% | ||
marcolino76 | 0 | 656,447,761 | 2.8% | ||
onemedia | 0 | 1,182,867,336 | 5.6% | ||
lpv | 0 | 3,045,664,282 | 8.75% | ||
apon318 | 0 | 490,870,145 | 5.6% | ||
straykat | 0 | 916,541,498 | 2.8% | ||
tomatom | 0 | 470,790,898 | 2.8% | ||
adelepazani | 0 | 2,011,019,549 | 1.12% | ||
spydo | 0 | 22,140,252,810 | 6% | ||
frames | 0 | 872,859,331 | 25% | ||
danaedwards | 0 | 670,249,082 | 5.6% | ||
r00sj3 | 0 | 123,662,471,401 | 35% | ||
sco | 0 | 22,162,864,307 | 70% | ||
phgnomo | 0 | 870,740,836 | 2.8% | ||
ennyta | 0 | 993,997,127 | 50% | ||
juecoree | 0 | 2,633,864,705 | 49% | ||
carsonroscoe | 0 | 111,677,053,485 | 100% | ||
gordon92 | 0 | 863,706,180 | 2.8% | ||
stahlberg | 0 | 1,253,949,803 | 2.8% | ||
gabrielatravels | 0 | 2,431,055,372 | 1.96% | ||
cordeta | 0 | 1,041,559,028 | 5.6% | ||
reizak | 0 | 492,047,425 | 2.24% | ||
carn | 0 | 3,696,206,731 | 5.04% | ||
eliaschess333 | 0 | 15,619,680,134 | 100% | ||
branbello | 0 | 1,353,157,472 | 35% | ||
hetty-rowan | 0 | 3,288,323,789 | 2.8% | ||
ydavgonzalez | 0 | 1,856,530,527 | 10% | ||
fineartnow | 0 | 4,007,611,959 | 2.8% | ||
hijosdelhombre | 0 | 43,994,329,806 | 40% | ||
mathowl | 0 | 47,448,219,640 | 100% | ||
bobydimitrov | 0 | 475,017,556 | 4.2% | ||
yoghurt | 0 | 824,647,819 | 5.6% | ||
steemvault | 0 | 2,268,267,686 | 5.6% | ||
steem4all | 0 | 756,982,388 | 2.8% | ||
communitybank | 0 | 3,772,931,011 | 5.6% | ||
shinedojo | 0 | 638,424,970 | 5.6% | ||
fragmentarion | 0 | 16,492,862,034 | 70% | ||
bennettitalia | 0 | 1,988,059,427 | 2.8% | ||
utube | 0 | 3,813,537,746 | 5.6% | ||
bala41288 | 0 | 567,805,630,434 | 20% | ||
jigstrike | 0 | 893,588,290 | 2.8% | ||
ahmedsy | 0 | 1,470,569,314 | 5.6% | ||
m1alsan | 0 | 2,089,858,922 | 5.6% | ||
dynamicrypto | 0 | 4,267,440,544 | 5% | ||
neneandy | 0 | 6,470,317,380 | 5.6% | ||
pab.ink | 0 | 760,947,085 | 35% | ||
marc-allaria | 0 | 3,581,244,740 | 2.8% | ||
real2josh | 0 | 661,181,182 | 35% | ||
sportscontest | 0 | 5,844,578,168 | 5.6% | ||
indiaunited | 0 | 621,067,724,668 | 12% | ||
videosteemit | 0 | 936,769,888 | 5.6% | ||
gribouille | 0 | 1,646,377,179 | 35% | ||
pandasquad | 0 | 14,850,282,935 | 5.6% | ||
leoumesh | 0 | 774,370,523 | 35% | ||
chronocrypto | 0 | 1,236,988,583 | 2.8% | ||
kingabesh | 0 | 1,426,340,601 | 35% | ||
miguelangel2801 | 0 | 796,864,349 | 50% | ||
mproxima | 0 | 2,496,405,703 | 2.8% | ||
fantasycrypto | 0 | 1,918,276,147 | 2.8% | ||
didic | 0 | 1,886,074,409 | 2.8% | ||
orlandumike | 0 | 21,217,447,544 | 20% | ||
careassaktart | 0 | 2,704,278,823 | 5.6% | ||
emiliomoron | 0 | 6,502,711,533 | 35% | ||
galam | 0 | 968,172,865 | 35% | ||
dexterdev | 0 | 2,887,818,712 | 35% | ||
nwjordan | 0 | 839,301,035 | 5.6% | ||
florenceboens | 0 | 3,997,092,074 | 10% | ||
photohunt | 0 | 3,753,116,606 | 5.6% | ||
geopolis | 0 | 4,683,996,982 | 70% | ||
ajfernandez | 0 | 799,032,991 | 100% | ||
robertbira | 0 | 7,583,457,039 | 17.5% | ||
atomcollector | 0 | 1,774,223,944 | 1.4% | ||
alexdory | 0 | 9,390,893,321 | 70% | ||
takowi | 0 | 1,315,435,776 | 5.6% | ||
irgendwo | 0 | 22,400,163,123 | 5.6% | ||
vegan.niinja | 0 | 492,871,436 | 2.8% | ||
charitybot | 0 | 5,189,301,569 | 100% | ||
cyprianj | 0 | 60,100,953,487 | 70% | ||
kieranstone | 0 | 1,622,608,397 | 1.84% | ||
bernardino | 0 | 688,232,511 | 2.8% | ||
francostem | 0 | 9,754,242,673 | 70% | ||
russellstockley | 0 | 1,630,619,220 | 1.4% | ||
endopediatria | 0 | 695,806,150 | 20% | ||
croctopus | 0 | 1,494,358,183 | 100% | ||
cryptictruth | 0 | 10,230,512,749 | 2.5% | ||
ayushthedreamer | 0 | 464,859,324 | 6% | ||
zipporah | 0 | 2,900,800,622 | 1.12% | ||
leomarylm | 0 | 2,104,891,674 | 2.8% | ||
superlotto | 0 | 13,189,274,167 | 5.6% | ||
positiveninja | 0 | 1,097,946,504 | 2.8% | ||
foxyspirit | 0 | 556,028,663 | 2.8% | ||
bscrypto | 0 | 15,067,877,670 | 2.8% | ||
vonaurolacu | 0 | 1,214,293,809 | 2.8% | ||
movingman | 0 | 567,098,940 | 20% | ||
delpilar | 0 | 934,959,443 | 25% | ||
scottshots | 0 | 624,464,416 | 0.28% | ||
tomastonyperez | 0 | 17,118,554,130 | 50% | ||
bil.prag | 0 | 2,498,991,064 | 0.28% | ||
elvigia | 0 | 11,215,576,001 | 50% | ||
sanderjansenart | 0 | 5,728,026,728 | 2.8% | ||
vittoriozuccala | 0 | 1,312,219,191 | 2.8% | ||
qberry | 0 | 3,979,430,816 | 2.8% | ||
frissonsteemit | 0 | 1,238,731,199 | 2.8% | ||
broncofan99 | 0 | 8,395,887,533 | 20% | ||
greddyforce | 0 | 4,522,674,883 | 2.07% | ||
flyerchen | 0 | 1,299,030,081 | 2.8% | ||
juanmanuellopez1 | 0 | 722,489,191 | 19.2% | ||
gadrian | 0 | 534,661,440,217 | 52.5% | ||
c0wtschpotato | 0 | 590,436,880 | 2.8% | ||
therising | 0 | 93,581,011,557 | 5.6% | ||
jordangerder | 0 | 2,130,394,306 | 12% | ||
cryptocoinkb | 0 | 2,098,974,207 | 2.8% | ||
gifty-e | 0 | 515,464,214 | 80% | ||
de-stem | 0 | 38,664,440,870 | 69.3% | ||
manuelmusic | 0 | 1,452,892,486 | 14.4% | ||
imcore | 0 | 863,376,938 | 10% | ||
serylt | 0 | 3,236,575,900 | 68.6% | ||
me2selah | 0 | 888,339,913 | 2.8% | ||
josedelacruz | 0 | 4,943,954,990 | 50% | ||
dracrow | 0 | 2,653,603,260 | 9.6% | ||
achimmertens | 0 | 16,713,189,128 | 2.8% | ||
kgakakillerg | 0 | 19,333,209,826 | 10% | ||
charitymemes | 0 | 534,493,884 | 100% | ||
mariusfebruary | 0 | 716,027,661 | 2.24% | ||
outtheshellvlog | 0 | 879,060,975 | 2.8% | ||
erickyoussif | 0 | 739,424,312 | 100% | ||
michaelwrites | 0 | 932,338,427 | 35% | ||
indigoocean | 0 | 1,187,171,826 | 2.8% | ||
deholt | 0 | 4,002,036,392 | 59.5% | ||
anneporter | 0 | 2,741,269,934 | 21% | ||
eleazarvo | 0 | 829,883,666 | 2.4% | ||
steem.services | 0 | 1,065,861,238 | 1.12% | ||
punkblogs | 0 | 1,001,353,697 | 30% | ||
crystalhuman | 0 | 683,470,065 | 70% | ||
pladozero | 0 | 29,998,489,826 | 10% | ||
minerthreat | 0 | 3,935,739,963 | 2.8% | ||
nateaguila | 0 | 68,129,448,211 | 5% | ||
temitayo-pelumi | 0 | 6,645,944,703 | 70% | ||
gmlgang | 0 | 476,155,467 | 88% | ||
andrick | 0 | 866,365,209 | 50% | ||
doctor-cog-diss | 0 | 67,647,778,116 | 70% | ||
dailyspam | 0 | 15,619,382,201 | 20% | ||
marcuz | 0 | 2,701,298,134 | 35% | ||
acont | 0 | 6,018,728,328 | 50% | ||
uche-nna | 0 | 6,841,799,476 | 4.48% | ||
vietthuy | 0 | 808,091,353 | 50% | ||
citizendog | 0 | 4,635,284,335 | 5.6% | ||
we-are-lucky | 0 | 245,198,212 | 0.7% | ||
cheese4ead | 0 | 4,200,191,562 | 2.8% | ||
jd4e | 0 | 3,739,870,996 | 50% | ||
mafufuma | 0 | 0 | 1% | ||
apshamilton | 0 | 14,010,329,521 | 0.7% | ||
nathyortiz | 0 | 4,840,493,696 | 12% | ||
nattybongo | 0 | 98,570,423,208 | 70% | ||
drsensor | 0 | 1,000,360,290 | 36% | ||
roozeec | 0 | 502,001,051 | 10% | ||
revueh | 0 | 2,017,985,836 | 35% | ||
ilovecryptopl | 0 | 872,624,163 | 4.48% | ||
purelyscience | 0 | 536,710,580 | 35% | ||
bflanagin | 0 | 1,190,085,461 | 1.4% | ||
ubaldonet | 0 | 4,754,450,111 | 100% | ||
armandosodano | 0 | 3,778,332,501 | 2.8% | ||
melor9 | 0 | 477,359,511 | 2.8% | ||
ezunjoshy | 0 | 602,226,381 | 6% | ||
hamismsf | 0 | 4,596,792,886 | 0.7% | ||
goblinknackers | 0 | 75,643,838,601 | 7% | ||
thales7 | 0 | 653,847,801 | 5.6% | ||
zuerich | 0 | 371,692,727,212 | 10% | ||
anttn | 0 | 5,834,613,527 | 2.8% | ||
bambinaacida | 0 | 2,454,646,312 | 50% | ||
reinaseq | 0 | 7,903,950,046 | 100% | ||
vixmemon | 0 | 1,573,836,211 | 4.2% | ||
yaelg | 0 | 1,179,808,432 | 1.68% | ||
kylealex | 0 | 4,569,088,547 | 10% | ||
cubapl | 0 | 4,418,203,784 | 35% | ||
orlandogonzalez | 0 | 2,459,472,452 | 25% | ||
arzkyu97 | 0 | 2,809,374,328 | 9.6% | ||
fran.frey | 0 | 4,214,477,344 | 50% | ||
perpetuum-lynx | 0 | 2,170,380,431 | 68.6% | ||
petrarodriguez | 0 | 126,185,322,734 | 24% | ||
thelittlebank | 0 | 15,634,405,843 | 2.8% | ||
pboulet | 0 | 141,326,670,730 | 56% | ||
javyeslava.photo | 0 | 590,728,153 | 2.24% | ||
stem-espanol | 0 | 2,446,271,831 | 100% | ||
futurekr | 0 | 1,727,563,733 | 100% | ||
cliffagreen | 0 | 4,814,906,139 | 10% | ||
aleestra | 0 | 13,279,912,437 | 80% | ||
palasatenea | 0 | 3,301,898,485 | 2.8% | ||
the.success.club | 0 | 2,346,144,204 | 2.8% | ||
javier.dejuan | 0 | 532,512,736 | 70% | ||
amansharma555 | 0 | 595,961,049 | 100% | ||
meanroosterfarm | 0 | 1,406,385,224 | 35% | ||
racarjoal | 0 | 587,495,109 | 12% | ||
janettyanez | 0 | 943,656,196 | 4.8% | ||
brianoflondon | 0 | 86,516,643,512 | 1.4% | ||
giulyfarci52 | 0 | 1,722,948,742 | 50% | ||
esthersanchez | 0 | 1,541,276,218 | 24% | ||
maryelin | 0 | 665,625,448 | 12% | ||
kristall97 | 0 | 685,252,107 | 100% | ||
followjohngalt | 0 | 627,339,820 | 5.6% | ||
steemcryptosicko | 0 | 9,364,222,470 | 1.12% | ||
alvin0617 | 0 | 482,801,903 | 2.8% | ||
multifacetas | 0 | 1,822,614,392 | 2.8% | ||
cowpatty | 0 | 1,467,782,501 | 35% | ||
stem.witness | 0 | 4,220,861,482 | 70% | ||
witkowskipawel | 0 | 947,340,629 | 2.8% | ||
jpbliberty | 0 | 7,266,369,940 | 1.4% | ||
autobodhi | 0 | 1,022,458,091 | 5.6% | ||
mechanicalowl | 0 | 658,743,302 | 50% | ||
regularowl | 0 | 1,177,374,965 | 50% | ||
khan.dayyanz | 0 | 15,174,390,375 | 10.8% | ||
vaultec | 0 | 560,088,742,885 | 12% | ||
daniel2001 | 0 | 649,691,752 | 12% | ||
steemstorage | 0 | 6,636,935,272 | 5.6% | ||
jtm.support | 0 | 5,471,624,750 | 70% | ||
edithbdraw | 0 | 811,302,373 | 2.8% | ||
crowdwitness | 0 | 140,384,153,484 | 35% | ||
hairgistix | 0 | 3,225,674,531 | 2.8% | ||
bluemaskman | 0 | 632,585,328 | 2.8% | ||
steemean | 0 | 9,796,815,085 | 5% | ||
proxy-pal | 0 | 1,306,437,471 | 5.6% | ||
littlesorceress | 0 | 1,230,443,644 | 2.8% | ||
historiasamorlez | 0 | 574,603,016 | 2.8% | ||
newton666 | 0 | 1,637,604,957 | 35% | ||
cryptofiloz | 0 | 8,937,773,297 | 5.6% | ||
dawnoner | 0 | 1,686,194,787 | 0.56% | ||
epicdice | 0 | 933,175,274 | 0.84% | ||
yiobri | 0 | 603,344,236 | 12% | ||
yonnathang | 0 | 12,464,090,687 | 24% | ||
lammbock | 0 | 1,488,218,539 | 100% | ||
robibasa | 0 | 15,431,671,200 | 10% | ||
beerlover | 0 | 2,377,828,524 | 1.68% | ||
tinyhousecryptos | 0 | 472,659,435 | 5% | ||
tggr | 0 | 1,364,824,202 | 2.8% | ||
aicu | 0 | 1,432,417,972 | 5.6% | ||
walterprofe | 0 | 48,834,359,318 | 35% | ||
zeruxanime | 0 | 13,143,965,613 | 35% | ||
afarina46 | 0 | 1,950,435,249 | 35% | ||
waraira777 | 0 | 1,378,453,673 | 35% | ||
imbartley | 0 | 835,645,532 | 26.25% | ||
we-are-palcoin | 0 | 249,920,405 | 71% | ||
kgswallet | 0 | 1,078,376,365 | 20% | ||
h-hamilton | 0 | 1,135,469,609 | 2.8% | ||
tiffin | 0 | 596,000,598 | 5.6% | ||
bala-ag | 0 | 113,586,341 | 20% | ||
aicoding | 0 | 578,448,379 | 2.8% | ||
tokensink | 0 | 3,320,146,624 | 5.6% | ||
beta500 | 0 | 3,810,005,591 | 5.6% | ||
knightsunited | 0 | 864,042,454 | 5.6% | ||
javikun | 0 | 687,994,780 | 24% | ||
nazer | 0 | 2,836,817,245 | 35% | ||
kanibot | 0 | 9,992,741,907 | 20% | ||
zulfrontado | 0 | 628,566,925 | 12% | ||
saravm82 | 0 | 828,182,465 | 24% | ||
steemstem-trig | 0 | 1,464,226,932 | 70% | ||
hispapro | 0 | 468,072,469,940 | 24% | ||
baltai | 0 | 6,405,760,334 | 2.8% | ||
chris-uk | 0 | 1,211,655,142 | 2.8% | ||
machan | 0 | 722,928,575 | 2.8% | ||
steemdiamond | 0 | 721,579,508 | 5.6% | ||
zirky | 0 | 2,873,330,451 | 4.76% | ||
gloriaolar | 0 | 382,723,261 | 1.68% | ||
davidlionfish | 0 | 11,210,796,543 | 50% | ||
andreina57 | 0 | 683,996,102 | 35% | ||
krisconkr | 0 | 503,363,139 | 2.8% | ||
stemsocial | 0 | 586,997,612,396 | 70% | ||
kodeblaccc | 0 | 548,319,096 | 2.8% | ||
ghastlygames | 0 | 476,718,236 | 5.6% | ||
holoferncro | 0 | 4,684,472,859 | 10% | ||
the100 | 0 | 1,374,099,598 | 2.8% | ||
hiveonboard | 0 | 820,855,934 | 2.1% | ||
louis00334 | 0 | 2,226,285,227 | 50% | ||
graciadegenios | 0 | 2,480,106,427 | 24% | ||
georgelys | 0 | 2,875,514,259 | 24% | ||
lqch | 0 | 1,957,678,343 | 12% | ||
noelyss | 0 | 16,454,910,781 | 35% | ||
balvinder294 | 0 | 1,324,886,612 | 2.4% | ||
patronpass | 0 | 517,988,560 | 5.6% | ||
anafae | 0 | 670,863,254 | 1.12% | ||
hivecoffee | 0 | 516,259,690 | 5.6% | ||
issymarie2 | 0 | 4,318,259,990 | 12% | ||
sevenoh-fiveoh | 0 | 1,005,503,651 | 2.8% | ||
lis0426csm | 0 | 3,954,367,768 | 100% | ||
visualartist | 0 | 769,360,772 | 2.8% | ||
r-nyn | 0 | 16,919,723,403 | 11% | ||
edfer18 | 0 | 1,038,776,147 | 24% | ||
altleft | 0 | 24,241,800,910 | 0.05% | ||
omarrojas | 0 | 2,227,513,648 | 2.8% | ||
noalys | 0 | 1,220,747,637 | 2.8% | ||
enyusael | 0 | 889,537,630 | 12% | ||
borniet | 0 | 3,853,763,557 | 6% | ||
evagavilan2 | 0 | 6,651,274,428 | 12% | ||
jesuspsoto | 0 | 1,074,108,417 | 24% | ||
elity-sitio | 0 | 1,105,326,072 | 100% | ||
apeboy | 0 | 922,314,049 | 12% | ||
cosplay.hadr | 0 | 1,216,490,708 | 5.6% | ||
hadrgames | 0 | 1,253,428,128 | 5.6% | ||
yogeshbhatt | 0 | 2,248,369,910 | 12% | ||
rawecz | 0 | 2,831,632,135 | 24% | ||
maar | 0 | 667,170,753 | 70% | ||
meritocracy | 0 | 63,260,937,862 | 0.56% | ||
jesustiano | 0 | 4,745,614,980 | 19.2% | ||
godfather.ftw | 0 | 8,505,980,070 | 10.8% | ||
dcrops | 0 | 38,683,814,774 | 2.8% | ||
rondonshneezy | 0 | 519,277,561 | 2.8% | ||
hive-129556 | 0 | 1,913,391,511 | 100% | ||
yozen | 0 | 2,178,802,292 | 2.8% | ||
esmeesmith | 0 | 1,272,699,174 | 2.8% | ||
alvarezjessica | 0 | 3,549,339,348 | 24% | ||
cookaiss | 0 | 2,395,420,792 | 5% | ||
tawadak24 | 0 | 2,838,918,624 | 2.8% | ||
ausbit.dev | 0 | 586,172,038 | 2.8% | ||
bananass | 0 | 3,420,372,433 | 4.2% | ||
elgatoshawua | 0 | 672,297,089 | 2.8% | ||
limn | 0 | 781,529,536 | 2.8% | ||
nyxlabs | 0 | 1,184,586,772 | 3.5% | ||
dodovietnam | 0 | 2,538,192,883 | 2.8% | ||
failingforwards | 0 | 3,377,613,417 | 2.8% | ||
drricksanchez | 0 | 14,993,724,737 | 2.8% | ||
hexagono6 | 0 | 1,939,937,617 | 12% | ||
trouvaille | 0 | 1,534,035,361 | 2.8% | ||
joseluis91 | 0 | 824,485,292 | 5.6% | ||
maxelitereturned | 0 | 550,356,287 | 35% | ||
xylliana | 0 | 11,322,220,968 | 2.8% | ||
juecoree.stem | 0 | 481,076,318 | 70% | ||
trippymane | 0 | 1,785,175,964 | 5.6% | ||
victordumont | 0 | 1,905,625,710 | 24% | ||
norokochan | 0 | 688,882,415 | 24% | ||
nfttunz | 0 | 8,867,463,306 | 0.56% | ||
caribayarte | 0 | 2,357,004,772 | 24% | ||
yeidelyt | 0 | 852,368,922 | 24% | ||
soychalbed | 0 | 1,164,288,901 | 12% | ||
muterra | 0 | 100,978,898,231 | 12% | ||
okluvmee | 0 | 5,739,940,556 | 6% | ||
atexoras.pub | 0 | 1,648,350,283 | 2.8% | ||
holovision.cash | 0 | 1,991,027,906 | 100% | ||
brujita18 | 0 | 5,547,880,611 | 10.8% | ||
krrizjos18 | 0 | 1,018,502,215 | 12% | ||
hubeyma | 0 | 834,912,520 | 2.8% | ||
mirteg | 0 | 731,210,125 | 5.6% | ||
sarashew | 0 | 3,768,445,865 | 5.6% | ||
podping | 0 | 8,603,951,709 | 1.4% | ||
davidbright | 0 | 878,274,614 | 2.8% | ||
jessicaossom | 0 | 1,225,095,008 | 2.8% | ||
beysyd | 0 | 1,486,776,570 | 12% | ||
ferbu | 0 | 2,616,761,458 | 24% | ||
drhueso | 0 | 1,370,925,511 | 2.8% | ||
kamaleshwar | 0 | 1,656,126,375 | 12% | ||
chandra.shekar | 0 | 2,696,006,538 | 12% | ||
kannannv | 0 | 8,124,863,194 | 12% | ||
pinkfloyd878 | 0 | 4,547,841,054 | 100% | ||
asderhz | 0 | 485,391,370 | 12% | ||
mairimgo23 | 0 | 5,568,627,746 | 24% | ||
mario02 | 0 | 468,398,975 | 2.8% | ||
miguelstar | 0 | 1,189,444,830 | 24% | ||
seinkalar | 0 | 1,850,878,889 | 5.6% | ||
tanzil2024 | 0 | 1,328,810,579 | 1% | ||
amaillo | 0 | 658,414,680 | 4.8% | ||
lexansky | 0 | 1,171,702,001 | 100% | ||
aries90 | 0 | 45,130,846,807 | 5.6% | ||
cugel | 0 | 1,970,883,197 | 2.8% | ||
spirit09 | 0 | 4,234,795,479 | 100% | ||
amaillo-m | 0 | 757,636,594 | 24% | ||
acantoni | 0 | 707,132,214 | 2.8% | ||
migka | 0 | 4,605,060,764 | 90% | ||
blingit | 0 | 3,618,666,955 | 2.8% | ||
axelx12 | 0 | 8,367,805,172 | 100% | ||
mcsherriff | 0 | 545,497,526 | 5.6% | ||
deimage | 0 | 2,166,729,159 | 6% | ||
h3m4n7 | 0 | 841,820,747 | 2.8% | ||
jude9 | 0 | 498,815,213 | 17.5% | ||
yixn | 0 | 23,043,344,674 | 2.8% | ||
kqaosphreak | 0 | 8,441,088,012 | 70% | ||
mcookies | 0 | 2,422,845,716 | 12% | ||
waivio.curator | 0 | 1,506,478,233 | 2.88% | ||
cryptohaytham | 0 | 494,293,587 | 6% | ||
ledgar | 0 | 6,122,991,293 | 100% | ||
gercripto | 0 | 1,321,197,734 | 12% | ||
ehizgabriel | 0 | 667,806,768 | 35% | ||
susurrodmisterio | 0 | 964,211,358 | 12% | ||
noctury | 0 | 720,448,035 | 2.8% | ||
esalcedo | 0 | 33,775,085,667 | 24% | ||
foxlatam | 0 | 9,771,278,540 | 50% | ||
deadleaf | 0 | 4,212,773,709 | 100% | ||
lichtkunstfoto | 0 | 7,488,765,933 | 5.6% | ||
vindiesel1980 | 0 | 13,091,313,697 | 2.8% | ||
allentaylor | 0 | 868,439,241 | 2.8% | ||
benwickenton | 0 | 2,740,702,736 | 5.6% | ||
annabeth | 0 | 819,841,785 | 5.6% | ||
balaz | 0 | 19,034,979,269 | 20% | ||
jerusa777 | 0 | 1,430,273,790 | 15% | ||
azj26 | 0 | 4,751,593,610 | 16% | ||
balabambuz | 0 | 681,365,000 | 2.8% | ||
archangel21 | 0 | 14,058,379,872 | 5.6% | ||
plicc8 | 0 | 765,832,105 | 70% | ||
belug | 0 | 3,299,163,019 | 1.68% | ||
kilvnrex | 0 | 5,950,549,188 | 30% | ||
amafable07 | 0 | 575,088,136 | 35% | ||
mugueto2022 | 0 | 552,323,138 | 20% | ||
ricardoeloy | 0 | 550,368,542 | 6% | ||
alfazmalek02 | 0 | 27,274,217,244 | 100% | ||
nazom | 0 | 868,791,064 | 35% | ||
baboz | 0 | 1,448,904,605 | 1.4% | ||
universodaniel | 0 | 858,029,651 | 12% | ||
soyjoselopez | 0 | 471,246,409 | 20% | ||
sbtofficial | 0 | 4,512,836,684 | 2.8% | ||
nwothini335 | 0 | 1,235,997,476 | 17.5% | ||
vagabond42069 | 0 | 1,517,233,476 | 35% | ||
eollarvesm | 0 | 869,274,574 | 12% | ||
juansitosaiyayin | 0 | 554,905,028 | 40% | ||
inibless | 0 | 1,223,445,235 | 35% | ||
hiversbqto | 0 | 2,573,146,810 | 24% | ||
sc000 | 0 | 1,408,217,330 | 5.6% | ||
lailalaurent | 0 | 7,270,304,182 | 100% | ||
pinkchic | 0 | 2,139,097,592 | 1.8% | ||
kittykaitlin | 0 | 7,064,280,112 | 98% | ||
vankushfamily | 0 | 676,456,473 | 35% | ||
jijisaurart | 0 | 1,572,803,687 | 2.8% | ||
clpacksperiment | 0 | 2,350,269,038 | 2.8% | ||
ambicrypto | 0 | 70,304,320,247 | 5.6% | ||
humbe | 0 | 1,570,663,179 | 1% | ||
imacryptogeek | 0 | 8,278,109,931 | 12% | ||
nancybriti1 | 0 | 40,461,034,174 | 100% | ||
flywithmarlin | 0 | 837,899,970 | 12% | ||
zackygamer | 0 | 1,294,616,123 | 24% | ||
technico | 0 | 1,038,261,922 | 2.8% | ||
beauty197 | 0 | 508,735,993 | 2.8% | ||
whitneyalexx | 0 | 531,486,370 | 2.8% | ||
abhay2695 | 0 | 1,181,392,435 | 6% | ||
lettinggotech | 0 | 1,302,016,474 | 2.8% | ||
rhemagames | 0 | 5,207,170,885 | 2.8% | ||
soylegionario | 0 | 13,507,711,781 | 24% | ||
mariiestefania | 0 | 2,574,732,572 | 24% | ||
queasuluz | 0 | 2,116,054,433 | 24% | ||
mulik369 | 0 | 1,457,961,879 | 69% |
This post has been manually curated by @bhattg from Indiaunited community. Join us on our [Discord Server](https://discord.gg/bGmS2tE). Do you know that you can earn a passive income by delegating to @indiaunited. We share more than 100 % of the curation rewards with the delegators in the form of IUC tokens. HP delegators and IUC token holders also get upto 20% additional vote weight. Here are some handy links for delegations: [100HP](https://hivesigner.com/sign/delegateVestingShares?delegator=&delegatee=indiaunited&vesting_shares=173333.82586024754%20VESTS), [250HP](https://hivesigner.com/sign/delegateVestingShares?delegator=&delegatee=indiaunited&vesting_shares=433334.5646506188%20VESTS), [500HP](https://hivesigner.com/sign/delegateVestingShares?delegator=&delegatee=indiaunited&vesting_shares=866669.1293012376%20VESTS), [1000HP](https://hivesigner.com/sign/delegateVestingShares?delegator=&delegatee=indiaunited&vesting_shares=1733338.2586024753%20VESTS). [](https://discord.gg/bGmS2tE) <sub>**100% of the rewards from this comment goes to the curator for their manual curation efforts. Please encourage the curator @bhattg by upvoting this comment and support the community by voting the posts made by @indiaunited.**</sub>
author | indiaunited | ||||||
---|---|---|---|---|---|---|---|
permlink | indiaunited-1710946662035 | ||||||
category | hive-197685 | ||||||
json_metadata | {"app":"hiveblog/0.1","format":"markdown","tags":["hive-197685","programming","coding","python","quiz","chess","neoxian","proofofbrain","waivio","creativecoin","spanish"]} | ||||||
created | 2024-03-20 14:57:42 | ||||||
last_update | 2024-03-20 14:57:42 | ||||||
depth | 1 | ||||||
children | 0 | ||||||
last_payout | 2024-03-27 14:57: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 | 1,328 | ||||||
author_reputation | 95,462,840,533,451 | ||||||
root_title | "My Coding Quiz #53" | ||||||
beneficiaries |
| ||||||
max_accepted_payout | 1,000,000.000 HBD | ||||||
percent_hbd | 10,000 | ||||||
post_id | 132,198,689 | ||||||
net_rshares | 0 |
<div class='text-justify'> <div class='pull-left'> <img src='https://stem.openhive.network/images/stemsocialsupport7.png'> </div> Thanks for your contribution to the <a href='/trending/hive-196387'>STEMsocial community</a>. Feel free to join us on <a href='https://discord.gg/9c7pKVD'>discord</a> to get to know the rest of us! Please consider delegating to the @stemsocial account (85% of the curation rewards are returned). You may also include @stemsocial as a beneficiary of the rewards of this post to get a stronger support. <br /> <br /> </div>
author | stemsocial |
---|---|
permlink | re-eniolw-my-coding-quiz-53-20240321t013234523z |
category | hive-197685 |
json_metadata | {"app":"STEMsocial"} |
created | 2024-03-21 01:32:33 |
last_update | 2024-03-21 01:32:33 |
depth | 1 |
children | 0 |
last_payout | 2024-03-28 01:32: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 | 565 |
author_reputation | 22,905,425,648,299 |
root_title | "My Coding Quiz #53" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 132,210,150 |
net_rshares | 0 |