{"id":63408,"date":"2026-08-10T14:56:40","date_gmt":"2026-08-10T06:56:40","guid":{"rendered":"https:\/\/nightfame.com\/style\/?p=63408"},"modified":"2026-08-10T16:16:30","modified_gmt":"2026-08-10T08:16:30","slug":"chapter-1-the-explicit-price-the-implicit-value-oracle","status":"publish","type":"post","link":"https:\/\/nightfame.com\/style\/chapter-1-the-explicit-price-the-implicit-value-oracle\/","title":{"rendered":"Chapter 1: The Explicit Price &#8211; The Implicit Value Oracle"},"content":{"rendered":"<div class=\"wp-block-image\">\n<figure class=\"aligncenter size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"500\" height=\"333\" src=\"https:\/\/nightfame.com\/style\/wp-content\/uploads\/2026\/08\/The-Implicit-Value-Oracle-Chapter-1-The-Explicit-Price-500x333.jpg\" alt=\"\" class=\"wp-image-63409\" srcset=\"https:\/\/nightfame.com\/style\/wp-content\/uploads\/2026\/08\/The-Implicit-Value-Oracle-Chapter-1-The-Explicit-Price-500x333.jpg 500w, https:\/\/nightfame.com\/style\/wp-content\/uploads\/2026\/08\/The-Implicit-Value-Oracle-Chapter-1-The-Explicit-Price-200x133.jpg 200w, https:\/\/nightfame.com\/style\/wp-content\/uploads\/2026\/08\/The-Implicit-Value-Oracle-Chapter-1-The-Explicit-Price-768x512.jpg 768w, https:\/\/nightfame.com\/style\/wp-content\/uploads\/2026\/08\/The-Implicit-Value-Oracle-Chapter-1-The-Explicit-Price.jpg 1500w\" sizes=\"auto, (max-width: 500px) 100vw, 500px\" \/><\/figure><\/div>\n\n\n<p><\/p>\n\n\n\n<p>The blue glow of four monitors washed over Leo&#8217;s face as he sat cross-legged in his desk chair, the worn fabric sagging beneath him like an old friend. His bedroom had transformed over the past eighteen months from a typical teenager&#8217;s space\u2014posters, sports equipment, clothes scattered on the floor\u2014into something that resembled a mission control center. Cables snaked across the carpet in organized chaos. A small server tower hummed quietly in the corner, its cooling fans cycling on and off in a rhythm Leo had long since stopped noticing. Empty energy drink cans formed a small pyramid on his windowsill, a monument to late nights and obsessive focus.<\/p>\n\n\n\n<p>It was 11:47 PM on a Tuesday. Tomorrow was a school day. Leo didn&#8217;t care.<\/p>\n\n\n\n<p>On his primary monitor, a custom-built dashboard displayed a cascade of data visualizations\u2014colorful charts tracking transaction volumes, active wallet addresses, smart contract interactions, and a dozen other metrics across seven different blockchain networks. The numbers flowed in real-time, updating every few seconds as blocks were validated and added to chains thousands of miles away in server farms Leo would never see.<\/p>\n\n\n\n<p>His fingers danced across the keyboard, executing queries that would have made professional data scientists pause with respect. Leo wasn&#8217;t a professional anything\u2014he was seventeen years old, a junior at Westbrook Academy, and self-taught in everything he knew about blockchain technology, cryptography, and data analysis.<\/p>\n\n\n\n<p>The journey had started two years ago when Leo&#8217;s older brother, Marcus, had come home from college talking about this &#8220;weird internet money thing.&#8221; Marcus had been excited, passionate, convinced that blockchain technology would change the world. Leo had been skeptical at first\u2014it all seemed like complicated math for no reason. But Marcus had given him a small amount of cryptocurrency to play with, and Leo had fallen down the rabbit hole.<\/p>\n\n\n\n<p>Now Marcus was working at a tech startup in another city, and Leo was the one staying up until 3 AM writing code.<\/p>\n\n\n\n<p>&#8220;Okay,&#8221; Leo muttered to himself, his voice barely above a whisper. &#8220;Let&#8217;s run this again with the weighted correlation.&#8221;<\/p>\n\n\n\n<p>He pulled up a new query window and began typing:<\/p>\n\n\n\n<p>python<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">def calculate_correlation(chain_data, price_history, time_lag=14):\n    \"\"\"\n    Calculate correlation between on-chain activity and price movements\n    with a specified time lag.\n    \"\"\"\n    activity_score = []\n    for day in range(len(chain_data) - time_lag):\n        <em># Weighted combination of multiple metrics<\/em>\n        tx_weight = chain_data['transactions'][day] * 0.35\n        address_weight = chain_data['active_addresses'][day] * 0.25\n        contract_weight = chain_data['contract_interactions'][day] * 0.40\n        \n        activity_score.append(tx_weight + address_weight + contract_weight)\n    \n    <em># Compare activity score with price history shifted by time_lag<\/em>\n    correlation = stats.pearsonr(activity_score, price_history[time_lag:])\n    return correlation<\/pre>\n\n\n\n<p>Leo ran the script and watched the results populate on his secondary monitor. The correlation coefficient appeared: 0.87. That was strong. Very strong.<\/p>\n\n\n\n<p>&#8220;Okay, that&#8217;s interesting,&#8221; he said, leaning forward. &#8220;But let&#8217;s dig deeper.&#8221;<\/p>\n\n\n\n<p>He clicked through to a third monitor, which displayed a detailed breakdown of a specific project\u2014a decentralized finance protocol called AetherSwap. It was a relatively small project, not one of the giants that dominated headlines and trading volume. But that was precisely why Leo was interested in it.<\/p>\n\n\n\n<p>AetherSwap had been launched about eight months ago. It had a modest but growing user base, a development team that seemed active, and a token that was&#8230; well, Leo stared at the numbers, frowning.<\/p>\n\n\n\n<p>The token was trading at exactly $1.02 at current market prices. That was its &#8220;explicit price&#8221;\u2014the number that showed up on exchanges, the number that traders saw when they pulled up a chart, the number that the Price Oracle reported to smart contracts across the blockchain ecosystem.<\/p>\n\n\n\n<p>But the on-chain data told a different story.<\/p>\n\n\n\n<p>Leo pulled up his custom metric\u2014something he&#8217;d been developing for months, a system he&#8217;d tentatively started calling the &#8220;Network Activity Index.&#8221; It combined multiple data points into a single score:<\/p>\n\n\n\n<ol start=\"1\" class=\"wp-block-list\">\n<li><strong>Transaction Volume:<\/strong>\u00a0The total value of tokens moved through AetherSwap&#8217;s smart contracts each day. This had increased by 340% over the past three months.<\/li>\n\n\n\n<li><strong>Active Addresses:<\/strong>\u00a0The number of unique wallet addresses interacting with the protocol each week. This had grown from 1,200 to 8,700 in the same period.<\/li>\n\n\n\n<li><strong>Smart Contract Interactions:<\/strong>\u00a0The frequency with which users called AetherSwap&#8217;s functions\u2014swapping tokens, providing liquidity, claiming rewards. This was up 280%.<\/li>\n\n\n\n<li><strong>Network Density:<\/strong>\u00a0Leo&#8217;s own creation\u2014a measure of how interconnected users were, how many different addresses were interacting with each other through the protocol. This had increased by 190%.<\/li>\n\n\n\n<li><strong>Developer Activity:<\/strong>\u00a0The number of code commits to the project&#8217;s repository, which Leo tracked through a separate API. The team was pushing updates almost daily.<\/li>\n<\/ol>\n\n\n\n<p>Leo ran his aggregation algorithm, which assigned different weights to each metric based on historical importance. The result appeared on his screen:<\/p>\n\n\n\n<p><strong>AetherSwap Implicit Value Estimate: $5.23<\/strong><\/p>\n\n\n\n<p>Leo blinked. He rubbed his eyes. He ran the calculation again.<\/p>\n\n\n\n<p>$5.23.<\/p>\n\n\n\n<p>&#8220;Impossible,&#8221; he whispered. But the data was right in front of him\u2014transaction volume was through the roof, user adoption was accelerating, and yet the price had barely budged from the $1.00 range it had been in for months.<\/p>\n\n\n\n<p>Leo leaned back in his chair, the springs creaking in protest. His mind was racing. He&#8217;d been working on this implicit value theory for weeks now, ever since he&#8217;d noticed a strange pattern in the data\u2014assets that seemed undervalued relative to their on-chain activity. But this was the clearest example he&#8217;d seen yet.<\/p>\n\n\n\n<p>He pulled up the historical price chart for AetherSwap alongside his Network Activity Index. The two lines should have moved together if the market was efficiently pricing in all available information. They didn&#8217;t.<\/p>\n\n\n\n<p>The activity index had been climbing steadily for three months, a smooth upward curve that spoke to genuine user interest and adoption. The price, meanwhile, had been all over the place\u2014a brief spike in March that had quickly faded, a slow decline in April, a minor recovery in May. But overall, it had stayed stubbornly in the $0.90-$1.10 range.<\/p>\n\n\n\n<p>&#8220;The market is blind,&#8221; Leo said, a smile spreading across his face. &#8220;It&#8217;s completely blind to what&#8217;s actually happening.&#8221;<\/p>\n\n\n\n<p>He started pacing his room, something he always did when he was on the verge of a breakthrough. His feet traced familiar paths in the carpet, worn thin from countless nights of pacing.<\/p>\n\n\n\n<p>Think about it, Leo told himself. What is price? Price is what someone is willing to pay for something at a given moment. It&#8217;s a snapshot of supply and demand\u2014but it&#8217;s also a snapshot of&nbsp;<em>perception<\/em>. If people don&#8217;t know something is valuable, they won&#8217;t pay for it.<\/p>\n\n\n\n<p>But what is value? Value is&#8230; well, value is what something actually does. It&#8217;s the utility it provides. It&#8217;s the network it creates. It&#8217;s the activity it generates.<\/p>\n\n\n\n<p>Leo stopped pacing and stared at his monitors.<\/p>\n\n\n\n<p>&#8220;Price is what people think something is worth,&#8221; he said slowly. &#8220;But implicit value is what people&nbsp;<em>do<\/em>&nbsp;with it. Price is opinion. Implicit value is reality.&#8221;<\/p>\n\n\n\n<p>He thought back to something his economics teacher had said last semester, something that had stuck with him: &#8220;The market is efficient in the long run because all information eventually gets priced in.&#8221; But what if there was information that the market couldn&#8217;t see? What if the market was using the wrong metrics?<\/p>\n\n\n\n<p>The Price Oracle\u2014that was the name for the systems that fed price data to smart contracts across the blockchain. They were simple, straightforward. They took prices from exchanges and reported them. They were the &#8220;truth&#8221; that the entire ecosystem relied on.<\/p>\n\n\n\n<p>But they were also limited. They could only see what the market had already decided. They couldn&#8217;t see what the market was missing.<\/p>\n\n\n\n<p>Leo sat back down at his desk and opened a new document. He started typing:<\/p>\n\n\n\n<p><strong>&#8220;Implicit Value Hypothesis&#8221;<\/strong><\/p>\n\n\n\n<p><strong>Thesis:<\/strong>&nbsp;On-chain data\u2014transaction volume, active addresses, smart contract interactions, network effects\u2014reveals &#8220;implicit value&#8221; that is not reflected in market price. This value represents the true worth of an asset based on actual usage and adoption.<\/p>\n\n\n\n<p><strong>Evidence:<\/strong>&nbsp;Analysis of 50 blockchain projects shows a consistent pattern\u2014projects with high on-chain activity but low market prices are significantly undervalued. The market is slow to price in fundamental improvements.<\/p>\n\n\n\n<p><strong>Examples:<\/strong>&nbsp;AetherSwap token currently trades at $1.02 despite activity metrics suggesting a value of $5.23.<\/p>\n\n\n\n<p><strong>Implications:<\/strong>&nbsp;If implicit value can be reliably measured, it represents a significant arbitrage opportunity. Buying undervalued assets before the market realizes their true value could generate substantial returns.<\/p>\n\n\n\n<p>Leo paused. His fingers hovered over the keyboard.<\/p>\n\n\n\n<p>&#8220;I need to test this,&#8221; he said. &#8220;I need to actually trade on this signal and see if it works.&#8221;<\/p>\n\n\n\n<p>But there was a problem. Leo had never done any serious trading. His crypto holdings were small\u2014a few hundred dollars worth of tokens he&#8217;d bought with money from his part-time job at the local bookstore. He wasn&#8217;t a trader. He was just a kid who was really good at analyzing data.<\/p>\n\n\n\n<p>&#8220;Maybe I need help,&#8221; he admitted.<\/p>\n\n\n\n<p>The thought made him uncomfortable. Leo wasn&#8217;t good at asking for help. He wasn&#8217;t good at working with other people, period. He preferred the company of his computers and his code. They were predictable. They followed the rules. They never asked him to explain his feelings.<\/p>\n\n\n\n<p>But he needed someone who understood markets. Someone who actually knew how to trade.<\/p>\n\n\n\n<p>His mind drifted to Maya. She was in his AP Statistics class, a quiet girl with sharp eyes who always seemed to be paying attention to something no one else could see. Leo had heard through the grapevine that she was into crypto trading\u2014apparently, she&#8217;d been making decent money since sophomore year. He&#8217;d also heard she was tough to work with, that she didn&#8217;t suffer fools, and that she wouldn&#8217;t waste time on anything that wasn&#8217;t worth her while.<\/p>\n\n\n\n<p>Leo had never had a real conversation with her.<\/p>\n\n\n\n<p>He looked at his phone. It was past midnight now. Too late to reach out. But tomorrow&#8230; maybe tomorrow he could talk to her.<\/p>\n\n\n\n<p>His eyes drifted back to the dashboard. AetherSwap was still trading at $1.02. The implicit value was still $5.23. The gap was still there, waiting to be exploited.<\/p>\n\n\n\n<p>Leo felt something he hadn&#8217;t felt in a long time. It was a mixture of excitement and nervous energy, the same feeling he got when he was about to solve a really difficult puzzle. He was onto something. He could feel it.<\/p>\n\n\n\n<p>But as he continued to analyze the data, he noticed something else. A new entry in the transaction history for AetherSwap. A wallet address he&#8217;d never seen before had made a significant purchase.<\/p>\n\n\n\n<p>Leo traced the activity. The wallet had appeared just two days ago and had already made three large buys. Someone else was accumulating AetherSwap tokens.<\/p>\n\n\n\n<p>&#8220;Interesting,&#8221; Leo muttered. &#8220;Who are you?&#8221;<\/p>\n\n\n\n<p>He tried to trace the wallet further, but it was cleverly configured\u2014the transactions were routed through multiple layers of privacy protocols. Whoever this was, they knew what they were doing.<\/p>\n\n\n\n<p>Leo scrolled back through the transaction history and noticed something else. The wallet wasn&#8217;t just buying AetherSwap. It was also accumulating tokens for several other projects that Leo had flagged as potentially undervalued.<\/p>\n\n\n\n<p>The same projects. The same patterns.<\/p>\n\n\n\n<p>&#8220;Someone else is using a similar strategy,&#8221; Leo realized. &#8220;Someone else has figured out that on-chain data reveals hidden value.&#8221;<\/p>\n\n\n\n<p>The thought was both exciting and unnerving. Exciting because it meant his hypothesis might be correct\u2014there was real value in this approach. Unnerving because it meant he wasn&#8217;t the only one who&#8217;d noticed.<\/p>\n\n\n\n<p>Leo minimized the transaction history and went back to his own analysis. He had more work to do. He needed to refine his algorithm, test it against more data, and figure out exactly how accurate his implicit value estimates really were.<\/p>\n\n\n\n<p>He worked through the night, his monitors casting their blue glow across his face as the hours ticked by. Outside his window, the city slowly fell silent and then began to stir again as dawn approached.<\/p>\n\n\n\n<p>At 5:47 AM, Leo finally leaned back in his chair, exhausted but satisfied. He&#8217;d run his analysis on fifty different blockchain projects, compared implicit value estimates to actual price movements over the past six months, and refined his weighting system based on what he&#8217;d learned.<\/p>\n\n\n\n<p>The results were clear: on-chain activity consistently predicted price movements, with an average lag of fourteen days. The data wasn&#8217;t just correlating\u2014it was leading.<\/p>\n\n\n\n<p>Leo opened his journal, a worn notebook that sat next to his keyboard. He wrote carefully:<\/p>\n\n\n\n<p><em>&#8220;Implicit Value Hypothesis: Price follows usage, not the other way around. On-chain data reveals what people actually value, not what they say they value. The market takes time to catch up. That gap is where opportunity lives.&#8221;<\/em><\/p>\n\n\n\n<p>He closed the notebook and looked at the clock. School started in three hours. He needed sleep. But before he could even think about closing his eyes, he opened a new chat window on his phone.<\/p>\n\n\n\n<p>His fingers hesitated over the screen. Maya&#8217;s contact info was there, from a class group project months ago. He&#8217;d never messaged her privately.<\/p>\n\n\n\n<p><em>&#8220;Hi, this is Leo from AP Stats. I&#8217;ve been working on something you might find interesting. Can we talk tomorrow?&#8221;<\/em><\/p>\n\n\n\n<p>He stared at the message for a long moment. Then, before he could overthink it, he hit send.<\/p>\n\n\n\n<p>Leo powered down his monitors and collapsed onto his bed, his mind still racing with numbers and patterns and possibilities. As he drifted toward sleep, one thought kept circling back:<\/p>\n\n\n\n<p><em>Implicit value isn&#8217;t just about money. It&#8217;s about seeing what others can&#8217;t see. It&#8217;s about understanding the truth beneath the surface.<\/em><\/p>\n\n\n\n<p><em>Price is what you pay. Implicit value is what you get.<\/em><\/p>\n\n\n\n<p><em>And I&#8217;m going to prove it.<\/em><\/p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<p>The next morning, Leo woke to the harsh buzz of his alarm clock. His phone screen glowed with a notification. He fumbled for it, squinting against the light.<\/p>\n\n\n\n<p>Maya had replied:&nbsp;<em>&#8220;I&#8217;m intrigued. What are you working on?&#8221;<\/em><\/p>\n\n\n\n<p>Leo smiled. The sun was streaming through his window, and for the first time in weeks, he felt like he was exactly where he was supposed to be.<\/p>\n\n\n\n<p class=\"has-medium-font-size\"><strong><em>Table of contents:<\/em><\/strong><br><a href=\"https:\/\/nightfame.com\/style\/the-implicit-value-oracle-science-fiction-story\/\">Introduction<\/a><br><a href=\"https:\/\/nightfame.com\/style\/chapter-1-the-explicit-price-the-implicit-value-oracle\/\">Chapter 1: The Explicit Price<\/a><br><a href=\"https:\/\/nightfame.com\/style\/chapter-2-a-hidden-value-the-implicit-value-oracle\/\">Chapter 2: A Hidden Value<\/a> <strong>&lt;&lt;&lt;&lt;&lt;&lt; NEXT<\/strong><br><a href=\"https:\/\/nightfame.com\/style\/chapter-3-the-implicit-value-discovery-the-implicit-value-oracle\/\">Chapter 3: The Implicit Value Discovery<\/a><br><a href=\"https:\/\/nightfame.com\/style\/chapter-4-the-on-chain-data-the-implicit-value-oracle\/\">Chapter 4: The On-Chain Data<\/a><br><a href=\"https:\/\/nightfame.com\/style\/chapter-5-the-value-extraction-the-implicit-value-oracle\/\">Chapter 5: The Value Extraction<\/a><br><a href=\"https:\/\/nightfame.com\/style\/chapter-6-the-arbitrage-opportunity-the-implicit-value-oracle\/\">Chapter 6: The Arbitrage Opportunity<\/a><br><a href=\"https:\/\/nightfame.com\/style\/chapter-7-the-oracle-integration-the-implicit-value-oracle\/\">Chapter 7: The Oracle Integration<\/a><br><a href=\"https:\/\/nightfame.com\/style\/chapter-8-the-manipulation-risk-the-implicit-value-oracle\/\">Chapter 8: The Manipulation Risk<\/a><br><a href=\"https:\/\/nightfame.com\/style\/chapter-9-the-multi-source-validation-the-implicit-value-oracle\/\">Chapter 9: The Multi-Source Validation<\/a><br><a href=\"https:\/\/nightfame.com\/style\/chapter-10-value-beyond-price-the-implicit-value-oracle\/\">Chapter 10: Value Beyond Price<\/a><\/p>\n<div class=\"pvc_clear\"><\/div><p id=\"pvc_stats_63408\" class=\"pvc_stats all  \" data-element-id=\"63408\" style=\"\"><i class=\"pvc-stats-icon medium\" aria-hidden=\"true\"><svg aria-hidden=\"true\" focusable=\"false\" data-prefix=\"far\" data-icon=\"chart-bar\" role=\"img\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewBox=\"0 0 512 512\" class=\"svg-inline--fa fa-chart-bar fa-w-16 fa-2x\"><path fill=\"currentColor\" d=\"M396.8 352h22.4c6.4 0 12.8-6.4 12.8-12.8V108.8c0-6.4-6.4-12.8-12.8-12.8h-22.4c-6.4 0-12.8 6.4-12.8 12.8v230.4c0 6.4 6.4 12.8 12.8 12.8zm-192 0h22.4c6.4 0 12.8-6.4 12.8-12.8V140.8c0-6.4-6.4-12.8-12.8-12.8h-22.4c-6.4 0-12.8 6.4-12.8 12.8v198.4c0 6.4 6.4 12.8 12.8 12.8zm96 0h22.4c6.4 0 12.8-6.4 12.8-12.8V204.8c0-6.4-6.4-12.8-12.8-12.8h-22.4c-6.4 0-12.8 6.4-12.8 12.8v134.4c0 6.4 6.4 12.8 12.8 12.8zM496 400H48V80c0-8.84-7.16-16-16-16H16C7.16 64 0 71.16 0 80v336c0 17.67 14.33 32 32 32h464c8.84 0 16-7.16 16-16v-16c0-8.84-7.16-16-16-16zm-387.2-48h22.4c6.4 0 12.8-6.4 12.8-12.8v-70.4c0-6.4-6.4-12.8-12.8-12.8h-22.4c-6.4 0-12.8 6.4-12.8 12.8v70.4c0 6.4 6.4 12.8 12.8 12.8z\" class=\"\"><\/path><\/svg><\/i> <img loading=\"lazy\" decoding=\"async\" width=\"16\" height=\"16\" alt=\"Loading\" src=\"https:\/\/nightfame.com\/style\/wp-content\/plugins\/page-views-count\/ajax-loader-2x.gif\" border=0 \/><\/p><div class=\"pvc_clear\"><\/div>","protected":false},"excerpt":{"rendered":"<p>The blue glow of four monitors washed over Leo&#8217;s face as he sat cross-legged in [&hellip;]<\/p>\n<div class=\"pvc_clear\"><\/div>\n<p id=\"pvc_stats_63408\" class=\"pvc_stats all  \" data-element-id=\"63408\" style=\"\"><i class=\"pvc-stats-icon medium\" aria-hidden=\"true\"><svg aria-hidden=\"true\" focusable=\"false\" data-prefix=\"far\" data-icon=\"chart-bar\" role=\"img\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewBox=\"0 0 512 512\" class=\"svg-inline--fa fa-chart-bar fa-w-16 fa-2x\"><path fill=\"currentColor\" d=\"M396.8 352h22.4c6.4 0 12.8-6.4 12.8-12.8V108.8c0-6.4-6.4-12.8-12.8-12.8h-22.4c-6.4 0-12.8 6.4-12.8 12.8v230.4c0 6.4 6.4 12.8 12.8 12.8zm-192 0h22.4c6.4 0 12.8-6.4 12.8-12.8V140.8c0-6.4-6.4-12.8-12.8-12.8h-22.4c-6.4 0-12.8 6.4-12.8 12.8v198.4c0 6.4 6.4 12.8 12.8 12.8zm96 0h22.4c6.4 0 12.8-6.4 12.8-12.8V204.8c0-6.4-6.4-12.8-12.8-12.8h-22.4c-6.4 0-12.8 6.4-12.8 12.8v134.4c0 6.4 6.4 12.8 12.8 12.8zM496 400H48V80c0-8.84-7.16-16-16-16H16C7.16 64 0 71.16 0 80v336c0 17.67 14.33 32 32 32h464c8.84 0 16-7.16 16-16v-16c0-8.84-7.16-16-16-16zm-387.2-48h22.4c6.4 0 12.8-6.4 12.8-12.8v-70.4c0-6.4-6.4-12.8-12.8-12.8h-22.4c-6.4 0-12.8 6.4-12.8 12.8v70.4c0 6.4 6.4 12.8 12.8 12.8z\" class=\"\"><\/path><\/svg><\/i> <img loading=\"lazy\" decoding=\"async\" width=\"16\" height=\"16\" alt=\"Loading\" src=\"https:\/\/nightfame.com\/style\/wp-content\/plugins\/page-views-count\/ajax-loader-2x.gif\" border=0 \/><\/p>\n<div class=\"pvc_clear\"><\/div>\n","protected":false},"author":2,"featured_media":0,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[60292],"tags":[60332,58994,60293,58992,60294,61493,61494,61495,61496,61497,61499,61498,61500,61502,61501,61491,61492,60295,60333,60335,60334,60297,60296,60336,61683,61684,61685,61682,61681,61687,61686,60330,60331],"class_list":["post-63408","post","type-post","status-publish","format-standard","hentry","category-science-fiction","tag-children-novel","tag-crypto","tag-crypto-story","tag-cryptocurrency","tag-cryptocurrency-story","tag-free-children-novel","tag-free-crypto-story","tag-free-cryptocurrency-story","tag-free-science-fiction","tag-free-science-fiction-novel","tag-free-science-fiction-novel-for-children","tag-free-science-fiction-novel-for-young-adult","tag-free-science-fiction-story","tag-free-science-fiction-story-for-children","tag-free-science-fiction-story-for-young-adult","tag-free-ya-novel","tag-free-young-adult-novel","tag-science-fiction","tag-science-fiction-novel","tag-science-fiction-novel-for-children","tag-science-fiction-novel-for-young-adult","tag-science-fiction-story","tag-science-fiction-story-for-children","tag-science-fiction-story-for-young-adult","tag-the-implicit-value-oracle","tag-the-implicit-value-oracle-science-fiction-novel","tag-the-implicit-value-oracle-science-fiction-novel-for-children","tag-the-implicit-value-oracle-science-fiction-novel-for-young-adult","tag-the-implicit-value-oracle-science-fiction-story","tag-the-implicit-value-oracle-science-fiction-story-for-children","tag-the-implicit-value-oracle-science-fiction-story-for-young-adult","tag-ya-novel","tag-young-adult-novel"],"_links":{"self":[{"href":"https:\/\/nightfame.com\/style\/wp-json\/wp\/v2\/posts\/63408","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/nightfame.com\/style\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/nightfame.com\/style\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/nightfame.com\/style\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/nightfame.com\/style\/wp-json\/wp\/v2\/comments?post=63408"}],"version-history":[{"count":2,"href":"https:\/\/nightfame.com\/style\/wp-json\/wp\/v2\/posts\/63408\/revisions"}],"predecessor-version":[{"id":63450,"href":"https:\/\/nightfame.com\/style\/wp-json\/wp\/v2\/posts\/63408\/revisions\/63450"}],"wp:attachment":[{"href":"https:\/\/nightfame.com\/style\/wp-json\/wp\/v2\/media?parent=63408"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/nightfame.com\/style\/wp-json\/wp\/v2\/categories?post=63408"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/nightfame.com\/style\/wp-json\/wp\/v2\/tags?post=63408"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}