<div class="text-justify"> <center><h2>My Coding Quiz #40 馃懆鈥嶐煉火煕狅笍馃З</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/DQmafcRPorsNmBMiZdPW3BZc18qSLua45aWqWAQcJJeS6RR/imagen.png" alt="Quiz"> <h6>By @eniolw</h6> </center> <br><center><h3>What's your choice? Can you figure out any feedback to the developers from this?</h3></center> <p><b>Solution to the <a href="/@eniolw/my-coding-quiz-39">previous quiz</a>:</b> <b>a1,b2,c3,d4</b>. First of all, we define the string <code>files</code> with the hardcoded value <code>'abcd'</code> and the range <code>ranks</code> that goes from 1 to 5 (6 is not counted, since the limit of the range is exclusive).</p> <p>Next, we create a <code>sq</code> object using the built-in <code>zip</code> function. This function allows you to loop over two or more iterables simultaneously and make a new iterable of tuples with the matching elements of each iterable. We can see how this works in the following table:</p> <table> <tr><td>Index</td><td><sub>0</sub></td><td><sub>1</sub></td><td><sub>2</sub></td><td><sub>3</sub></td></tr> <tr><td>files</td><td>a</td><td>b</td><td>c</td><td>d</td></tr> <tr><td>ranks</td><td>1</td><td>2</td><td>3</td><td>4</td></tr> <tr><td>zip</td><td>a1</td><td>b2</td><td>c3</td><td>d4</td></tr> </table> <br><p>Interestingly, it seems that there is no mathematical function that describes this operation, since the <i>Catersian product of sets</i> differs in that it creates all possible pair of elements. According to <a href="https://math.stackexchange.com/questions/3337510/how-can-i-represent-the-haskell-python-etc-zip-function-in-math-notation">this page</a>, the <i>diagonal product</i> is a close approximation to the <code>zip</code> function.</p> <p>Regardless, this function is very useful in programming and has many applications. In this case, I used it to combine the <code>files</code> and <code>ranks</code> to create <code>sq</code>, which stands for squares. If you pay attention, these are names of squares on a chess board: <b>a1</b>, <b>b2</b>, <b>c3</b> and <b>d4</b>.</p> <p>Now, you may have also noticed that <code>ranks</code> had elements from <b>1</b> to <b>5</b>, so what happened to <b>5</b>? It was ignored because <code>zip</code> only pairs or combines iterables that have the same length. The moment the size of an iterable is longer than the others, <code>zip</code> will stop and the resulting iterable will have the same length as the shortest given iterable.</p> <p>Finally, the iterable is executed using the well-known <code>join</code> function, obtaining a convenient string <code>labels</code>.</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></p> <hr> <center><h2>Mi Quiz de Programaci贸n #40 馃懆鈥嶐煉火煕狅笍馃З</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/DQmdF6Dvuori34EpNnvhbJqK6VDyfe2tmTq1zydVUaijdqf/imagen.png" alt="Quiz"> <h6>Por @eniolw</h6> </center> <br><center><h3>驴Cu谩l es tu elecci贸n? 驴Puedes deducir alg煤n feedback a los desarrolladores a partir de esto?</h3></center> <p><b>Soluci贸n al <a href="/@eniolw/my-coding-quiz-39">quiz anterior</a>:</b> <b>a1,b2,c3,d4</b>. En primer lugar, definimos la cadena <code>files</code> con el valor codificado <code>'abcd'</code> y el rango <code>ranks</code> que va del 1 al 5 (6 es no contabilizado, ya que el l铆mite del rango es excluyente).</p> <p>A continuaci贸n, creamos un objeto <code>sq</code> usando la funci贸n <code>zip</code> incorporada. Esta funci贸n le permite recorrer dos o m谩s iterables simult谩neamente y crear un nuevo iterable de tuplas con los elementos coincidentes de cada iterable. Podemos ver c贸mo funciona esto en la siguiente tabla:</p> <table> <tr><td>脥ndice</td><td><sub>0</sub></td><td><sub>1</sub></td><td><sub>2</sub></td><td><sub>3</sub></td></tr> <tr><td>files</td><td>a</td><td>b</td><td>c</td><td>d</td></tr> <tr><td>ranks</td><td>1</td><td>2</td><td>3</td><td>4</td></tr> <tr><td>zip</td><td>a1</td><td>b2</td><td>c3</td><td>d4</td></tr> </table> <br><p>Curiosamente, no parece que exista alguna funci贸n matem谩tica que describa esta operaci贸n, ya que el <i>producto catersiano de conjuntos</i> se diferencia en que crea todos los pares de elementos posibles. Seg煤n <a href="https://math.stackexchange.com/questions/3337510/how-can-i-represent-the-haskell-python-etc-zip-function-in-math-notation">esta p谩gina </a>, el <i>producto diagonal</i> es una aproximaci贸n cercana a la funci贸n <code>zip</code>.</p> <p>De todos modos, esta funci贸n es muy 煤til en programaci贸n y tiene muchas aplicaciones. En este caso, lo us茅 para combinar los <code>files</code> y los <code>ranks</code> para crear <code>sq</code>, que significa casillas (squares en ingl茅s). Si prestas atenci贸n, estos son los nombres de las casillas de un tablero de ajedrez: <b>a1</b>, <b>b2</b>, <b>c3</b> y <b>d4</b>.</p> <p>Ahora, tambi茅n habr谩s notado que <code>ranks</code> ten铆a elementos del <b>1</b> al <b>5</b>, entonces, 驴qu茅 pas贸 con <b>5</b>? Se ignor贸 porque <code>zip</code> solo empareja o combina iterables que tienen la misma longitud. En el momento en que el tama帽o de un iterable sea m谩s largo que los dem谩s, <code>zip</code> se detendr谩 y el iterable resultante tendr谩 la misma longitud que el iterable m谩s corto dado.</p> <p>Finalmente, el iterable se ejecuta utilizando la conocida funci贸n <code>join</code>, obteniendo una conveniente cadena <code>labels</code>.</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-40 |
category | hive-139531 |
json_metadata | "{"image":["https://images.ecency.com/DQmafcRPorsNmBMiZdPW3BZc18qSLua45aWqWAQcJJeS6RR/imagen.png","https://images.ecency.com/DQmdF6Dvuori34EpNnvhbJqK6VDyfe2tmTq1zydVUaijdqf/imagen.png"],"tags":["hive-139531","programming","coding","python","quiz","hive","neoxian","proofofbrain","creativecoin","spanish"],"description":"My Coding Quiz #40 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.0.37-vision","format":"markdown+html","image_ratios":["0.9259","0.9259"]}" |
created | 2024-01-20 04:53:18 |
last_update | 2024-01-20 04:53:18 |
depth | 0 |
children | 3 |
last_payout | 2024-01-27 04:53:18 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 8.254 HBD |
curator_payout_value | 8.165 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 6,850 |
author_reputation | 255,265,873,765,684 |
root_title | "My Coding Quiz #40" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 130,623,653 |
net_rshares | 38,963,858,097,772 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
boatymcboatface | 0 | 157,212,670,272 | 8% | ||
drifter1 | 0 | 1,037,402,263 | 2.8% | ||
kingscrown | 0 | 11,491,362,565 | 8% | ||
flemingfarm | 0 | 3,023,687,707 | 0.56% | ||
kevinwong | 0 | 10,999,813,515 | 2.8% | ||
theshell | 0 | 42,068,064,718 | 8% | ||
justtryme90 | 0 | 1,423,643,779 | 70% | ||
eric-boucher | 0 | 15,218,350,512 | 2.8% | ||
juanmiguelsalas | 0 | 547,428,927 | 1.68% | ||
thecryptodrive | 0 | 66,668,206,799 | 1.12% | ||
roelandp | 0 | 409,401,187,964 | 35% | ||
neoxian | 0 | 6,417,411,318,192 | 30% | ||
ardina | 0 | 17,100,237,398 | 100% | ||
cloh76 | 0 | 3,995,338,944 | 2.8% | ||
joshglen | 0 | 716,808,439 | 5.6% | ||
pipokinha | 0 | 66,403,366,528 | 100% | ||
sunshine | 0 | 202,616,297,987 | 35% | ||
rmach | 0 | 13,339,027,214 | 35% | ||
lemouth | 0 | 1,822,450,703,403 | 70% | ||
someguy123 | 0 | 34,942,508,399 | 2.8% | ||
alaqrab | 0 | 556,482,260 | 2.8% | ||
lamouthe | 0 | 5,586,449,543 | 70% | ||
tfeldman | 0 | 5,447,716,099 | 2.8% | ||
sergiomendes | 0 | 1,434,342,343 | 2.8% | ||
metabs | 0 | 7,990,592,684 | 70% | ||
mcsvi | 0 | 140,708,413,476 | 50% | ||
cnfund | 0 | 11,376,343,322 | 5.6% | ||
justyy | 0 | 32,485,514,090 | 5.6% | ||
michelle.gent | 0 | 3,429,291,308 | 1.12% | ||
curie | 0 | 399,194,906,936 | 5.6% | ||
safar01 | 0 | 839,386,590 | 34.5% | ||
modernzorker | 0 | 3,873,866,564 | 3.92% | ||
moretea | 0 | 1,133,996,868 | 5.6% | ||
techslut | 0 | 187,565,716,558 | 28% | ||
steemstem | 0 | 1,296,408,648,731 | 70% | ||
dashfit | 0 | 487,880,809 | 2.8% | ||
tristancarax | 0 | 700,812,642 | 2.8% | ||
edb | 0 | 5,269,586,187 | 7% | ||
bigtakosensei | 0 | 1,767,959,775 | 1.4% | ||
walterjay | 0 | 481,447,297,477 | 35% | ||
valth | 0 | 10,666,690,375 | 35% | ||
metroair | 0 | 25,565,502,986 | 5.6% | ||
driptorchpress | 0 | 2,190,317,266 | 1.4% | ||
dna-replication | 0 | 2,744,070,695 | 70% | ||
privex | 0 | 3,494,433,378 | 5.6% | ||
boynashruddin | 0 | 797,572,215 | 5.6% | ||
steemiteducation | 0 | 1,312,666,822 | 2.8% | ||
dhimmel | 0 | 372,385,066,745 | 17.5% | ||
oluwatobiloba | 0 | 2,400,061,106 | 70% | ||
elevator09 | 0 | 6,823,913,790 | 2.8% | ||
detlev | 0 | 27,533,623,452 | 1.68% | ||
chasmic-cosm | 0 | 857,971,065 | 2.8% | ||
dune69 | 0 | 657,130,957 | 5.6% | ||
lugaxker | 0 | 823,566,558 | 34.65% | ||
federacion45 | 0 | 8,609,610,296 | 2.8% | ||
amberyooper | 0 | 671,159,666 | 2.8% | ||
gamersclassified | 0 | 3,932,608,153 | 2.8% | ||
iansart | 0 | 2,655,144,632 | 2.8% | ||
forykw | 0 | 11,865,973,890 | 2.8% | ||
eliel | 0 | 2,693,907,570 | 5.6% | ||
jerrybanfield | 0 | 18,626,487,524 | 5.6% | ||
rt395 | 0 | 2,077,470,299 | 1.5% | ||
bitrocker2020 | 0 | 11,278,311,444 | 1.12% | ||
maxdevalue | 0 | 706,493,191 | 5.6% | ||
sustainablyyours | 0 | 24,248,205,529 | 35% | ||
helo | 0 | 24,531,426,432 | 35% | ||
arunava | 0 | 16,662,121,512 | 2.24% | ||
schoolforsdg4 | 0 | 1,061,160,426 | 5% | ||
samminator | 0 | 42,041,011,612 | 35% | ||
zerotoone | 0 | 1,112,485,878 | 2.8% | ||
enjar | 0 | 45,137,249,786 | 5.04% | ||
mahdiyari | 0 | 414,593,515,072 | 80% | ||
lorenzor | 0 | 1,356,782,769 | 50% | ||
firstamendment | 0 | 89,256,413,522 | 50% | ||
aboutyourbiz | 0 | 1,041,515,353 | 5.6% | ||
derosnec | 0 | 573,020,645 | 2.8% | ||
alexander.alexis | 0 | 43,013,139,769 | 70% | ||
jayna | 0 | 7,986,429,739 | 1.12% | ||
deanlogic | 0 | 1,429,564,615 | 2.8% | ||
hhayweaver | 0 | 1,050,625,472 | 1.4% | ||
princessmewmew | 0 | 7,704,110,140 | 2.8% | ||
grapthar | 0 | 1,171,216,053 | 4.2% | ||
diabolika | 0 | 1,001,113,384 | 2.8% | ||
zacherybinx | 0 | 957,655,663 | 5.6% | ||
ufv | 0 | 3,006,808,420 | 50% | ||
pipiczech | 0 | 2,375,766,493 | 5.6% | ||
empath | 0 | 4,241,388,080 | 2.8% | ||
minnowbooster | 0 | 1,037,234,632,337 | 20% | ||
lenasveganliving | 0 | 609,661,540 | 2.8% | ||
howo | 0 | 2,284,293,173,836 | 70% | ||
tsoldovieri | 0 | 7,422,224,149 | 35% | ||
akomoajong | 0 | 997,047,479 | 30% | ||
nitego | 0 | 506,727,110 | 1.68% | ||
neumannsalva | 0 | 4,892,409,440 | 2.8% | ||
stayoutoftherz | 0 | 165,635,872,718 | 1.4% | ||
abigail-dantes | 0 | 25,950,038,435 | 70% | ||
coindevil | 0 | 2,934,407,075 | 4.48% | ||
zonguin | 0 | 3,759,736,830 | 17.5% | ||
investingpennies | 0 | 19,587,803,971 | 5.6% | ||
khalil319 | 0 | 749,752,875 | 10% | ||
martibis | 0 | 1,629,450,287 | 1.68% | ||
travelingmercies | 0 | 762,308,916 | 5.6% | ||
redrica | 0 | 2,118,378,068 | 2.8% | ||
pepskaram | 0 | 588,843,562 | 2.8% | ||
iamphysical | 0 | 920,876,160 | 90% | ||
dipom98 | 0 | 1,190,962,088 | 2.8% | ||
zest | 0 | 1,013,972,896 | 35% | ||
zyx066 | 0 | 3,880,672,692 | 1.68% | ||
chrisdavidphoto | 0 | 1,095,700,014 | 1.68% | ||
revo | 0 | 11,350,584,409 | 5.6% | ||
azulear | 0 | 1,409,240,948 | 100% | ||
psicoluigi | 0 | 854,145,743 | 50% | ||
rafaelaquino | 0 | 13,033,000,286 | 100% | ||
wilians | 0 | 548,137,818 | 35% | ||
rocky1 | 0 | 788,382,207,444 | 0.84% | ||
stickchumpion | 0 | 935,019,933 | 2.8% | ||
tipu | 0 | 12,824,655,720,926 | 69% | ||
thelordsharvest | 0 | 4,495,926,461 | 5.6% | ||
sumant | 0 | 3,892,932,353 | 2.8% | ||
aidefr | 0 | 7,562,651,386 | 35% | ||
torico | 0 | 1,510,841,878 | 1.84% | ||
sorin.cristescu | 0 | 181,861,134,884 | 35% | ||
therealwolf | 0 | 32,381,487,955 | 2.8% | ||
fatman | 0 | 9,023,489,903 | 2% | ||
minnowpowerup | 0 | 877,084,776 | 2.8% | ||
mawit07 | 0 | 9,083,293,758 | 9.9% | ||
splash-of-angs63 | 0 | 7,395,732,194 | 60% | ||
cryptononymous | 0 | 1,962,510,881 | 2.8% | ||
meno | 0 | 28,537,816,001 | 2.8% | ||
buttcoins | 0 | 2,309,831,522 | 1.12% | ||
bigdizzle91 | 0 | 830,201,299 | 2.8% | ||
hanggggbeeee | 0 | 494,173,521 | 2.8% | ||
steemed-proxy | 0 | 1,113,494,696,955 | 5.6% | ||
fatkat | 0 | 1,481,582,381 | 2.79% | ||
investegg | 0 | 2,900,310,132 | 1.8% | ||
doifeellucky | 0 | 2,219,609,264 | 2.8% | ||
peaceandwar | 0 | 873,172,749 | 2.8% | ||
bhoa | 0 | 587,702,374 | 35% | ||
enzor | 0 | 2,221,252,776 | 35% | ||
marcoriccardi | 0 | 1,018,563,469 | 5.6% | ||
bartosz546 | 0 | 15,623,150,573 | 2.8% | ||
tazbaz | 0 | 559,332,799 | 2.8% | ||
afterglow | 0 | 785,841,049 | 10% | ||
dandays | 0 | 31,951,408,007 | 2.24% | ||
battebilly | 0 | 737,974,289 | 2.8% | ||
caladan | 0 | 824,937,383 | 5.6% | ||
dejan.vuckovic | 0 | 863,870,599 | 1.12% | ||
lottje | 0 | 612,414,932 | 70% | ||
myach | 0 | 1,003,908,778 | 4.48% | ||
sunsea | 0 | 4,792,055,506 | 2.8% | ||
postpromoter | 0 | 1,639,451,962,990 | 70% | ||
mejustandrew | 0 | 834,025,705 | 2.8% | ||
bluefinstudios | 0 | 3,731,933,801 | 1.68% | ||
steveconnor | 0 | 4,987,699,935 | 2.8% | ||
sankysanket18 | 0 | 1,688,831,536 | 35% | ||
afzalqamar | 0 | 2,217,402,982 | 34.5% | ||
dbddv01 | 0 | 2,579,295,096 | 17.5% | ||
zmx | 0 | 607,608,192 | 2.8% | ||
nicole-st | 0 | 1,000,076,959 | 2.8% | ||
smartsteem | 0 | 136,260,308,277 | 2.8% | ||
joedukeg | 0 | 1,305,404,399 | 25% | ||
aboutcoolscience | 0 | 380,478,528,517 | 70% | ||
popurri | 0 | 1,098,527,885 | 34.5% | ||
afifa | 0 | 620,102,974 | 10% | ||
sandracarrascal | 0 | 512,276,628 | 50% | ||
kenadis | 0 | 19,057,757,315 | 70% | ||
bebeomega | 0 | 1,324,801,260 | 2.8% | ||
madridbg | 0 | 36,350,726,115 | 70% | ||
robotics101 | 0 | 21,305,628,688 | 70% | ||
marcolino76 | 0 | 657,059,494 | 2.8% | ||
onemedia | 0 | 1,158,194,745 | 5.6% | ||
lpv | 0 | 3,047,238,712 | 8.75% | ||
punchline | 0 | 8,239,305,494 | 5.6% | ||
zeroooc | 0 | 1,072,669,956 | 100% | ||
spiritabsolute | 0 | 28,368,117,154 | 100% | ||
apon318 | 0 | 514,472,451 | 5.6% | ||
straykat | 0 | 905,387,960 | 2.8% | ||
tomatom | 0 | 541,511,479 | 2.8% | ||
adelepazani | 0 | 1,607,398,305 | 1.12% | ||
danaedwards | 0 | 706,818,765 | 5.6% | ||
r00sj3 | 0 | 120,982,405,767 | 35% | ||
sco | 0 | 21,492,053,056 | 70% | ||
ennyta | 0 | 993,997,127 | 50% | ||
brotherhood | 0 | 20,717,171,550 | 5.6% | ||
abmakko | 0 | 2,018,040,013 | 15% | ||
juecoree | 0 | 4,219,623,208 | 49% | ||
gordon92 | 0 | 871,042,471 | 2.8% | ||
stahlberg | 0 | 1,278,069,489 | 2.8% | ||
gabrielatravels | 0 | 2,020,531,133 | 1.96% | ||
cordeta | 0 | 1,035,836,807 | 5.6% | ||
reizak | 0 | 494,636,101 | 2.24% | ||
carn | 0 | 3,619,509,917 | 5.04% | ||
eliaschess333 | 0 | 28,865,831,886 | 100% | ||
branbello | 0 | 1,255,927,955 | 35% | ||
bartheek | 0 | 281,275,498,613 | 69% | ||
hetty-rowan | 0 | 3,538,526,975 | 2.8% | ||
ydavgonzalez | 0 | 2,206,135,316 | 10% | ||
intrepidphotos | 0 | 19,168,670,211 | 52.5% | ||
fineartnow | 0 | 4,083,366,010 | 2.8% | ||
hijosdelhombre | 0 | 49,074,445,744 | 40% | ||
mathowl | 0 | 46,931,666,467 | 100% | ||
bobydimitrov | 0 | 488,264,515 | 4.2% | ||
yoghurt | 0 | 1,680,115,887 | 5.6% | ||
steemvault | 0 | 2,239,500,881 | 5.6% | ||
steem4all | 0 | 894,997,980 | 2.8% | ||
shinedojo | 0 | 670,728,111 | 5.6% | ||
fragmentarion | 0 | 16,343,967,190 | 70% | ||
bennettitalia | 0 | 1,950,439,496 | 2.8% | ||
utube | 0 | 3,959,316,094 | 5.6% | ||
jigstrike | 0 | 912,302,955 | 2.8% | ||
ahmedsy | 0 | 1,481,232,529 | 5.6% | ||
m1alsan | 0 | 505,907,657 | 5.6% | ||
dynamicrypto | 0 | 2,174,671,564 | 1% | ||
neneandy | 0 | 6,423,983,927 | 5.6% | ||
pab.ink | 0 | 752,011,047 | 35% | ||
real2josh | 0 | 661,181,182 | 35% | ||
sportscontest | 0 | 5,378,693,678 | 5.6% | ||
gribouille | 0 | 3,347,416,730 | 70% | ||
pandasquad | 0 | 14,707,074,493 | 5.6% | ||
leoumesh | 0 | 936,682,881 | 35% | ||
cool08 | 0 | 3,028,453,780 | 35% | ||
kingabesh | 0 | 1,425,366,818 | 35% | ||
miguelangel2801 | 0 | 796,864,349 | 50% | ||
mproxima | 0 | 2,820,987,320 | 2.8% | ||
fantasycrypto | 0 | 3,853,652,096 | 5.6% | ||
didic | 0 | 1,922,625,094 | 2.8% | ||
emiliomoron | 0 | 9,530,180,148 | 35% | ||
galam | 0 | 662,721,006 | 24.5% | ||
dexterdev | 0 | 2,887,818,712 | 35% | ||
crypto-mammoth | 0 | 504,760,850 | 2.8% | ||
nwjordan | 0 | 833,528,173 | 5.6% | ||
photohunt | 0 | 4,053,648,751 | 5.6% | ||
geopolis | 0 | 4,683,996,982 | 70% | ||
robertbira | 0 | 7,583,457,039 | 17.5% | ||
anikys3reasure | 0 | 809,363,709 | 15% | ||
alexdory | 0 | 11,167,751,071 | 70% | ||
takowi | 0 | 51,613,059,624 | 5.6% | ||
irgendwo | 0 | 22,129,153,021 | 5.6% | ||
vegan.niinja | 0 | 523,686,547 | 2.8% | ||
charitybot | 0 | 5,162,503,533 | 100% | ||
kieranstone | 0 | 1,638,564,453 | 1.84% | ||
bernardino | 0 | 698,231,937 | 2.8% | ||
melvin7 | 0 | 109,345,621,294 | 35% | ||
francostem | 0 | 9,754,242,673 | 70% | ||
russellstockley | 0 | 1,620,520,818 | 1.4% | ||
endopediatria | 0 | 695,806,150 | 20% | ||
steempampanga | 0 | 514,015,094 | 2.8% | ||
croctopus | 0 | 1,570,410,912 | 100% | ||
jjerryhan | 0 | 5,580,235,908 | 2.8% | ||
putu300 | 0 | 564,748,694 | 5% | ||
michelmake | 0 | 38,359,984,092 | 25% | ||
zipporah | 0 | 2,751,293,130 | 1.12% | ||
leomarylm | 0 | 1,951,390,268 | 2.8% | ||
superlotto | 0 | 13,680,805,930 | 5.6% | ||
positiveninja | 0 | 1,113,800,065 | 2.8% | ||
foxyspirit | 0 | 574,340,888 | 2.8% | ||
bscrypto | 0 | 14,767,587,483 | 2.8% | ||
vonaurolacu | 0 | 2,017,126,499 | 2.8% | ||
delpilar | 0 | 934,959,443 | 25% | ||
scottshots | 0 | 613,199,866 | 0.28% | ||
tomastonyperez | 0 | 17,118,554,130 | 50% | ||
bil.prag | 0 | 2,569,855,890 | 0.28% | ||
elvigia | 0 | 11,215,576,001 | 50% | ||
sanderjansenart | 0 | 5,601,879,640 | 2.8% | ||
vittoriozuccala | 0 | 2,233,169,261 | 2.8% | ||
qberry | 0 | 3,908,438,612 | 2.8% | ||
frissonsteemit | 0 | 1,269,013,222 | 2.8% | ||
broncofan99 | 0 | 9,223,608,924 | 20% | ||
rambutan.art | 0 | 2,099,542,882 | 5.6% | ||
flyerchen | 0 | 1,315,277,924 | 2.8% | ||
gadrian | 0 | 445,460,698,321 | 52.5% | ||
c0wtschpotato | 0 | 594,727,549 | 2.8% | ||
therising | 0 | 99,589,510,241 | 5.6% | ||
memepress | 0 | 1,148,537,148 | 34.5% | ||
cryptocoinkb | 0 | 2,216,825,751 | 2.8% | ||
gifty-e | 0 | 602,387,561 | 80% | ||
de-stem | 0 | 38,664,440,870 | 69.3% | ||
serylt | 0 | 3,236,575,900 | 68.6% | ||
me2selah | 0 | 905,011,916 | 2.8% | ||
josedelacruz | 0 | 4,918,137,020 | 50% | ||
legendchew | 0 | 49,632,408,367 | 100% | ||
kgakakillerg | 0 | 18,827,090,812 | 10% | ||
charitymemes | 0 | 534,493,884 | 100% | ||
mariusfebruary | 0 | 714,556,511 | 2.24% | ||
outtheshellvlog | 0 | 889,111,179 | 2.8% | ||
sawyn | 0 | 664,157,771 | 2.8% | ||
el-dee-are-es | 0 | 5,262,031,152 | 10% | ||
xawi | 0 | 18,934,478,292 | 30% | ||
we-are | 0 | 248,775,120 | 1.3% | ||
erickyoussif | 0 | 742,493,324 | 100% | ||
michaelwrites | 0 | 932,338,427 | 35% | ||
indigoocean | 0 | 1,179,167,043 | 2.8% | ||
deholt | 0 | 4,070,771,125 | 59.5% | ||
anneporter | 0 | 2,741,269,934 | 21% | ||
jancharlest | 0 | 1,852,031,125 | 34.5% | ||
steem.services | 0 | 1,084,846,791 | 1.12% | ||
ifeoluwa88 | 0 | 16,325,259,619 | 30% | ||
minerthreat | 0 | 3,739,972,826 | 2.8% | ||
meher04 | 0 | 1,401,162,384 | 30% | ||
temitayo-pelumi | 0 | 6,604,078,398 | 70% | ||
andrick | 0 | 866,365,209 | 50% | ||
doctor-cog-diss | 0 | 65,604,240,438 | 70% | ||
marcuz | 0 | 2,448,776,600 | 35% | ||
acont | 0 | 7,105,379,991 | 50% | ||
uche-nna | 0 | 7,083,811,189 | 4.48% | ||
barbz | 0 | 102,124,222,738 | 100% | ||
ajongcrypto | 0 | 904,958,606 | 30% | ||
we-are-lucky | 0 | 245,241,889 | 0.7% | ||
cheese4ead | 0 | 4,800,537,901 | 2.8% | ||
jd4e | 0 | 3,739,870,996 | 50% | ||
mafufuma | 0 | 4,614,629,335 | 1% | ||
apshamilton | 0 | 14,658,766,062 | 0.7% | ||
longer | 0 | 6,091,930,398 | 17.25% | ||
nattybongo | 0 | 156,888,110,924 | 70% | ||
drsensor | 0 | 1,582,840,669 | 56% | ||
revueh | 0 | 2,009,940,829 | 35% | ||
ilovecryptopl | 0 | 906,715,858 | 4.48% | ||
purelyscience | 0 | 536,710,580 | 35% | ||
bflanagin | 0 | 2,176,149,950 | 1.4% | ||
mightypanda | 0 | 1,573,043,077 | 48.3% | ||
ubaldonet | 0 | 2,773,864,858 | 80% | ||
armandosodano | 0 | 3,665,322,470 | 2.8% | ||
yourmind | 0 | 7,213,772,208 | 100% | ||
marivic10 | 0 | 1,630,085,542 | 2.8% | ||
hamismsf | 0 | 4,640,275,020 | 0.7% | ||
goblinknackers | 0 | 74,776,643,026 | 7% | ||
thales7 | 0 | 642,249,518 | 5.6% | ||
zuerich | 0 | 421,941,296,523 | 10% | ||
anttn | 0 | 26,410,717,806 | 2.8% | ||
reinaseq | 0 | 7,461,262,770 | 100% | ||
vixmemon | 0 | 1,722,792,007 | 4.2% | ||
yaelg | 0 | 1,212,075,361 | 1.68% | ||
cubapl | 0 | 4,414,735,355 | 35% | ||
fran.frey | 0 | 4,214,477,344 | 50% | ||
perpetuum-lynx | 0 | 2,169,188,309 | 68.6% | ||
thelittlebank | 0 | 20,584,568,408 | 2.8% | ||
pboulet | 0 | 135,898,408,435 | 56% | ||
javyeslava.photo | 0 | 528,534,891 | 2.24% | ||
stem-espanol | 0 | 1,929,528,953 | 100% | ||
voter001 | 0 | 2,942,386,006 | 2.9% | ||
cliffagreen | 0 | 4,767,647,036 | 10% | ||
aleestra | 0 | 12,624,045,466 | 80% | ||
rowell | 0 | 1,592,135,482 | 5.6% | ||
palasatenea | 0 | 3,156,597,609 | 2.8% | ||
the.success.club | 0 | 3,166,972,978 | 2.8% | ||
javier.dejuan | 0 | 537,464,459 | 70% | ||
amansharma555 | 0 | 595,961,049 | 100% | ||
meanroosterfarm | 0 | 1,405,874,326 | 35% | ||
tommyl33 | 0 | 787,544,622 | 2.8% | ||
merlin7 | 0 | 11,151,822,358 | 5.6% | ||
brianoflondon | 0 | 83,403,427,627 | 1.4% | ||
giulyfarci52 | 0 | 1,722,948,742 | 50% | ||
followjohngalt | 0 | 851,636,731 | 5.6% | ||
steemcryptosicko | 0 | 9,237,731,238 | 1.12% | ||
certain | 0 | 1,553,094,818 | 0.67% | ||
alvin0617 | 0 | 489,066,440 | 2.8% | ||
multifacetas | 0 | 1,652,123,915 | 2.8% | ||
cakemonster | 0 | 2,780,445,218 | 5.6% | ||
cowpatty | 0 | 1,476,048,598 | 35% | ||
stem.witness | 0 | 4,220,861,482 | 70% | ||
witkowskipawel | 0 | 995,530,186 | 2.8% | ||
pandapuzzles | 0 | 8,304,550,659 | 100% | ||
jpbliberty | 0 | 8,425,441,576 | 1.4% | ||
autobodhi | 0 | 1,016,270,853 | 5.6% | ||
mechanicalowl | 0 | 658,743,302 | 50% | ||
regularowl | 0 | 1,177,201,366 | 50% | ||
solox | 0 | 989,386,867 | 5.6% | ||
alex-hm | 0 | 518,444,337 | 20.7% | ||
vaultec | 0 | 6,457,538,977 | 12% | ||
steemstorage | 0 | 6,666,699,556 | 5.6% | ||
steemegg | 0 | 1,090,326,239 | 2.8% | ||
ragnarhewins90 | 0 | 472,741,796 | 10% | ||
jtm.support | 0 | 5,435,521,477 | 70% | ||
edithbdraw | 0 | 799,861,296 | 2.8% | ||
crowdwitness | 0 | 190,422,740,805 | 35% | ||
hairgistix | 0 | 3,263,608,398 | 2.8% | ||
bluemaskman | 0 | 643,737,771 | 2.8% | ||
steemean | 0 | 9,998,395,118 | 5% | ||
proxy-pal | 0 | 1,336,168,438 | 5.6% | ||
kryptogames | 0 | 83,939,677,070 | 69% | ||
dawnoner | 0 | 1,881,149,633 | 0.56% | ||
photographercr | 0 | 2,073,679,236 | 1.12% | ||
epicdice | 0 | 1,922,844,202 | 1.68% | ||
robibasa | 0 | 17,766,553,886 | 10% | ||
beerlover | 0 | 2,198,024,250 | 1.68% | ||
tinyhousecryptos | 0 | 473,135,209 | 5% | ||
tggr | 0 | 1,339,607,482 | 2.8% | ||
aicu | 0 | 1,461,222,924 | 5.6% | ||
afarina46 | 0 | 1,950,435,249 | 35% | ||
cryptogambit | 0 | 1,441,173,811 | 7.5% | ||
waraira777 | 0 | 1,258,482,595 | 35% | ||
imbartley | 0 | 834,495,943 | 26.25% | ||
h-hamilton | 0 | 1,125,161,721 | 2.8% | ||
tiffin | 0 | 825,492,197 | 5.6% | ||
reggaesteem | 0 | 487,783,142 | 5% | ||
akomoajong1 | 0 | 1,021,899,814 | 30% | ||
aicoding | 0 | 583,695,422 | 2.8% | ||
beta500 | 0 | 3,758,088,226 | 5.6% | ||
dechuck | 0 | 11,761,040,412 | 70% | ||
knightsunited | 0 | 860,575,000 | 5.6% | ||
nazer | 0 | 2,740,821,953 | 35% | ||
marriakjozhegp | 0 | 1,159,509,816 | 30% | ||
bcm | 0 | 6,257,561,200 | 51.75% | ||
steemstem-trig | 0 | 1,464,226,932 | 70% | ||
baltai | 0 | 6,216,467,453 | 2.8% | ||
dappstats | 0 | 4,695,140,097 | 15% | ||
chris-uk | 0 | 1,122,760,083 | 2.8% | ||
atheistrepublic | 0 | 6,781,080,067 | 2.8% | ||
machan | 0 | 713,847,513 | 2.8% | ||
ibt-survival | 0 | 31,459,168,088 | 10% | ||
hjmarseille | 0 | 2,092,966,683 | 49% | ||
steemdiamond | 0 | 722,672,232 | 5.6% | ||
zirky | 0 | 2,868,581,910 | 4.76% | ||
gloriaolar | 0 | 1,560,964,040 | 1.68% | ||
lightpaintershub | 0 | 430,342,912 | 1% | ||
julesquirin | 0 | 4,968,373,149 | 13.8% | ||
davidlionfish | 0 | 17,630,123,470 | 50% | ||
andreina57 | 0 | 694,428,002 | 35% | ||
krisconkr | 0 | 491,246,056 | 2.8% | ||
stemsocial | 0 | 588,026,877,393 | 70% | ||
peterpanpan | 0 | 754,891,857 | 1.12% | ||
mami.sheh7 | 0 | 838,767,812 | 15% | ||
the100 | 0 | 1,349,046,332 | 2.8% | ||
hiveonboard | 0 | 896,351,641 | 2.1% | ||
hivelist | 0 | 2,549,223,172 | 1.68% | ||
noelyss | 0 | 19,877,883,447 | 35% | ||
forkyishere | 0 | 489,943,153 | 2.8% | ||
jsalvage | 0 | 921,861,994 | 35% | ||
logicforce | 0 | 507,031,899 | 9.9% | ||
quinnertronics | 0 | 15,913,478,607 | 7% | ||
anafae | 0 | 610,926,828 | 1.12% | ||
hivecoffee | 0 | 667,132,811 | 5.6% | ||
brofund-ag | 0 | 1,010,476,511 | 30% | ||
sevenoh-fiveoh | 0 | 990,986,954 | 2.8% | ||
artsyproxy | 0 | 477,630,233 | 5.6% | ||
altleft | 0 | 23,846,280,393 | 0.05% | ||
noalys | 0 | 1,341,048,310 | 2.8% | ||
gonklavez9 | 0 | 1,311,935,713 | 70% | ||
blezyn | 0 | 1,399,411,893 | 2.8% | ||
koshwe | 0 | 895,474,650 | 50% | ||
cosplay.hadr | 0 | 1,275,640,209 | 5.6% | ||
hadrgames | 0 | 1,315,740,363 | 5.6% | ||
rawecz | 0 | 595,755,612 | 5.6% | ||
maar | 0 | 667,170,753 | 70% | ||
meritocracy | 0 | 63,456,542,726 | 0.56% | ||
jmsansan | 0 | 4,675,897,260 | 2.8% | ||
blockbroccoli | 0 | 981,982,126 | 62.1% | ||
dcrops | 0 | 35,841,540,039 | 2.8% | ||
rondonshneezy | 0 | 512,706,697 | 2.8% | ||
hive-129556 | 0 | 1,899,624,315 | 100% | ||
photochain | 0 | 272,364,175 | 100% | ||
yozen | 0 | 2,105,705,762 | 2.8% | ||
eturnerx-dbuzz | 0 | 3,039,103,994 | 8.9% | ||
tawadak24 | 0 | 623,158,276 | 2.8% | ||
ausbit.dev | 0 | 572,799,860 | 2.8% | ||
elgatoshawua | 0 | 680,826,508 | 2.8% | ||
limn | 0 | 954,653,756 | 2.8% | ||
nyxlabs | 0 | 592,695,513 | 3.5% | ||
dodovietnam | 0 | 2,980,144,113 | 2.8% | ||
mayorkeys | 0 | 2,606,067,165 | 30% | ||
oahb132 | 0 | 921,808,862 | 35% | ||
failingforwards | 0 | 3,301,039,281 | 2.8% | ||
trouvaille | 0 | 735,245,908 | 2.8% | ||
joseluis91 | 0 | 822,969,592 | 5.6% | ||
maxelitereturned | 0 | 594,926,034 | 35% | ||
trippymane | 0 | 1,776,209,008 | 5.6% | ||
nfttunz | 0 | 8,295,507,265 | 0.56% | ||
okluvmee | 0 | 2,753,997,895 | 2.8% | ||
atexoras.pub | 0 | 1,612,274,516 | 2.8% | ||
merit.ahama | 0 | 28,654,791,953 | 9% | ||
holovision.cash | 0 | 2,748,608,284 | 100% | ||
krrizjos18 | 0 | 3,148,367,342 | 35% | ||
memesupport | 0 | 1,379,294,118 | 30% | ||
hubeyma | 0 | 895,931,843 | 2.8% | ||
mirteg | 0 | 729,094,466 | 5.6% | ||
sarashew | 0 | 4,080,403,945 | 5.6% | ||
podping | 0 | 8,551,446,458 | 1.4% | ||
nabu.doconosor2 | 0 | 1,624,429,884 | 35% | ||
drhueso | 0 | 1,425,591,107 | 2.8% | ||
pinkfloyd878 | 0 | 4,249,784,798 | 100% | ||
janetfund | 0 | 27,335,428,528 | 100% | ||
mario02 | 0 | 772,424,533 | 2.8% | ||
badge-646464 | 0 | 1,761,491,088 | 100% | ||
sidalim88 | 0 | 3,738,509,749 | 2.8% | ||
aries90 | 0 | 46,052,358,984 | 5.6% | ||
rencongland | 0 | 588,069,931 | 2.8% | ||
cugel | 0 | 2,388,215,311 | 2.8% | ||
acantoni | 0 | 688,200,805 | 2.8% | ||
migka | 0 | 4,430,273,238 | 90% | ||
blingit | 0 | 3,598,402,792 | 2.8% | ||
mcsherriff | 0 | 566,124,216 | 5.6% | ||
h3m4n7 | 0 | 871,379,113 | 2.8% | ||
jude9 | 0 | 513,854,582 | 17.5% | ||
yixn | 0 | 35,175,438,337 | 2.8% | ||
kqaosphreak | 0 | 5,263,854,529 | 70% | ||
alt3r | 0 | 491,528,039 | 4.31% | ||
waivio.curator | 0 | 1,576,619,852 | 2.98% | ||
simsahas | 0 | 2,791,245,677 | 5.6% | ||
aichanbot | 0 | 2,164,620,947 | 5.6% | ||
ehizgabriel | 0 | 661,775,158 | 34.5% | ||
noctury | 0 | 520,688,826 | 2.8% | ||
checkyzk | 0 | 26,427,522,283 | 98% | ||
deadleaf | 0 | 4,043,176,287 | 100% | ||
lichtkunstfoto | 0 | 5,679,688,592 | 5.6% | ||
stefy.music | 0 | 575,423,885 | 2.8% | ||
blacktarri | 0 | 1,780,743,075 | 2.8% | ||
lukasbachofner | 0 | 2,453,371,036 | 2.8% | ||
allentaylor | 0 | 1,243,134,639 | 2.8% | ||
sam9999 | 0 | 5,322,425,158 | 35% | ||
benwickenton | 0 | 2,666,296,908 | 5.6% | ||
blackdaisyft | 0 | 17,856,819,786 | 50% | ||
andre.btc | 0 | 1,138,401,204 | 4.48% | ||
henrietta27 | 0 | 1,712,168,050 | 2.8% | ||
blockgolem | 0 | 499,129,171 | 5.6% | ||
jmis101 | 0 | 4,250,661,780 | 10% | ||
balabambuz | 0 | 714,932,728 | 2.8% | ||
prosocialise | 0 | 59,462,298,770 | 35% | ||
bhdc | 0 | 2,094,068,391 | 5.6% | ||
archangel21 | 0 | 3,687,078,571 | 5.6% | ||
matilei | 0 | 1,321,662,096 | 5.6% | ||
filmmaking4hive | 0 | 2,230,845,367 | 5.6% | ||
amafable07 | 0 | 936,064,670 | 35% | ||
mugueto2022 | 0 | 550,835,145 | 20% | ||
ricardoeloy | 0 | 1,966,872,960 | 14% | ||
nazom | 0 | 741,116,582 | 35% | ||
baboz | 0 | 1,476,817,432 | 1.4% | ||
sbtofficial | 0 | 4,731,106,388 | 2.8% | ||
eunice9200 | 0 | 11,178,119,033 | 100% | ||
protokkol | 0 | 2,302,653,308 | 30% | ||
vagabond42069 | 0 | 1,520,078,785 | 35% | ||
inibless | 0 | 1,680,754,382 | 35% | ||
cindynancy | 0 | 938,572,894 | 15% | ||
sc000 | 0 | 1,451,472,967 | 5.6% | ||
pinkchic | 0 | 506,295,354 | 0.84% | ||
vankushfamily | 0 | 672,072,438 | 35% | ||
jijisaurart | 0 | 1,350,965,380 | 2.8% | ||
tuba777 | 0 | 1,573,822,220 | 35% | ||
depressedfuckup | 0 | 12,355,525,626 | 30% | ||
bananzell | 0 | 25,518,405,916 | 100% | ||
rubilu | 0 | 5,277,194,317 | 50% | ||
clpacksperiment | 0 | 2,381,573,888 | 2.8% | ||
humbe | 0 | 1,439,235,520 | 1% | ||
moremoney28 | 0 | 2,899,023,737 | 15% | ||
peniel2010 | 0 | 889,462,418 | 50% | ||
technico | 0 | 849,338,284 | 2.8% | ||
abu78 | 0 | 21,233,461,161 | 15% | ||
miztajovial | 0 | 641,548,428 | 15% | ||
arduilcelebren | 0 | 619,106,137 | 2.8% | ||
opticus | 0 | 1,253,454,309 | 2.8% | ||
hikergirl | 0 | 503,766,380 | 2.8% | ||
the-lead | 0 | 588,419,781 | 15% | ||
lettinggotech | 0 | 1,294,191,860 | 2.8% | ||
rhemagames | 0 | 5,261,350,219 | 2.8% | ||
soylegionario | 0 | 2,538,560,703 | 5.6% | ||
samueluche07 | 0 | 664,974,444 | 15% | ||
dev.maverick | 0 | 922,340,223 | 5.6% | ||
adeade123 | 0 | 491,414,300 | 15% |
@tipu curate 8
author | esalcedo |
---|---|
permlink | re-eniolw-s7kedi |
category | hive-139531 |
json_metadata | {"tags":["hive-139531"],"app":"peakd/2023.11.3"} |
created | 2024-01-20 14:46:39 |
last_update | 2024-01-20 14:46:39 |
depth | 1 |
children | 1 |
last_payout | 2024-01-27 14:46:39 |
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 | 15 |
author_reputation | 114,852,809,791,900 |
root_title | "My Coding Quiz #40" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 130,633,769 |
net_rshares | 0 |
<a href="https://tipu.online/hive_curator?esalcedo" target="_blank">Upvoted 👌</a> (Mana: 0/69) <a href="https://peakd.com/hive/@reward.app/reward-app-quick-guide-updated" target="_blank">Liquid rewards</a>.
author | tipu |
---|---|
permlink | re-re-eniolw-s7kedi-20240120t144648z |
category | hive-139531 |
json_metadata | "{"app": "beem/0.24.26"}" |
created | 2024-01-20 14:46:48 |
last_update | 2024-01-20 14:46:48 |
depth | 2 |
children | 0 |
last_payout | 2024-01-27 14:46:48 |
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 | 215 |
author_reputation | 55,921,946,728,577 |
root_title | "My Coding Quiz #40" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 130,633,772 |
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-40-20240120t235923719z |
category | hive-139531 |
json_metadata | {"app":"STEMsocial"} |
created | 2024-01-20 23:59:24 |
last_update | 2024-01-20 23:59:24 |
depth | 1 |
children | 0 |
last_payout | 2024-01-27 23:59: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 | 565 |
author_reputation | 22,918,491,691,707 |
root_title | "My Coding Quiz #40" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 130,644,219 |
net_rshares | 0 |