diff --git a/CHANGELOG.md b/CHANGELOG.md index 25395bc18..86c8226c7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -12,7 +12,11 @@ ## Datasets - Added `Sell Side Risk Ratio` to all entities -- Removed datasets split by liquidity for all datasets already split by any address kind, while fun to have it took time to compute and space to store and no one was checking them +- Added `Adjusted Value Created`, `Adjusted Value Destroyed` and `Adjusted Spent Output Profit Ratio` to all entities +- Added `Satoshis Per Dollar` +- Added `All Time High` +- Added `Drawdown` +- Removed datasets split by liquidity for all datasets already split by any address kind, while fun to have, they took time to compute, ram, and space to store and no one was actually checking them - Fixed a lot of values in split by liquidity datasets ## Website @@ -37,6 +41,10 @@ - Fixed broken last values routes - Add support for the `/datasets/last` file via the `/api/last` route +## Biter + +- Moved back to this repo + ## v. 0.4.0 | [861950](https://mempool.space/block/00000000000000000000530d0e30ccf7deeace122dcc99f2668a06c6dad83629) - 2024/09/19 ![Image of the kibō Web App version 0.4.0](./assets/v0.4.0.jpg) diff --git a/biter/Cargo.lock b/biter/Cargo.lock new file mode 100644 index 000000000..bf9479ffe --- /dev/null +++ b/biter/Cargo.lock @@ -0,0 +1,466 @@ +# This file is automatically @generated by Cargo. +# It is not intended for manual editing. +version = 3 + +[[package]] +name = "arrayvec" +version = "0.7.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "96d30a06541fbafbc7f82ed10c06164cfbd2c401138f6addd8404629c4b16711" + +[[package]] +name = "base58ck" +version = "0.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2c8d66485a3a2ea485c1913c4572ce0256067a5377ac8c75c4960e1cda98605f" +dependencies = [ + "bitcoin-internals", + "bitcoin_hashes", +] + +[[package]] +name = "base64" +version = "0.13.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9e1b586273c5702936fe7b7d6896644d8be71e6314cfe09d3167c95f712589e8" + +[[package]] +name = "bech32" +version = "0.11.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d965446196e3b7decd44aa7ee49e31d630118f90ef12f97900f262eb915c951d" + +[[package]] +name = "bitcoin" +version = "0.32.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ea507acc1cd80fc084ace38544bbcf7ced7c2aa65b653b102de0ce718df668f6" +dependencies = [ + "base58ck", + "bech32", + "bitcoin-internals", + "bitcoin-io", + "bitcoin-units", + "bitcoin_hashes", + "hex-conservative", + "hex_lit", + "secp256k1", + "serde", +] + +[[package]] +name = "bitcoin-internals" +version = "0.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "30bdbe14aa07b06e6cfeffc529a1f099e5fbe249524f8125358604df99a4bed2" +dependencies = [ + "serde", +] + +[[package]] +name = "bitcoin-io" +version = "0.1.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "340e09e8399c7bd8912f495af6aa58bea0c9214773417ffaa8f6460f93aaee56" + +[[package]] +name = "bitcoin-units" +version = "0.1.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5285c8bcaa25876d07f37e3d30c303f2609179716e11d688f51e8f1fe70063e2" +dependencies = [ + "bitcoin-internals", + "serde", +] + +[[package]] +name = "bitcoin_hashes" +version = "0.14.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bb18c03d0db0247e147a21a6faafd5a7eb851c743db062de72018b6b7e8e4d16" +dependencies = [ + "bitcoin-io", + "hex-conservative", + "serde", +] + +[[package]] +name = "bitcoincore-rpc" +version = "0.19.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "aedd23ae0fd321affb4bbbc36126c6f49a32818dc6b979395d24da8c9d4e80ee" +dependencies = [ + "bitcoincore-rpc-json", + "jsonrpc", + "log", + "serde", + "serde_json", +] + +[[package]] +name = "bitcoincore-rpc-json" +version = "0.19.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d8909583c5fab98508e80ef73e5592a651c954993dc6b7739963257d19f0e71a" +dependencies = [ + "bitcoin", + "serde", + "serde_json", +] + +[[package]] +name = "biter" +version = "0.1.0" +dependencies = [ + "bitcoin", + "bitcoincore-rpc", + "crossbeam", + "derived-deref", + "rayon", + "serde", + "serde_json", +] + +[[package]] +name = "byteorder" +version = "1.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b" + +[[package]] +name = "cc" +version = "1.1.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2aba8f4e9906c7ce3c73463f62a7f0c65183ada1a2d47e397cc8810827f9694f" + +[[package]] +name = "cfg-if" +version = "1.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" + +[[package]] +name = "crossbeam" +version = "0.8.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1137cd7e7fc0fb5d3c5a8678be38ec56e819125d8d7907411fe24ccb943faca8" +dependencies = [ + "crossbeam-channel", + "crossbeam-deque", + "crossbeam-epoch", + "crossbeam-queue", + "crossbeam-utils", +] + +[[package]] +name = "crossbeam-channel" +version = "0.5.13" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "33480d6946193aa8033910124896ca395333cae7e2d1113d1fef6c3272217df2" +dependencies = [ + "crossbeam-utils", +] + +[[package]] +name = "crossbeam-deque" +version = "0.8.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "613f8cc01fe9cf1a3eb3d7f488fd2fa8388403e97039e2f73692932e291a770d" +dependencies = [ + "crossbeam-epoch", + "crossbeam-utils", +] + +[[package]] +name = "crossbeam-epoch" +version = "0.9.18" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e" +dependencies = [ + "crossbeam-utils", +] + +[[package]] +name = "crossbeam-queue" +version = "0.3.11" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "df0346b5d5e76ac2fe4e327c5fd1118d6be7c51dfb18f9b7922923f287471e35" +dependencies = [ + "crossbeam-utils", +] + +[[package]] +name = "crossbeam-utils" +version = "0.8.20" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "22ec99545bb0ed0ea7bb9b8e1e9122ea386ff8a48c0922e43f36d45ab09e0e80" + +[[package]] +name = "derived-deref" +version = "2.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "805ef2023ccd65425743a91ecd11fc020979a0b01921db3104fb606d18a7b43e" +dependencies = [ + "proc-macro2", + "quote", + "syn", +] + +[[package]] +name = "either" +version = "1.13.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "60b1af1c220855b6ceac025d3f6ecdd2b7c4894bfe9cd9bda4fbb4bc7c0d4cf0" + +[[package]] +name = "getrandom" +version = "0.2.15" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c4567c8db10ae91089c99af84c68c38da3ec2f087c3f82960bcdbf3656b6f4d7" +dependencies = [ + "cfg-if", + "libc", + "wasi", +] + +[[package]] +name = "hex-conservative" +version = "0.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5313b072ce3c597065a808dbf612c4c8e8590bdbf8b579508bf7a762c5eae6cd" +dependencies = [ + "arrayvec", +] + +[[package]] +name = "hex_lit" +version = "0.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3011d1213f159867b13cfd6ac92d2cd5f1345762c63be3554e84092d85a50bbd" + +[[package]] +name = "itoa" +version = "1.0.11" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "49f1f14873335454500d59611f1cf4a4b0f786f9ac11f4312a78e4cf2566695b" + +[[package]] +name = "jsonrpc" +version = "0.18.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3662a38d341d77efecb73caf01420cfa5aa63c0253fd7bc05289ef9f6616e1bf" +dependencies = [ + "base64", + "minreq", + "serde", + "serde_json", +] + +[[package]] +name = "libc" +version = "0.2.155" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "97b3888a4aecf77e811145cadf6eef5901f4782c53886191b2f693f24761847c" + +[[package]] +name = "log" +version = "0.4.22" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a7a70ba024b9dc04c27ea2f0c0548feb474ec5c54bba33a7f72f873a39d07b24" + +[[package]] +name = "memchr" +version = "2.7.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "78ca9ab1a0babb1e7d5695e3530886289c18cf2f87ec19a575a0abdce112e3a3" + +[[package]] +name = "minreq" +version = "2.12.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "763d142cdff44aaadd9268bebddb156ef6c65a0e13486bb81673cf2d8739f9b0" +dependencies = [ + "log", + "serde", + "serde_json", +] + +[[package]] +name = "ppv-lite86" +version = "0.2.18" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "dee4364d9f3b902ef14fab8a1ddffb783a1cb6b4bba3bfc1fa3922732c7de97f" +dependencies = [ + "zerocopy", +] + +[[package]] +name = "proc-macro2" +version = "1.0.86" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5e719e8df665df0d1c8fbfd238015744736151d4445ec0836b8e628aae103b77" +dependencies = [ + "unicode-ident", +] + +[[package]] +name = "quote" +version = "1.0.36" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0fa76aaf39101c457836aec0ce2316dbdc3ab723cdda1c6bd4e6ad4208acaca7" +dependencies = [ + "proc-macro2", +] + +[[package]] +name = "rand" +version = "0.8.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404" +dependencies = [ + "libc", + "rand_chacha", + "rand_core", +] + +[[package]] +name = "rand_chacha" +version = "0.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88" +dependencies = [ + "ppv-lite86", + "rand_core", +] + +[[package]] +name = "rand_core" +version = "0.6.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c" +dependencies = [ + "getrandom", +] + +[[package]] +name = "rayon" +version = "1.10.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b418a60154510ca1a002a752ca9714984e21e4241e804d32555251faf8b78ffa" +dependencies = [ + "either", + "rayon-core", +] + +[[package]] +name = "rayon-core" +version = "1.12.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1465873a3dfdaa8ae7cb14b4383657caab0b3e8a0aa9ae8e04b044854c8dfce2" +dependencies = [ + "crossbeam-deque", + "crossbeam-utils", +] + +[[package]] +name = "ryu" +version = "1.0.18" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f3cb5ba0dc43242ce17de99c180e96db90b235b8a9fdc9543c96d2209116bd9f" + +[[package]] +name = "secp256k1" +version = "0.29.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0e0cc0f1cf93f4969faf3ea1c7d8a9faed25918d96affa959720823dfe86d4f3" +dependencies = [ + "bitcoin_hashes", + "rand", + "secp256k1-sys", + "serde", +] + +[[package]] +name = "secp256k1-sys" +version = "0.10.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1433bd67156263443f14d603720b082dd3121779323fce20cba2aa07b874bc1b" +dependencies = [ + "cc", +] + +[[package]] +name = "serde" +version = "1.0.204" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bc76f558e0cbb2a839d37354c575f1dc3fdc6546b5be373ba43d95f231bf7c12" +dependencies = [ + "serde_derive", +] + +[[package]] +name = "serde_derive" +version = "1.0.204" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e0cd7e117be63d3c3678776753929474f3b04a43a080c744d6b0ae2a8c28e222" +dependencies = [ + "proc-macro2", + "quote", + "syn", +] + +[[package]] +name = "serde_json" +version = "1.0.122" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "784b6203951c57ff748476b126ccb5e8e2959a5c19e5c617ab1956be3dbc68da" +dependencies = [ + "itoa", + "memchr", + "ryu", + "serde", +] + +[[package]] +name = "syn" +version = "2.0.72" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "dc4b9b9bf2add8093d3f2c0204471e951b2285580335de42f9d2534f3ae7a8af" +dependencies = [ + "proc-macro2", + "quote", + "unicode-ident", +] + +[[package]] +name = "unicode-ident" +version = "1.0.12" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3354b9ac3fae1ff6755cb6db53683adb661634f67557942dea4facebec0fee4b" + +[[package]] +name = "wasi" +version = "0.11.0+wasi-snapshot-preview1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423" + +[[package]] +name = "zerocopy" +version = "0.6.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "854e949ac82d619ee9a14c66a1b674ac730422372ccb759ce0c39cabcf2bf8e6" +dependencies = [ + "byteorder", + "zerocopy-derive", +] + +[[package]] +name = "zerocopy-derive" +version = "0.6.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "125139de3f6b9d625c39e2efdd73d41bdac468ccd556556440e322be0e1bbd91" +dependencies = [ + "proc-macro2", + "quote", + "syn", +] diff --git a/biter/Cargo.toml b/biter/Cargo.toml new file mode 100644 index 000000000..f01e3608d --- /dev/null +++ b/biter/Cargo.toml @@ -0,0 +1,19 @@ +[package] +name = "biter" +description = "A very fast Bitcoin block iterator" +version = "0.1.1" +license = "MIT" +repository = "https://github.com/kibo-money/kibo/tree/main/biter" +keywords = ["bitcoin", "block", "iterator"] +categories = ["cryptography::cryptocurrencies", "encoding"] +edition = "2021" + +[dependencies] +bitcoin = { version = "0.32.2", features = ["serde"] } +rayon = "1.10.0" +crossbeam = { version = "0.8.4", features = ["crossbeam-channel"] } +serde = { version = "1.0.204", features = ["derive"] } +serde_json = "1.0.122" +derived-deref = "2.1.0" +bitcoincore-rpc = "0.19.0" +# tokio = { version = "1.39.2", features = ["rt-multi-thread"] } diff --git a/biter/LICENSE.md b/biter/LICENSE.md new file mode 100644 index 000000000..690c7b5da --- /dev/null +++ b/biter/LICENSE.md @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2024 Biter + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/biter/README.md b/biter/README.md new file mode 100644 index 000000000..932108dac --- /dev/null +++ b/biter/README.md @@ -0,0 +1,62 @@ +# Biter + +Biter (Bitcoin Block Iterator) is a very fast and simple Rust library which reads raw block files (*blkXXXXX.dat*) from Bitcoin Core Node and creates an iterator over all the requested blocks in sequential order (0, 1, 2, ...). + +The element returned by the iterator is a tuple which includes the: +- Height: `usize` +- Block: `Block` (from `bitcoin-rust`) +- Block's Hash: `BlockHash` (also from `bitcoin-rust`) + +## Example + +```rust +use bitcoincore_rpc::{Auth, Client}; + +fn main() { + let i = std::time::Instant::now(); + + // Path to the Bitcoin data directory + let data_dir = "../../bitcoin"; + + // Path to the export directory where a mini blk indexer will be exported + let export_dir = "./target"; + + // Inclusive starting height of the blocks received, `None` for 0 + let start = Some(850_000); + + // Inclusive ending height of the blocks received, `None` for the last one + let end = None; + + // RPC client to filter out forks + let url = "http://localhost:8332"; + let auth = Auth::UserPass("satoshi".to_string(), "nakamoto".to_string()); + let rpc = Client::new(url, auth).unwrap(); + + // Create channel receiver then iterate over the blocks + biter::new(data_dir, export_dir, start, end, rpc) + .iter() + .for_each(|(height, _block, hash)| { + println!("{height}: {hash}"); + }); + + dbg!(i.elapsed()); +} + +``` + +## Requirements + +Even though it reads *blkXXXXX.dat* files, it **needs** `bitcoind` to run with the RPC server to filter out block forks. + +Peak memory should be around 500MB. + +## Comparaison + +| | [biter](https://crates.io/crates/biter) | [bitcoin-explorer](https://crates.io/crates/bitcoin-explorer) | [blocks_iterator](https://crates.io/crates/blocks_iterator) | +| --- | --- | --- | --- | +| Run **with** `bitcoind` | Yes ✅ | No ❌ | Yes ✅ | +| Run **without** `bitcoind` | No ❌ | Yes ✅ | Yes ✅ | +| `0..=855_000` | 16mn40s | 17mn 46s | > 2h | +| `800_000..=855_000` | 2mn 53s (16mn40s if first run) | 3mn 2s | > 2h | + +*Benchmarked on a Macbook Pro M3 Pro* diff --git a/biter/src/blk_index_to_blk_recap.rs b/biter/src/blk_index_to_blk_recap.rs new file mode 100644 index 000000000..9c9d53c53 --- /dev/null +++ b/biter/src/blk_index_to_blk_recap.rs @@ -0,0 +1,105 @@ +use std::{ + cmp::Ordering, + collections::BTreeMap, + fs::{self, File}, + io::{BufReader, BufWriter}, + path::PathBuf, +}; + +use derived_deref::{Deref, DerefMut}; + +use crate::{blk_recap::BlkRecap, BlkMetadataAndBlock}; + +#[derive(Deref, DerefMut, Debug)] +pub struct BlkIndexToBlkRecap { + path: String, + #[target] + tree: BTreeMap, +} + +impl BlkIndexToBlkRecap { + pub fn import(blocks_dir: &BTreeMap, export_dir: &str) -> Self { + let path = format!("{export_dir}/blk_index_to_blk_recap.json"); + + let tree = { + fs::create_dir_all(export_dir).unwrap(); + + if let Ok(file) = File::open(&path) { + let reader = BufReader::new(file); + serde_json::from_reader(reader).unwrap_or_default() + } else { + BTreeMap::default() + } + }; + + let mut this = Self { path, tree }; + + this.clean_outdated(blocks_dir); + + this + } + + pub fn clean_outdated(&mut self, blocks_dir: &BTreeMap) { + blocks_dir.iter().for_each(|(blk_index, blk_path)| { + if let Some(blk_recap) = self.get(blk_index) { + if blk_recap.has_different_modified_time(blk_path) { + self.remove(blk_index); + } + } + }); + } + + pub fn get_start_recap(&self, start: Option) -> Option<(usize, BlkRecap)> { + if let Some(start) = start { + let (last_key, last_value) = self.last_key_value()?; + + if last_value.height() < start { + return Some((*last_key, *last_value)); + } else if let Some((blk_index, _)) = self + .iter() + .find(|(_, blk_recap)| blk_recap.is_younger_than(start)) + { + if *blk_index != 0 { + let blk_index = *blk_index - 1; + return Some((blk_index, *self.get(&blk_index).unwrap())); + } + } + } + + None + } + + pub fn update(&mut self, blk_metadata_and_block: &BlkMetadataAndBlock, height: usize) { + let blk_index = blk_metadata_and_block.blk_metadata.index; + + if let Some(last_entry) = self.last_entry() { + // if last_entry.get().is_older_than(height) { + match last_entry.key().cmp(&blk_index) { + Ordering::Greater => { + last_entry.remove_entry(); + } + Ordering::Less => { + self.insert(blk_index, BlkRecap::from(height, blk_metadata_and_block)); + } + Ordering::Equal => {} + }; + // } + } else { + if blk_index != 0 || height != 0 { + // dbg!(blk_index, height); + unreachable!(); + } + + self.insert(blk_index, BlkRecap::first(blk_metadata_and_block)); + } + } + + pub fn export(&self) { + let file = File::create(&self.path).unwrap_or_else(|_| { + dbg!(&self.path); + panic!("No such file or directory") + }); + + serde_json::to_writer_pretty(&mut BufWriter::new(file), &self.tree).unwrap(); + } +} diff --git a/biter/src/blk_metadata.rs b/biter/src/blk_metadata.rs new file mode 100644 index 000000000..d9322a8ab --- /dev/null +++ b/biter/src/blk_metadata.rs @@ -0,0 +1,18 @@ +use std::path::PathBuf; + +use crate::path_to_modified_time; + +#[derive(Clone, Copy)] +pub struct BlkMetadata { + pub index: usize, + pub modified_time: u64, +} + +impl BlkMetadata { + pub fn new(index: usize, path: &PathBuf) -> Self { + Self { + index, + modified_time: path_to_modified_time(path), + } + } +} diff --git a/biter/src/blk_metadata_and_block.rs b/biter/src/blk_metadata_and_block.rs new file mode 100644 index 000000000..1cff5e055 --- /dev/null +++ b/biter/src/blk_metadata_and_block.rs @@ -0,0 +1,17 @@ +use bitcoin::Block; + +use crate::BlkMetadata; + +pub struct BlkMetadataAndBlock { + pub blk_metadata: BlkMetadata, + pub block: Block, +} + +impl BlkMetadataAndBlock { + pub fn new(blk_metadata: BlkMetadata, block: Block) -> Self { + Self { + blk_metadata, + block, + } + } +} diff --git a/biter/src/blk_recap.rs b/biter/src/blk_recap.rs new file mode 100644 index 000000000..26e35daa9 --- /dev/null +++ b/biter/src/blk_recap.rs @@ -0,0 +1,47 @@ +use std::path::PathBuf; + +use bitcoin::{hashes::Hash, BlockHash}; +use serde::{Deserialize, Serialize}; + +use crate::{path_to_modified_time, BlkMetadataAndBlock}; + +#[derive(Debug, Clone, Copy, Serialize, Deserialize)] +pub struct BlkRecap { + min_continuous_height: usize, + min_continuous_prev_hash: BlockHash, + modified_time: u64, +} + +impl BlkRecap { + pub fn first(blk_metadata_and_block: &BlkMetadataAndBlock) -> Self { + Self { + min_continuous_height: 0, + min_continuous_prev_hash: BlockHash::all_zeros(), + modified_time: blk_metadata_and_block.blk_metadata.modified_time, + } + } + + pub fn from(height: usize, blk_metadata_and_block: &BlkMetadataAndBlock) -> Self { + Self { + min_continuous_height: height, + min_continuous_prev_hash: blk_metadata_and_block.block.header.prev_blockhash, + modified_time: blk_metadata_and_block.blk_metadata.modified_time, + } + } + + pub fn has_different_modified_time(&self, blk_path: &PathBuf) -> bool { + self.modified_time != path_to_modified_time(blk_path) + } + + pub fn is_younger_than(&self, height: usize) -> bool { + self.min_continuous_height > height + } + + pub fn height(&self) -> usize { + self.min_continuous_height + } + + pub fn prev_hash(&self) -> &BlockHash { + &self.min_continuous_prev_hash + } +} diff --git a/biter/src/lib.rs b/biter/src/lib.rs new file mode 100644 index 000000000..a064fa1cb --- /dev/null +++ b/biter/src/lib.rs @@ -0,0 +1,384 @@ +use std::{ + collections::{BTreeMap, BTreeSet, VecDeque}, + fs::{self}, + ops::ControlFlow, + thread, +}; + +use bitcoin::{ + consensus::{Decodable, ReadExt}, + hashes::Hash, + io::{Cursor, Read}, + Block, BlockHash, +}; +use bitcoincore_rpc::RpcApi; +use crossbeam::channel::{bounded, Receiver}; +use rayon::prelude::*; + +pub use bitcoin; +pub use bitcoincore_rpc; + +mod blk_index_to_blk_recap; +mod blk_metadata; +mod blk_metadata_and_block; +mod blk_recap; +mod utils; + +use blk_index_to_blk_recap::*; +use blk_metadata::*; +use blk_metadata_and_block::*; +use utils::*; + +pub const NUMBER_OF_UNSAFE_BLOCKS: usize = 100; +const MAGIC_BYTES: [u8; 4] = [249, 190, 180, 217]; +const BOUND_CAP: usize = 210; + +enum BlockState { + Raw(Vec), + Decoded(Block), +} + +/// +/// Returns a crossbeam channel receiver that receives `(usize, Block, BlockHash)` tuples (with `usize` being the height) in sequential order. +/// +/// # Arguments +/// +/// * `data_dir` - Path to the Bitcoin data directory +/// * `export_dir` - Path to the export directory where a mini blk indexer will be exported +/// * `start` - Inclusive starting height of the blocks received, `None` for 0 +/// * `end` - Inclusive ending height of the blocks received, `None` for the last one +/// * `rpc` - RPC client to filter out forks +/// +/// # Example +/// +/// ```rust +/// use bitcoincore_rpc::{Auth, Client}; +/// +/// fn main() { +/// let i = std::time::Instant::now(); +/// +/// let url = "http://localhost:8332"; +/// let auth = Auth::UserPass("satoshi".to_string(), "nakamoto".to_string()); +/// let rpc = Client::new(url, auth).unwrap(); +/// +/// let data_dir = "../../bitcoin"; +/// let export_dir = "./target"; +/// let start = Some(850_000); +/// let end = None; +/// +/// biter::new(data_dir, export_dir, start, end, rpc) +/// .iter() +/// .for_each(|(height, _block, hash)| { +/// println!("{height}: {hash}"); +/// }); +/// +/// dbg!(i.elapsed()); +///} +/// ``` +/// +pub fn new( + data_dir: &str, + export_dir: &str, + start: Option, + end: Option, + rpc: bitcoincore_rpc::Client, +) -> Receiver<(usize, Block, BlockHash)> { + let (send_block_reader, recv_block_reader) = bounded(BOUND_CAP); + let (send_block, recv_block) = bounded(BOUND_CAP); + let (send_height_block_hash, recv_height_block_hash) = bounded(BOUND_CAP); + + let blocks_dir = scan_blocks_dir(data_dir); + + let mut blk_index_to_blk_recap = BlkIndexToBlkRecap::import(&blocks_dir, export_dir); + + let start_recap = blk_index_to_blk_recap.get_start_recap(start); + let starting_blk_index = start_recap.as_ref().map_or(0, |(index, _)| *index); + + thread::spawn(move || { + blocks_dir + .into_iter() + .filter(|(blk_index, _)| blk_index >= &starting_blk_index) + .try_for_each(move |(blk_index, blk_path)| { + let blk_metadata = BlkMetadata::new(blk_index, &blk_path); + + let blk_bytes = fs::read(&blk_path).unwrap(); + let blk_bytes_len = blk_bytes.len() as u64; + + let mut cursor = Cursor::new(blk_bytes.as_slice()); + + let mut current_4bytes = [0; 4]; + + 'parent: loop { + if cursor.position() == blk_bytes_len { + break; + } + + // Read until we find a valid suite of MAGIC_BYTES + loop { + current_4bytes.rotate_left(1); + + if let Ok(byte) = cursor.read_u8() { + current_4bytes[3] = byte; + } else { + break 'parent; + } + + if current_4bytes == MAGIC_BYTES { + break; + } + } + + let block_size = cursor.read_u32().unwrap(); + + let mut raw_block = vec![0u8; block_size as usize]; + + cursor.read_exact(&mut raw_block).unwrap(); + + if send_block_reader + .send((blk_metadata, BlockState::Raw(raw_block))) + .is_err() + { + return ControlFlow::Break(()); + } + } + + ControlFlow::Continue(()) + }) + }); + + // thread::spawn(move || { + // recv_block_reader.iter().par_bridge().try_for_each( + // move |(blk_metadata, mut block_state)| { + // let raw_block = match block_state { + // BlockState::Raw(vec) => vec, + // _ => unreachable!(), + // }; + + // let mut cursor = Cursor::new(raw_block); + + // block_state = BlockState::Decoded(Block::consensus_decode(&mut cursor).unwrap()); + + // if send_block + // .send(BlkMetadataAndBlock::new( + // blk_metadata, + // match block_state { + // BlockState::Decoded(block) => block, + // _ => unreachable!(), + // }, + // )) + // .is_err() + // { + // return ControlFlow::Break(()); + // } + + // ControlFlow::Continue(()) + // }, + // ); + // }); + + // Can't use the previous code because .send() blocks all the threads if full + // And other .par_iter() are also stuck because of that + thread::spawn(move || { + let mut bulk = vec![]; + + let drain_and_send = |bulk: &mut Vec<_>| { + // Using a vec and sending after to not end up with stuck threads in par iter + bulk.par_iter_mut().for_each(|(_, block_state)| { + let raw_block = match block_state { + BlockState::Raw(vec) => vec, + _ => unreachable!(), + }; + + let mut cursor = Cursor::new(raw_block); + + *block_state = BlockState::Decoded(Block::consensus_decode(&mut cursor).unwrap()); + }); + + bulk.drain(..).try_for_each(|(blk_metadata, block_state)| { + let block = match block_state { + BlockState::Decoded(block) => block, + _ => unreachable!(), + }; + + if send_block + .send(BlkMetadataAndBlock::new(blk_metadata, block)) + .is_err() + { + return ControlFlow::Break(()); + } + + ControlFlow::Continue(()) + }) + }; + + recv_block_reader.iter().try_for_each(|tuple| { + bulk.push(tuple); + + if bulk.len() < BOUND_CAP / 2 { + return ControlFlow::Continue(()); + } + + drain_and_send(&mut bulk) + }); + + drain_and_send(&mut bulk) + }); + + // Tokio version: 1022s + // Slighlty slower than rayon version + // thread::spawn(move || { + // let rt = tokio::runtime::Runtime::new().unwrap(); + // let _guard = rt.enter(); + + // let mut tasks = VecDeque::with_capacity(BOUND); + + // recv_block_reader + // .iter() + // .try_for_each(move |(blk_metadata, block_state)| { + // let raw_block = match block_state { + // BlockState::Raw(vec) => vec, + // _ => unreachable!(), + // }; + + // tasks.push_back(tokio::task::spawn(async move { + // let block = Block::consensus_decode(&mut Cursor::new(raw_block)).unwrap(); + + // (blk_metadata, block) + // })); + + // while tasks.len() > BOUND { + // let (blk_metadata, block) = rt.block_on(tasks.pop_front().unwrap()).unwrap(); + + // if send_block + // .send(BlkMetadataAndBlock::new(blk_metadata, block)) + // .is_err() + // { + // return ControlFlow::Break(()); + // } + // } + + // ControlFlow::Continue(()) + // }); + // + // todo!("Send the rest") + // }); + + thread::spawn(move || { + let mut height = start_recap.map_or(0, |(_, recap)| recap.height()); + + let mut future_blocks = BTreeMap::default(); + let mut recent_chain: VecDeque<(BlockHash, BlkMetadataAndBlock)> = VecDeque::default(); + let mut recent_hashes: BTreeSet = BTreeSet::default(); + + let mut prev_hash = + start_recap.map_or_else(BlockHash::all_zeros, |(_, recap)| *recap.prev_hash()); + + let mut prepare_and_send = |(hash, tuple): (BlockHash, BlkMetadataAndBlock)| { + blk_index_to_blk_recap.update(&tuple, height); + + if start.map_or(true, |start| start <= height) { + send_height_block_hash + .send((height, tuple.block, hash)) + .unwrap(); + } + + if end.map_or(false, |end| height == end) { + return ControlFlow::Break(()); + } + + height += 1; + + ControlFlow::Continue(()) + }; + + let mut update_tip = |prev_hash: &mut BlockHash, + recent_hashes: &mut BTreeSet, + recent_chain: &mut VecDeque<(BlockHash, BlkMetadataAndBlock)>, + future_blocks: &mut BTreeMap, + tuple: BlkMetadataAndBlock| { + let mut tuple = Some(tuple); + + while let Some(tuple) = tuple.take().or_else(|| future_blocks.remove(prev_hash)) { + let hash = tuple.block.block_hash(); + + *prev_hash = hash; + recent_hashes.insert(hash); + recent_chain.push_back((hash, tuple)); + } + + while recent_chain.len() > NUMBER_OF_UNSAFE_BLOCKS { + let (hash, tuple) = recent_chain.pop_front().unwrap(); + + recent_hashes.remove(&hash); + + if prepare_and_send((hash, tuple)).is_break() { + return ControlFlow::Break(()); + } + } + + ControlFlow::Continue(()) + }; + + let flow = recv_block.iter().try_for_each(|tuple| { + // block isn't next after current tip + if prev_hash != tuple.block.header.prev_blockhash { + let is_block_active = + |hash| rpc.get_block_header_info(hash).unwrap().confirmations > 0; + + // block prev has already been processed + if recent_hashes.contains(&tuple.block.header.prev_blockhash) { + let hash = tuple.block.block_hash(); + + if is_block_active(&hash) { + let prev_index = recent_chain + .iter() + .position(|(hash, ..)| hash == &tuple.block.header.prev_blockhash) + .unwrap(); + + let bad_index_start = prev_index + 1; + + recent_chain.drain(bad_index_start..).for_each(|(hash, _)| { + recent_hashes.remove(&hash); + }); + + return update_tip( + &mut prev_hash, + &mut recent_hashes, + &mut recent_chain, + &mut future_blocks, + tuple, + ); + } + // Check if there was already a future block with the same prev hash + } else if let Some(prev_tuple) = + future_blocks.insert(tuple.block.header.prev_blockhash, tuple) + { + // If the previous was the active one + if is_block_active(&prev_tuple.block.block_hash()) { + // Rollback the insert + future_blocks.insert(prev_tuple.block.header.prev_blockhash, prev_tuple); + } + } + } else { + return update_tip( + &mut prev_hash, + &mut recent_hashes, + &mut recent_chain, + &mut future_blocks, + tuple, + ); + } + + ControlFlow::Continue(()) + }); + + if flow.is_continue() { + // Send the last (up to 100) blocks + recent_chain.into_iter().try_for_each(prepare_and_send); + } + + blk_index_to_blk_recap.export(); + }); + + recv_height_block_hash +} diff --git a/biter/src/main.rs b/biter/src/main.rs new file mode 100644 index 000000000..57ac1f020 --- /dev/null +++ b/biter/src/main.rs @@ -0,0 +1,22 @@ +use bitcoincore_rpc::{Auth, Client}; + +fn main() { + let i = std::time::Instant::now(); + + let url = "http://localhost:8332"; + let auth = Auth::UserPass("satoshi".to_string(), "nakamoto".to_string()); + let rpc = Client::new(url, auth).unwrap(); + + let data_dir = "../bitcoin"; + let export_dir = "./target"; + let start = None; + let end = None; + + biter::new(data_dir, export_dir, start, end, rpc) + .iter() + .for_each(|(height, _block, hash)| { + println!("{height}: {hash}"); + }); + + dbg!(i.elapsed()); +} diff --git a/biter/src/utils.rs b/biter/src/utils.rs new file mode 100644 index 000000000..9b1bdb945 --- /dev/null +++ b/biter/src/utils.rs @@ -0,0 +1,43 @@ +use std::{collections::BTreeMap, fs, path::PathBuf, time::UNIX_EPOCH}; + +const BLK: &str = "blk"; +const DAT: &str = ".dat"; + +pub fn scan_blocks_dir(data_dir_path: &str) -> BTreeMap { + let blocks_dir_path = &format!("{data_dir_path}/blocks"); + + fs::read_dir(blocks_dir_path) + .unwrap() + .map(|entry| entry.unwrap().path()) + .filter(|path| { + let is_file = path.is_file(); + + if is_file { + let file_name = path.file_name().unwrap().to_str().unwrap(); + + file_name.starts_with(BLK) && file_name.ends_with(DAT) + } else { + false + } + }) + .map(|path| { + let file_name = path.file_name().unwrap().to_str().unwrap(); + + let blk_index = file_name[BLK.len()..(file_name.len() - DAT.len())] + .parse::() + .unwrap(); + + (blk_index, path) + }) + .collect::>() +} + +pub fn path_to_modified_time(path: &PathBuf) -> u64 { + fs::metadata(path) + .unwrap() + .modified() + .unwrap() + .duration_since(UNIX_EPOCH) + .unwrap() + .as_secs() +} diff --git a/parser/Cargo.lock b/parser/Cargo.lock index e741793d8..5f60b29dd 100644 --- a/parser/Cargo.lock +++ b/parser/Cargo.lock @@ -274,9 +274,7 @@ dependencies = [ [[package]] name = "biter" -version = "0.1.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bd2ea6b4c4046feaaf73f3dff1cc648328af021d50be95946e0e7a807c985b47" +version = "0.1.1" dependencies = [ "bitcoin", "bitcoincore-rpc", diff --git a/parser/Cargo.toml b/parser/Cargo.toml index 3da70a307..7ac138319 100644 --- a/parser/Cargo.toml +++ b/parser/Cargo.toml @@ -10,7 +10,8 @@ allocative = "0.3.3" bincode = { git = "https://github.com/bincode-org/bincode.git", features = [ "serde", ] } -biter = "0.1.0" +# biter = "0.1.0" +biter = { path = "../biter" } bitcoin_hashes = { version = "0.14.0" } chrono = { version = "0.4.38", features = ["serde"] } clap = { version = "4.5.19", features = ["derive"] } diff --git a/parser/reset.sh b/parser/reset.sh index a499ed410..d7a64be38 100755 --- a/parser/reset.sh +++ b/parser/reset.sh @@ -2,6 +2,6 @@ echo "Deleting datasets..." rm -r ../datasets -echo "Deleting states and datasets..." +echo "Deleting states and databases..." rm -r ./out echo "Done." diff --git a/parser/src/actions/iter_blocks.rs b/parser/src/actions/iter_blocks.rs index d2b89b744..50c2fd3e6 100644 --- a/parser/src/actions/iter_blocks.rs +++ b/parser/src/actions/iter_blocks.rs @@ -13,7 +13,7 @@ use crate::{ datasets::{AllDatasets, ComputeData}, io::OUTPUTS_FOLDER_PATH, states::{AddressCohortsDurableStates, States, UTXOCohortsDurableStates}, - structs::{Date, DateData, MapKey}, + structs::{DateData, MapKey, Timestamp}, utils::{generate_allocation_files, log, time}, Config, Exit, Height, }; @@ -81,9 +81,9 @@ pub fn iter_blocks( if let Some((_current_block_height, current_block, _current_block_hash)) = current_block_opt { - let timestamp = current_block.header.time; + let timestamp = Timestamp::wrap(current_block.header.time); - let current_block_date = Date::from_timestamp(timestamp); + let current_block_date = timestamp.to_date(); let current_block_height: Height = height + blocks_loop_i; if current_block_height.to_usize() != _current_block_height { @@ -91,9 +91,9 @@ pub fn iter_blocks( panic!() } - let next_block_date = next_block_opt - .as_ref() - .map(|(_, next_block, _)| Date::from_timestamp(next_block.header.time)); + let next_block_date = next_block_opt.as_ref().map(|(_, next_block, _)| { + Timestamp::wrap(next_block.header.time).to_date() + }); // Always run for the first block of the loop if blocks_loop_date.is_none() { @@ -168,7 +168,6 @@ pub fn iter_blocks( height: current_block_height, is_date_last_block, states: &mut states, - timestamp, }); } @@ -213,7 +212,7 @@ pub fn iter_blocks( }); } - if !config.dry_run { + if !config.dry_run() { let is_safe = height.is_safe(approx_block_count); export(ExportedData { @@ -225,7 +224,7 @@ pub fn iter_blocks( exit: exit.clone(), })?; - if config.record_ram_usage { + if config.record_ram_usage() { time("Exporing allocation files", || { generate_allocation_files(&datasets, &databases, &states, last_height) })?; diff --git a/parser/src/actions/parse.rs b/parser/src/actions/parse.rs index 1003b4a27..2199a5c3b 100644 --- a/parser/src/actions/parse.rs +++ b/parser/src/actions/parse.rs @@ -20,7 +20,7 @@ use crate::{ }, structs::{ Address, AddressData, AddressRealizedData, Amount, BlockData, BlockPath, Counter, Date, - EmptyAddressData, Height, PartialTxoutData, Price, SentData, TxData, TxoutIndex, + EmptyAddressData, Height, PartialTxoutData, Price, SentData, Timestamp, TxData, TxoutIndex, }, }; @@ -37,7 +37,6 @@ pub struct ParseData<'a> { pub is_date_last_block: bool, pub rpc: &'a biter::bitcoincore_rpc::Client, pub states: &'a mut States, - pub timestamp: u32, } pub fn parse( @@ -53,11 +52,12 @@ pub fn parse( is_date_last_block, rpc, states, - timestamp, }: ParseData, ) { // log(&format!("{height}")); + let timestamp = Timestamp::wrap(block.header.time); + // If false, expect that the code is flawless // or create a 0 value txid database let enable_check_if_txout_value_is_zero_in_db: bool = true; @@ -89,9 +89,9 @@ pub fn parse( let block_size = block.total_size(); let block_weight = block.weight().to_wu(); let block_vbytes = block.weight().to_vbytes_floor(); - let block_interval = previous_timestamp.map_or(0, |previous_timestamp| { + let block_interval = previous_timestamp.map_or(Timestamp::ZERO, |previous_timestamp| { if previous_timestamp >= timestamp { - 0 + Timestamp::ZERO } else { timestamp - previous_timestamp } @@ -519,6 +519,8 @@ pub fn parse( input_amount, block_price, previous_price, + timestamp, + input_block_data.timestamp, ); }; @@ -645,6 +647,7 @@ pub fn parse( &states.date_data_vec, &block_path_to_sent_data, block_price, + timestamp, ); }); } diff --git a/parser/src/datasets/block_metadata.rs b/parser/src/datasets/block_metadata.rs index 0b320bdd2..e5e134788 100644 --- a/parser/src/datasets/block_metadata.rs +++ b/parser/src/datasets/block_metadata.rs @@ -2,7 +2,7 @@ use allocative::Allocative; use crate::{ datasets::AnyDataset, - structs::{AnyHeightMap, Date, HeightMap}, + structs::{AnyHeightMap, Date, HeightMap, Timestamp}, }; use super::{InsertData, MinInitialStates}; @@ -13,7 +13,7 @@ pub struct BlockMetadataDataset { // Inserted pub date: HeightMap, - pub timestamp: HeightMap, + pub timestamp: HeightMap, } impl BlockMetadataDataset { @@ -41,7 +41,7 @@ impl BlockMetadataDataset { ) { self.timestamp.insert(height, timestamp); - self.date.insert(height, Date::from_timestamp(timestamp)); + self.date.insert(height, timestamp.to_date()); } } diff --git a/parser/src/datasets/mining.rs b/parser/src/datasets/mining.rs index 17f70623c..e0f96c2b2 100644 --- a/parser/src/datasets/mining.rs +++ b/parser/src/datasets/mining.rs @@ -302,7 +302,7 @@ impl MiningDataset { self.block_weight .insert(height, block_weight as f32 / BYTES_IN_MB as f32); self.block_vbytes.insert(height, block_vbytes); - self.block_interval.insert(height, block_interval); + self.block_interval.insert(height, *block_interval); if is_date_last_block { self.coinbase.date_insert_sum_range(date, date_blocks_range); diff --git a/parser/src/datasets/mod.rs b/parser/src/datasets/mod.rs index c5009b5b9..d9e461826 100644 --- a/parser/src/datasets/mod.rs +++ b/parser/src/datasets/mod.rs @@ -45,7 +45,7 @@ use crate::{ // UTXOCohortsReceivedStates, UTXOCohortsSentStates, }, - structs::{Amount, Date, Height, Price}, + structs::{Amount, Date, Height, Price, Timestamp}, }; pub struct InsertData<'a> { @@ -53,7 +53,7 @@ pub struct InsertData<'a> { pub address_cohorts_one_shot_states: &'a Option, pub address_cohorts_realized_states: &'a Option, pub amount_sent: Amount, - pub block_interval: u32, + pub block_interval: Timestamp, pub block_price: Price, pub block_size: usize, pub block_vbytes: u64, @@ -71,7 +71,7 @@ pub struct InsertData<'a> { pub satblocks_destroyed: Amount, pub satdays_destroyed: Amount, pub states: &'a States, - pub timestamp: u32, + pub timestamp: Timestamp, pub transaction_count: usize, pub utxo_cohorts_one_shot_states: &'a UTXOCohortsOneShotStates, // pub utxo_cohorts_received_states: &'a UTXOCohortsReceivedStates, diff --git a/parser/src/datasets/price/mod.rs b/parser/src/datasets/price/mod.rs index 9966eddde..0a9817718 100644 --- a/parser/src/datasets/price/mod.rs +++ b/parser/src/datasets/price/mod.rs @@ -3,17 +3,16 @@ mod ohlc; use std::collections::BTreeMap; use allocative::Allocative; -use chrono::{Days, NaiveDateTime, NaiveTime, TimeZone, Timelike, Utc}; +use chrono::Days; use color_eyre::eyre::Error; pub use ohlc::*; use crate::{ - log, price::{Binance, Kibo, Kraken}, structs::{ - AnyBiMap, AnyDateMap, BiMap, Date, DateMap, DateMapChunkId, Height, HeightMapChunkId, - MapKey, + Amount, AnyBiMap, AnyDateMap, BiMap, Date, DateMap, DateMapChunkId, Height, + HeightMapChunkId, MapKey, Timestamp, }, utils::{ONE_MONTH_IN_DAYS, ONE_WEEK_IN_DAYS, ONE_YEAR_IN_DAYS}, }; @@ -76,9 +75,11 @@ pub struct PriceDatasets { pub price_10y_total_return: DateMap, pub price_4y_compound_return: DateMap, // projection via lowest 4y compound value + pub all_time_high: BiMap, + pub market_price_to_all_time_high_ratio: BiMap, + pub drawdown: BiMap, + pub sats_per_dollar: BiMap, // volatility - // drawdown - // sats per dollar } impl PriceDatasets { @@ -138,6 +139,13 @@ impl PriceDatasets { price_8y_total_return: DateMap::new_bin(1, &f("price_8y_total_return")), price_10y_total_return: DateMap::new_bin(1, &f("price_10y_total_return")), price_4y_compound_return: DateMap::new_bin(1, &f("price_4y_compound_return")), + all_time_high: BiMap::new_bin(1, &f("all_time_high")), + market_price_to_all_time_high_ratio: BiMap::new_bin( + 1, + &f("market_price_to_all_time_high_ratio"), + ), + drawdown: BiMap::new_bin(1, &f("drawdown")), + sats_per_dollar: BiMap::new_bin(1, &f("sats_per_dollar")), }; s.min_initial_states @@ -306,6 +314,26 @@ impl PriceDatasets { .compute(compute_data, &mut self.closes, &mut self.price_144d_sma); self.price_200w_sma_ratio .compute(compute_data, &mut self.closes, &mut self.price_200w_sma); + + self.all_time_high + .multi_insert_max(heights, dates, &mut self.closes); + + self.market_price_to_all_time_high_ratio + .multi_insert_percentage(heights, dates, &mut self.closes, &mut self.all_time_high); + + self.drawdown.multi_insert_simple_transform( + heights, + dates, + &mut self.market_price_to_all_time_high_ratio, + &|v| -(100.0 - v), + ); + + self.sats_per_dollar.multi_insert_simple_transform( + heights, + dates, + &mut self.closes, + &|price| Amount::ONE_BTC_F32 / price, + ); } pub fn get_date_ohlc(&mut self, date: Date) -> color_eyre::Result { @@ -396,31 +424,20 @@ impl PriceDatasets { pub fn get_height_ohlc( &mut self, height: Height, - timestamp: u32, - previous_timestamp: Option, + timestamp: Timestamp, + previous_timestamp: Option, ) -> color_eyre::Result { if let Some(ohlc) = self.ohlcs.height.get(&height) { return Ok(ohlc); } - let clean_timestamp = |timestamp| { - let date_time = Utc.timestamp_opt(i64::from(timestamp), 0).unwrap(); - - NaiveDateTime::new( - date_time.date_naive(), - NaiveTime::from_hms_opt(date_time.hour(), date_time.minute(), 0).unwrap(), - ) - .and_utc() - .timestamp() as u32 - }; - - let timestamp = clean_timestamp(timestamp); + let timestamp = timestamp.to_floored_seconds(); if previous_timestamp.is_none() && !height.is_first() { panic!("Shouldn't be possible"); } - let previous_timestamp = previous_timestamp.map(clean_timestamp); + let previous_timestamp = previous_timestamp.map(|t| t.to_floored_seconds()); let ohlc = self .get_from_1mn_kraken(timestamp, previous_timestamp) @@ -430,7 +447,7 @@ impl PriceDatasets { self.get_from_har_binance(timestamp, previous_timestamp) .unwrap_or_else(|_| { self.get_from_height_kibo(&height).unwrap_or_else(|_| { - let date = Date::from_timestamp(timestamp); + let date = timestamp.to_date(); panic!( "Can't find the price for: height: {height} - date: {date} @@ -479,8 +496,8 @@ How to fix this: fn get_from_1mn_kraken( &mut self, - timestamp: u32, - previous_timestamp: Option, + timestamp: Timestamp, + previous_timestamp: Option, ) -> color_eyre::Result { if self.kraken_1mn.is_none() || self @@ -500,8 +517,8 @@ How to fix this: fn get_from_1mn_binance( &mut self, - timestamp: u32, - previous_timestamp: Option, + timestamp: Timestamp, + previous_timestamp: Option, ) -> color_eyre::Result { if self.binance_1mn.is_none() || self @@ -526,8 +543,8 @@ How to fix this: fn get_from_har_binance( &mut self, - timestamp: u32, - previous_timestamp: Option, + timestamp: Timestamp, + previous_timestamp: Option, ) -> color_eyre::Result { if self.binance_har.is_none() { self.binance_har @@ -544,8 +561,8 @@ How to fix this: fn find_height_ohlc( tree: &Option>, - timestamp: u32, - previous_timestamp: Option, + timestamp: Timestamp, + previous_timestamp: Option, name: &str, ) -> color_eyre::Result { let tree = tree.as_ref().unwrap(); @@ -572,12 +589,12 @@ How to fix this: close: previous_ohlc.close, }; - let start = previous_timestamp.unwrap_or(0); + let start = previous_timestamp.unwrap_or_default(); let end = timestamp; // Otherwise it's a re-org if start < end { - tree.range(&start..=&end).skip(1).for_each(|(_, ohlc)| { + tree.range(&*start..=&*end).skip(1).for_each(|(_, ohlc)| { if ohlc.high > final_ohlc.high { final_ohlc.high = ohlc.high } @@ -624,6 +641,10 @@ impl AnyDataset for PriceDatasets { &self.price_89d_sma, &self.price_144d_sma, &self.price_200w_sma, + &self.all_time_high, + &self.market_price_to_all_time_high_ratio, + &self.drawdown, + &self.sats_per_dollar, ]; v.append(&mut self.price_1w_sma_ratio.to_computed_bi_map_vec()); @@ -660,6 +681,10 @@ impl AnyDataset for PriceDatasets { &mut self.price_89d_sma, &mut self.price_144d_sma, &mut self.price_200w_sma, + &mut self.all_time_high, + &mut self.market_price_to_all_time_high_ratio, + &mut self.drawdown, + &mut self.sats_per_dollar, ]; v.append(&mut self.price_1w_sma_ratio.to_computed_mut_bi_map_vec()); diff --git a/parser/src/datasets/subs/capitalization.rs b/parser/src/datasets/subs/capitalization.rs index 041cb5c2b..4cda50ed4 100644 --- a/parser/src/datasets/subs/capitalization.rs +++ b/parser/src/datasets/subs/capitalization.rs @@ -66,7 +66,7 @@ impl CapitalizationDataset { let realized_cap = self .realized_cap .height - .insert(height, state.realized_cap.to_dollar() as f32); + .insert(height, state.realized_cap().to_dollar() as f32); if is_date_last_block { self.realized_cap.date.insert(date, realized_cap); diff --git a/parser/src/datasets/subs/input.rs b/parser/src/datasets/subs/input.rs index cd9478f68..b22e1a045 100644 --- a/parser/src/datasets/subs/input.rs +++ b/parser/src/datasets/subs/input.rs @@ -51,9 +51,12 @@ impl InputSubDataset { }: &InsertData, state: &InputState, ) { - let count = self.count.height.insert(height, state.count.round() as u64); + let count = self + .count + .height + .insert(height, state.count().round() as u64); - self.volume.height.insert(height, state.volume.to_btc()); + self.volume.height.insert(height, state.volume().to_btc()); if is_date_last_block { self.count.date.insert(date, count); diff --git a/parser/src/datasets/subs/price_paid.rs b/parser/src/datasets/subs/price_paid.rs index efdf77123..43e688c96 100644 --- a/parser/src/datasets/subs/price_paid.rs +++ b/parser/src/datasets/subs/price_paid.rs @@ -83,28 +83,25 @@ impl PricePaidSubDataset { }: &InsertData, state: &PricePaidState, ) { - let PricePaidState { - pp_05p, - pp_10p, - pp_15p, - pp_20p, - pp_25p, - pp_30p, - pp_35p, - pp_40p, - pp_45p, - pp_median, - pp_55p, - pp_60p, - pp_65p, - pp_70p, - pp_75p, - pp_80p, - pp_85p, - pp_90p, - pp_95p, - .. - } = state; + let pp_05p = state.pp_05p(); + let pp_10p = state.pp_10p(); + let pp_15p = state.pp_15p(); + let pp_20p = state.pp_20p(); + let pp_25p = state.pp_25p(); + let pp_30p = state.pp_30p(); + let pp_35p = state.pp_35p(); + let pp_40p = state.pp_40p(); + let pp_45p = state.pp_45p(); + let pp_median = state.pp_median(); + let pp_55p = state.pp_55p(); + let pp_60p = state.pp_60p(); + let pp_65p = state.pp_65p(); + let pp_70p = state.pp_70p(); + let pp_75p = state.pp_75p(); + let pp_80p = state.pp_80p(); + let pp_85p = state.pp_85p(); + let pp_90p = state.pp_90p(); + let pp_95p = state.pp_95p(); // Check if iter was empty if pp_05p.is_none() { diff --git a/parser/src/datasets/subs/realized.rs b/parser/src/datasets/subs/realized.rs index 2e387c709..a0d93c4d7 100644 --- a/parser/src/datasets/subs/realized.rs +++ b/parser/src/datasets/subs/realized.rs @@ -15,9 +15,12 @@ pub struct RealizedSubDataset { // Inserted realized_profit: BiMap, realized_loss: BiMap, - value_destroyed: BiMap, value_created: BiMap, + adjusted_value_created: BiMap, + value_destroyed: BiMap, + adjusted_value_destroyed: BiMap, spent_output_profit_ratio: BiMap, + adjusted_spent_output_profit_ratio: BiMap, // Computed negative_realized_loss: BiMap, @@ -47,8 +50,14 @@ impl RealizedSubDataset { realized_profit: BiMap::new_bin(1, &f("realized_profit")), realized_loss: BiMap::new_bin(1, &f("realized_loss")), value_created: BiMap::new_bin(1, &f("value_created")), + adjusted_value_created: BiMap::new_bin(1, &f("adjusted_value_created")), value_destroyed: BiMap::new_bin(1, &f("value_destroyed")), + adjusted_value_destroyed: BiMap::new_bin(1, &f("adjusted_value_destroyed")), spent_output_profit_ratio: BiMap::new_bin(2, &f("spent_output_profit_ratio")), + adjusted_spent_output_profit_ratio: BiMap::new_bin( + 2, + &f("adjusted_spent_output_profit_ratio"), + ), negative_realized_loss: BiMap::new_bin(2, &f("negative_realized_loss")), net_realized_profit_and_loss: BiMap::new_bin(1, &f("net_realized_profit_and_loss")), @@ -89,29 +98,51 @@ impl RealizedSubDataset { ) { self.realized_profit .height - .insert(height, height_state.realized_profit.to_dollar() as f32); + .insert(height, height_state.realized_profit().to_dollar() as f32); self.realized_loss .height - .insert(height, height_state.realized_loss.to_dollar() as f32); + .insert(height, height_state.realized_loss().to_dollar() as f32); self.value_created .height - .insert(height, height_state.value_created.to_dollar() as f32); + .insert(height, height_state.value_created().to_dollar() as f32); + + self.adjusted_value_created.height.insert( + height, + height_state.adjusted_value_created().to_dollar() as f32, + ); self.value_destroyed .height - .insert(height, height_state.value_destroyed.to_dollar() as f32); + .insert(height, height_state.value_destroyed().to_dollar() as f32); + + self.adjusted_value_destroyed.height.insert( + height, + height_state.adjusted_value_destroyed().to_dollar() as f32, + ); self.spent_output_profit_ratio.height.insert(height, { - if height_state.value_destroyed > Price::ZERO { - (height_state.value_created.to_cent() as f64 - / height_state.value_destroyed.to_cent() as f64) as f32 + if height_state.value_destroyed() > Price::ZERO { + (height_state.value_created().to_cent() as f64 + / height_state.value_destroyed().to_cent() as f64) as f32 } else { 1.0 } }); + self.adjusted_spent_output_profit_ratio + .height + .insert(height, { + if height_state.adjusted_value_destroyed() > Price::ZERO { + (height_state.adjusted_value_created().to_cent() as f64 + / height_state.adjusted_value_destroyed().to_cent() as f64) + as f32 + } else { + 1.0 + } + }); + if is_date_last_block { self.realized_profit .date_insert_sum_range(date, date_blocks_range); @@ -122,14 +153,31 @@ impl RealizedSubDataset { self.value_created .date_insert_sum_range(date, date_blocks_range); + self.adjusted_value_created + .date_insert_sum_range(date, date_blocks_range); + self.value_destroyed .date_insert_sum_range(date, date_blocks_range); + self.adjusted_value_destroyed + .date_insert_sum_range(date, date_blocks_range); + self.spent_output_profit_ratio.date.insert( date, self.value_created.height.sum_range(date_blocks_range) / self.value_destroyed.height.sum_range(date_blocks_range), ); + + self.adjusted_spent_output_profit_ratio.date.insert( + date, + self.adjusted_value_created + .height + .sum_range(date_blocks_range) + / self + .adjusted_value_destroyed + .height + .sum_range(date_blocks_range), + ); } } @@ -208,8 +256,11 @@ impl AnyDataset for RealizedSubDataset { &self.realized_loss, &self.realized_profit, &self.value_created, + &self.adjusted_value_created, &self.value_destroyed, + &self.adjusted_value_destroyed, &self.spent_output_profit_ratio, + &self.adjusted_spent_output_profit_ratio, ] } @@ -218,8 +269,11 @@ impl AnyDataset for RealizedSubDataset { &mut self.realized_loss, &mut self.realized_profit, &mut self.value_created, + &mut self.adjusted_value_created, &mut self.value_destroyed, + &mut self.adjusted_value_destroyed, &mut self.spent_output_profit_ratio, + &mut self.adjusted_spent_output_profit_ratio, ] } diff --git a/parser/src/datasets/subs/recap.rs b/parser/src/datasets/subs/recap.rs index d902b2d88..6a379d831 100644 --- a/parser/src/datasets/subs/recap.rs +++ b/parser/src/datasets/subs/recap.rs @@ -254,99 +254,3 @@ where v } } - -// impl AnyDataset for RecapDataset -// where -// Value: MapValue, -// ChunkId: MapChunkId, -// Key: MapKey, -// Serialized: MapSerialized, -// { -// fn get_min_initial_states(&self) -> &MinInitialStates { -// &self.min_initial_states -// } - -// fn to_computed_date_map_vec(&self) -> Vec<&(dyn AnyDateMap + Send + Sync)> { -// let mut v: Vec<&(dyn AnyDateMap + Send + Sync)> = vec![]; - -// if let Some(min) = self.min.as_ref() { -// v.push(min); -// } - -// if let Some(max) = self.max.as_ref() { -// v.push(max); -// } - -// if let Some(median) = self.median.as_ref() { -// v.push(median); -// } - -// if let Some(average) = self.average.as_ref() { -// v.push(average); -// } - -// if let Some(sum) = self.sum.as_ref() { -// v.push(sum); -// } - -// if let Some(_90p) = self._90p.as_ref() { -// v.push(_90p); -// } - -// if let Some(_75p) = self._75p.as_ref() { -// v.push(_75p); -// } - -// if let Some(_25p) = self._25p.as_ref() { -// v.push(_25p); -// } - -// if let Some(_10p) = self._10p.as_ref() { -// v.push(_10p); -// } - -// v -// } - -// fn to_computed_mut_date_map_vec(&mut self) -> Vec<&mut dyn AnyDateMap> { -// let mut v: Vec<&mut dyn AnyDateMap> = vec![]; - -// if let Some(min) = self.min.as_mut() { -// v.push(min); -// } - -// if let Some(max) = self.max.as_mut() { -// v.push(max); -// } - -// if let Some(median) = self.median.as_mut() { -// v.push(median); -// } - -// if let Some(average) = self.average.as_mut() { -// v.push(average); -// } - -// if let Some(sum) = self.sum.as_mut() { -// v.push(sum); -// } - -// if let Some(_90p) = self._90p.as_mut() { -// v.push(_90p); -// } - -// if let Some(_75p) = self._75p.as_mut() { -// v.push(_75p); -// } - -// if let Some(_25p) = self._25p.as_mut() { -// v.push(_25p); -// } - -// if let Some(_10p) = self._10p.as_mut() { -// v.push(_10p); -// } - -// v -// } -// } diff --git a/parser/src/datasets/subs/supply.rs b/parser/src/datasets/subs/supply.rs index 44a430aa9..5968de0ad 100644 --- a/parser/src/datasets/subs/supply.rs +++ b/parser/src/datasets/subs/supply.rs @@ -60,7 +60,7 @@ impl SupplySubDataset { }: &InsertData, state: &SupplyState, ) { - let total_supply = self.supply.height.insert(height, state.supply.to_btc()); + let total_supply = self.supply.height.insert(height, state.supply().to_btc()); if is_date_last_block { self.supply.date.insert(date, total_supply); diff --git a/parser/src/datasets/subs/unrealized.rs b/parser/src/datasets/subs/unrealized.rs index e3d286fec..589202277 100644 --- a/parser/src/datasets/subs/unrealized.rs +++ b/parser/src/datasets/subs/unrealized.rs @@ -86,30 +86,30 @@ impl UnrealizedSubDataset { ) { self.supply_in_profit .height - .insert(height, block_state.supply_in_profit.to_btc()); + .insert(height, block_state.supply_in_profit().to_btc()); self.unrealized_profit .height - .insert(height, block_state.unrealized_profit.to_dollar() as f32); + .insert(height, block_state.unrealized_profit().to_dollar() as f32); self.unrealized_loss .height - .insert(height, block_state.unrealized_loss.to_dollar() as f32); + .insert(height, block_state.unrealized_loss().to_dollar() as f32); if is_date_last_block { let date_state = date_state.as_ref().unwrap(); self.supply_in_profit .date - .insert(date, date_state.supply_in_profit.to_btc()); + .insert(date, date_state.supply_in_profit().to_btc()); self.unrealized_profit .date - .insert(date, date_state.unrealized_profit.to_dollar() as f32); + .insert(date, date_state.unrealized_profit().to_dollar() as f32); self.unrealized_loss .date - .insert(date, date_state.unrealized_loss.to_dollar() as f32); + .insert(date, date_state.unrealized_loss().to_dollar() as f32); } } diff --git a/parser/src/datasets/subs/utxo.rs b/parser/src/datasets/subs/utxo.rs index 7f6921387..8af571c08 100644 --- a/parser/src/datasets/subs/utxo.rs +++ b/parser/src/datasets/subs/utxo.rs @@ -46,7 +46,7 @@ impl UTXOSubDataset { }: &InsertData, state: &UTXOState, ) { - let count = self.count.height.insert(height, state.count); + let count = self.count.height.insert(height, state.count()); if is_date_last_block { self.count.date.insert(date, count); diff --git a/parser/src/price/binance.rs b/parser/src/price/binance.rs index 27f4fdb8f..b393e8ba8 100644 --- a/parser/src/price/binance.rs +++ b/parser/src/price/binance.rs @@ -9,7 +9,7 @@ use serde_json::Value; use crate::{ datasets::OHLC, io::{Json, INPUTS_FOLDER_PATH}, - structs::Date, + structs::{Date, Timestamp}, utils::{log, retry}, }; @@ -169,9 +169,10 @@ impl Binance { // [timestamp, open, high, low, close, volume, ...] let array = value.as_array().unwrap(); - let date = Date::from_timestamp( + let date = Timestamp::wrap( (array.first().unwrap().as_u64().unwrap() / 1_000) as u32, - ); + ) + .to_date(); let get_f32 = |index: usize| { array diff --git a/parser/src/price/kraken.rs b/parser/src/price/kraken.rs index da51face3..1634e0f90 100644 --- a/parser/src/price/kraken.rs +++ b/parser/src/price/kraken.rs @@ -5,7 +5,7 @@ use serde_json::Value; use crate::{ datasets::OHLC, - structs::Date, + structs::{Date, Timestamp}, utils::{log, retry}, }; @@ -91,8 +91,8 @@ impl Kraken { .map(|value| { let array = value.as_array().unwrap(); - let date = - Date::from_timestamp(array.first().unwrap().as_u64().unwrap() as u32); + let date = Timestamp::wrap(array.first().unwrap().as_u64().unwrap() as u32) + .to_date(); let get_f32 = |index: usize| { array diff --git a/parser/src/states/cohorts_states/address/cohort_durable_states.rs b/parser/src/states/cohorts_states/address/cohort_durable_states.rs index fad797ade..55c367ce8 100644 --- a/parser/src/states/cohorts_states/address/cohort_durable_states.rs +++ b/parser/src/states/cohorts_states/address/cohort_durable_states.rs @@ -93,7 +93,7 @@ impl AddressCohortDurableStates { let one_shot_states_ref = &mut one_shot_states; - let supply = self.durable_states.supply_state.supply; + let supply = self.durable_states.supply_state.supply(); self.price_to_amount.iterate(supply, |price_paid, amount| { one_shot_states_ref diff --git a/parser/src/states/cohorts_states/address/cohorts_realized_states.rs b/parser/src/states/cohorts_states/address/cohorts_realized_states.rs index 45279de18..524cc31f6 100644 --- a/parser/src/states/cohorts_states/address/cohorts_realized_states.rs +++ b/parser/src/states/cohorts_states/address/cohorts_realized_states.rs @@ -19,14 +19,18 @@ impl AddressCohortsRealizedStates { let realized_profit = realized_data.profit; let realized_loss = realized_data.loss; let value_created = realized_data.value_created; + let adjusted_value_created = realized_data.adjusted_value_created; let value_destroyed = realized_data.value_destroyed; + let adjusted_value_destroyed = realized_data.adjusted_value_destroyed; let normal_iteration = move |state: &mut RealizedState| -> color_eyre::Result<()> { state.iterate( realized_profit, realized_loss, value_created, + adjusted_value_created, value_destroyed, + adjusted_value_destroyed, ); Ok(()) }; @@ -35,8 +39,12 @@ impl AddressCohortsRealizedStates { liquidity_classification.split(realized_profit.to_cent() as f64); let split_realized_loss = liquidity_classification.split(realized_loss.to_cent() as f64); let split_value_created = liquidity_classification.split(value_created.to_cent() as f64); + let split_adjusted_value_created = + liquidity_classification.split(adjusted_value_created.to_cent() as f64); let split_value_destroyed = liquidity_classification.split(value_destroyed.to_cent() as f64); + let split_adjusted_value_destroyed = + liquidity_classification.split(adjusted_value_destroyed.to_cent() as f64); let liquified_iteration = move |liquidity, state: &mut RealizedState| -> color_eyre::Result<()> { @@ -44,7 +52,9 @@ impl AddressCohortsRealizedStates { Price::from_cent(split_realized_profit.from(liquidity) as u64), Price::from_cent(split_realized_loss.from(liquidity) as u64), Price::from_cent(split_value_created.from(liquidity) as u64), + Price::from_cent(split_adjusted_value_created.from(liquidity) as u64), Price::from_cent(split_value_destroyed.from(liquidity) as u64), + Price::from_cent(split_adjusted_value_destroyed.from(liquidity) as u64), ); Ok(()) }; diff --git a/parser/src/states/cohorts_states/any/capitalization_state.rs b/parser/src/states/cohorts_states/any/capitalization_state.rs index d06238d60..ae475dd46 100644 --- a/parser/src/states/cohorts_states/any/capitalization_state.rs +++ b/parser/src/states/cohorts_states/any/capitalization_state.rs @@ -6,10 +6,14 @@ use crate::structs::Price; #[derive(Debug, Default, Allocative)] pub struct CapitalizationState { - pub realized_cap: Price, + realized_cap: Price, } impl CapitalizationState { + pub fn realized_cap(&self) -> Price { + self.realized_cap + } + pub fn increment(&mut self, realized_cap: Price) { self.realized_cap += realized_cap; } diff --git a/parser/src/states/cohorts_states/any/input_state.rs b/parser/src/states/cohorts_states/any/input_state.rs index 07d13930d..112bb572b 100644 --- a/parser/src/states/cohorts_states/any/input_state.rs +++ b/parser/src/states/cohorts_states/any/input_state.rs @@ -2,11 +2,19 @@ use crate::structs::Amount; #[derive(Debug, Default)] pub struct InputState { - pub count: f64, - pub volume: Amount, + count: f64, + volume: Amount, } impl InputState { + pub fn count(&self) -> f64 { + self.count + } + + pub fn volume(&self) -> Amount { + self.volume + } + pub fn iterate(&mut self, count: f64, volume: Amount) { self.count += count; self.volume += volume; diff --git a/parser/src/states/cohorts_states/any/output_state.rs b/parser/src/states/cohorts_states/any/output_state.rs index 33a5dcc47..1023b70a1 100644 --- a/parser/src/states/cohorts_states/any/output_state.rs +++ b/parser/src/states/cohorts_states/any/output_state.rs @@ -2,11 +2,19 @@ use crate::structs::Amount; #[derive(Debug, Default)] pub struct OutputState { - pub count: f64, - pub volume: Amount, + count: f64, + volume: Amount, } impl OutputState { + // pub fn count(&self) -> f64 { + // self.count + // } + + // pub fn volume(&self) -> Amount { + // self.volume + // } + pub fn iterate(&mut self, count: f64, volume: Amount) { self.count += count; self.volume += volume; diff --git a/parser/src/states/cohorts_states/any/price_paid_state.rs b/parser/src/states/cohorts_states/any/price_paid_state.rs index 4e14b69bc..ee1142a97 100644 --- a/parser/src/states/cohorts_states/any/price_paid_state.rs +++ b/parser/src/states/cohorts_states/any/price_paid_state.rs @@ -2,30 +2,106 @@ use crate::structs::{Amount, Price}; #[derive(Default, Debug)] pub struct PricePaidState { - pub pp_05p: Option, - pub pp_10p: Option, - pub pp_15p: Option, - pub pp_20p: Option, - pub pp_25p: Option, - pub pp_30p: Option, - pub pp_35p: Option, - pub pp_40p: Option, - pub pp_45p: Option, - pub pp_median: Option, - pub pp_55p: Option, - pub pp_60p: Option, - pub pp_65p: Option, - pub pp_70p: Option, - pub pp_75p: Option, - pub pp_80p: Option, - pub pp_85p: Option, - pub pp_90p: Option, - pub pp_95p: Option, + pp_05p: Option, + pp_10p: Option, + pp_15p: Option, + pp_20p: Option, + pp_25p: Option, + pp_30p: Option, + pp_35p: Option, + pp_40p: Option, + pp_45p: Option, + pp_median: Option, + pp_55p: Option, + pp_60p: Option, + pp_65p: Option, + pp_70p: Option, + pp_75p: Option, + pp_80p: Option, + pp_85p: Option, + pp_90p: Option, + pp_95p: Option, - pub processed_amount: Amount, + processed_amount: Amount, } impl PricePaidState { + pub fn pp_05p(&self) -> Option { + self.pp_05p + } + + pub fn pp_10p(&self) -> Option { + self.pp_10p + } + + pub fn pp_15p(&self) -> Option { + self.pp_15p + } + + pub fn pp_20p(&self) -> Option { + self.pp_20p + } + + pub fn pp_25p(&self) -> Option { + self.pp_25p + } + + pub fn pp_30p(&self) -> Option { + self.pp_30p + } + + pub fn pp_35p(&self) -> Option { + self.pp_35p + } + + pub fn pp_40p(&self) -> Option { + self.pp_40p + } + + pub fn pp_45p(&self) -> Option { + self.pp_45p + } + + pub fn pp_median(&self) -> Option { + self.pp_median + } + + pub fn pp_55p(&self) -> Option { + self.pp_55p + } + + pub fn pp_60p(&self) -> Option { + self.pp_60p + } + + pub fn pp_65p(&self) -> Option { + self.pp_65p + } + + pub fn pp_70p(&self) -> Option { + self.pp_70p + } + + pub fn pp_75p(&self) -> Option { + self.pp_75p + } + + pub fn pp_80p(&self) -> Option { + self.pp_80p + } + + pub fn pp_85p(&self) -> Option { + self.pp_85p + } + + pub fn pp_90p(&self) -> Option { + self.pp_90p + } + + pub fn pp_95p(&self) -> Option { + self.pp_95p + } + pub fn iterate(&mut self, price: Price, amount: Amount, supply: Amount) { let PricePaidState { processed_amount: processed_supply, diff --git a/parser/src/states/cohorts_states/any/realized_state.rs b/parser/src/states/cohorts_states/any/realized_state.rs index e8dcdcb9d..d53e48b5c 100644 --- a/parser/src/states/cohorts_states/any/realized_state.rs +++ b/parser/src/states/cohorts_states/any/realized_state.rs @@ -2,23 +2,53 @@ use crate::structs::Price; #[derive(Debug, Default)] pub struct RealizedState { - pub realized_profit: Price, - pub realized_loss: Price, - pub value_created: Price, - pub value_destroyed: Price, + realized_profit: Price, + realized_loss: Price, + value_created: Price, + adjusted_value_created: Price, + value_destroyed: Price, + adjusted_value_destroyed: Price, } impl RealizedState { + pub fn realized_profit(&self) -> Price { + self.realized_profit + } + + pub fn realized_loss(&self) -> Price { + self.realized_loss + } + + pub fn value_created(&self) -> Price { + self.value_created + } + + pub fn adjusted_value_created(&self) -> Price { + self.adjusted_value_created + } + + pub fn value_destroyed(&self) -> Price { + self.value_destroyed + } + + pub fn adjusted_value_destroyed(&self) -> Price { + self.adjusted_value_destroyed + } + pub fn iterate( &mut self, realized_profit: Price, realized_loss: Price, value_created: Price, + adjusted_value_created: Price, value_destroyed: Price, + adjusted_value_destroyed: Price, ) { self.realized_profit += realized_profit; self.realized_loss += realized_loss; self.value_created += value_created; + self.adjusted_value_created += adjusted_value_created; self.value_destroyed += value_destroyed; + self.adjusted_value_destroyed += adjusted_value_destroyed; } } diff --git a/parser/src/states/cohorts_states/any/supply_state.rs b/parser/src/states/cohorts_states/any/supply_state.rs index 45e467ffa..268f2f1fb 100644 --- a/parser/src/states/cohorts_states/any/supply_state.rs +++ b/parser/src/states/cohorts_states/any/supply_state.rs @@ -7,10 +7,14 @@ use crate::structs::Amount; #[derive(Debug, Default, Allocative)] pub struct SupplyState { - pub supply: Amount, + supply: Amount, } impl SupplyState { + pub fn supply(&self) -> Amount { + self.supply + } + pub fn increment(&mut self, amount: Amount) { self.supply += amount; } diff --git a/parser/src/states/cohorts_states/any/unrealized_state.rs b/parser/src/states/cohorts_states/any/unrealized_state.rs index 121d85920..6cf5fa0f0 100644 --- a/parser/src/states/cohorts_states/any/unrealized_state.rs +++ b/parser/src/states/cohorts_states/any/unrealized_state.rs @@ -4,12 +4,24 @@ use crate::structs::{Amount, Price}; #[derive(Debug, Default)] pub struct UnrealizedState { - pub supply_in_profit: Amount, - pub unrealized_profit: Price, - pub unrealized_loss: Price, + supply_in_profit: Amount, + unrealized_profit: Price, + unrealized_loss: Price, } impl UnrealizedState { + pub fn supply_in_profit(&self) -> Amount { + self.supply_in_profit + } + + pub fn unrealized_profit(&self) -> Price { + self.unrealized_profit + } + + pub fn unrealized_loss(&self) -> Price { + self.unrealized_loss + } + #[inline] pub fn iterate(&mut self, price_then: Price, price_now: Price, amount: Amount) { match price_then.cmp(&price_now) { diff --git a/parser/src/states/cohorts_states/any/utxo_state.rs b/parser/src/states/cohorts_states/any/utxo_state.rs index c4470fbb2..6ca0b3595 100644 --- a/parser/src/states/cohorts_states/any/utxo_state.rs +++ b/parser/src/states/cohorts_states/any/utxo_state.rs @@ -5,10 +5,14 @@ use color_eyre::eyre::eyre; #[derive(Debug, Default, Allocative)] pub struct UTXOState { - pub count: f64, + count: f64, } impl UTXOState { + pub fn count(&self) -> f64 { + self.count + } + pub fn increment(&mut self, utxo_count: f64) { self.count += utxo_count; } diff --git a/parser/src/states/cohorts_states/utxo/cohort_durable_states.rs b/parser/src/states/cohorts_states/utxo/cohort_durable_states.rs index 4d473c178..af47446e4 100644 --- a/parser/src/states/cohorts_states/utxo/cohort_durable_states.rs +++ b/parser/src/states/cohorts_states/utxo/cohort_durable_states.rs @@ -85,7 +85,7 @@ impl UTXOCohortDurableStates { .replace(UnrealizedState::default()); } - let supply = self.durable_states.supply_state.supply; + let supply = self.durable_states.supply_state.supply(); let one_shot_states_ref = &mut one_shot_states; diff --git a/parser/src/states/cohorts_states/utxo/cohorts_durable_states.rs b/parser/src/states/cohorts_states/utxo/cohorts_durable_states.rs index b50fd225a..3dab4ee4f 100644 --- a/parser/src/states/cohorts_states/utxo/cohorts_durable_states.rs +++ b/parser/src/states/cohorts_states/utxo/cohorts_durable_states.rs @@ -5,9 +5,7 @@ use rayon::prelude::*; use crate::{ states::DateDataVec, - structs::{Amount, BlockData, Price, SentData}, - utils::difference_in_days_between_timestamps, - Date, + structs::{Amount, BlockData, Price, SentData, Timestamp}, }; use super::{SplitByUTXOCohort, UTXOCohortDurableStates, UTXOCohortsOneShotStates}; @@ -32,7 +30,7 @@ impl UTXOCohortsDurableStates { return; } - let increment_days_old = difference_in_days_between_timestamps( + let increment_days_old = Timestamp::difference_in_days_between( block_data.timestamp, last_block_data.timestamp, ); @@ -65,18 +63,18 @@ impl UTXOCohortsDurableStates { } if block_data.height == last_block_data.height { - let year = Date::from_timestamp(block_data.timestamp).year() as u32; + let year = block_data.timestamp.to_year(); self.initial_filtered_apply(&0, &year, |state| { state.increment(amount, utxo_count, price).unwrap(); }) } else { - let increment_days_old = difference_in_days_between_timestamps( + let increment_days_old = Timestamp::difference_in_days_between( block_data.timestamp, last_block_data.timestamp, ); - let decrement_days_old = difference_in_days_between_timestamps( + let decrement_days_old = Timestamp::difference_in_days_between( block_data.timestamp, previous_last_block_data .unwrap_or_else(|| { @@ -117,12 +115,12 @@ impl UTXOCohortsDurableStates { return; } - let days_old = difference_in_days_between_timestamps( + let days_old = Timestamp::difference_in_days_between( block_data.timestamp, previous_last_block_data.timestamp, ); - let year = Date::from_timestamp(block_data.timestamp).year() as u32; + let year = block_data.timestamp.to_year(); self.initial_filtered_apply(&days_old, &year, |state| { state diff --git a/parser/src/states/cohorts_states/utxo/cohorts_sent_states.rs b/parser/src/states/cohorts_states/utxo/cohorts_sent_states.rs index 1674e51db..73b037162 100644 --- a/parser/src/states/cohorts_states/utxo/cohorts_sent_states.rs +++ b/parser/src/states/cohorts_states/utxo/cohorts_sent_states.rs @@ -5,8 +5,7 @@ use derive_deref::{Deref, DerefMut}; use crate::{ states::{DateDataVec, InputState, RealizedState}, - structs::{BlockPath, Price, SentData}, - utils::difference_in_days_between_timestamps, + structs::{BlockPath, Price, SentData, Timestamp}, }; use super::SplitByUTXOCohort; @@ -26,6 +25,7 @@ impl UTXOCohortsSentStates { date_data_vec: &DateDataVec, block_path_to_sent_data: &BTreeMap, current_price: Price, + current_timestamp: Timestamp, ) { if let Some(last_block_data) = date_data_vec.last_block() { block_path_to_sent_data @@ -37,11 +37,12 @@ impl UTXOCohortsSentStates { let block_data = date_data.get_block_data(block_path).unwrap(); - let days_old = difference_in_days_between_timestamps( + let days_old = Timestamp::difference_in_days_between( block_data.timestamp, last_block_data.timestamp, ); + let previous_timestamp = block_data.timestamp; let previous_price = block_data.price; let amount_sent = sent_data.volume; @@ -52,18 +53,34 @@ impl UTXOCohortsSentStates { let previous_value = previous_price * amount_sent; let current_value = current_price * amount_sent; - state.realized.value_destroyed += previous_value; - state.realized.value_created += current_value; + let mut realized_profit = Price::ZERO; + let mut realized_loss = Price::ZERO; + let value_created = current_value; + let mut adjusted_value_created = Price::ZERO; + let value_destroyed = previous_value; + let mut adjusted_value_destroyed = Price::ZERO; match previous_value.cmp(¤t_value) { - Ordering::Less => { - state.realized.realized_profit += current_value - previous_value; - } + Ordering::Less => realized_profit = current_value - previous_value, Ordering::Greater => { - state.realized.realized_loss += previous_value - current_value; + realized_loss = previous_value - current_value; } Ordering::Equal => {} } + + if previous_timestamp.older_by_1h_plus_than(current_timestamp) { + adjusted_value_created = value_created; + adjusted_value_destroyed = value_destroyed; + } + + state.realized.iterate( + realized_profit, + realized_loss, + value_created, + adjusted_value_created, + value_destroyed, + adjusted_value_destroyed, + ); }) }) } diff --git a/parser/src/structs/address_realized_data.rs b/parser/src/structs/address_realized_data.rs index a2ce42740..5fd4a471a 100644 --- a/parser/src/structs/address_realized_data.rs +++ b/parser/src/structs/address_realized_data.rs @@ -1,4 +1,4 @@ -use super::{AddressData, Amount, Price}; +use super::{AddressData, Amount, Price, Timestamp}; #[derive(Debug)] pub struct AddressRealizedData { @@ -8,7 +8,9 @@ pub struct AddressRealizedData { pub profit: Price, pub loss: Price, pub value_created: Price, + pub adjusted_value_created: Price, pub value_destroyed: Price, + pub adjusted_value_destroyed: Price, pub utxos_created: u32, pub utxos_destroyed: u32, } @@ -23,7 +25,9 @@ impl AddressRealizedData { utxos_created: 0, utxos_destroyed: 0, value_created: Price::ZERO, + adjusted_value_created: Price::ZERO, value_destroyed: Price::ZERO, + adjusted_value_destroyed: Price::ZERO, initial_address_data: *initial_address_data, } } @@ -33,7 +37,14 @@ impl AddressRealizedData { self.utxos_created += 1; } - pub fn send(&mut self, amount: Amount, current_price: Price, previous_price: Price) { + pub fn send( + &mut self, + amount: Amount, + current_price: Price, + previous_price: Price, + current_timestamp: Timestamp, + previous_timestamp: Timestamp, + ) { self.sent += amount; self.utxos_destroyed += 1; @@ -44,6 +55,11 @@ impl AddressRealizedData { self.value_created += current_value; self.value_destroyed += previous_value; + if previous_timestamp.older_by_1h_plus_than(current_timestamp) { + self.adjusted_value_created += current_value; + self.adjusted_value_destroyed += previous_value; + } + if current_value >= previous_value { self.profit += current_value - previous_value; } else { diff --git a/parser/src/structs/amount.rs b/parser/src/structs/amount.rs index 26d43167c..6ff8ce1d4 100644 --- a/parser/src/structs/amount.rs +++ b/parser/src/structs/amount.rs @@ -36,6 +36,7 @@ direct_repr!(Amount); impl Amount { pub const ZERO: Self = Self(BitcoinAmount::ZERO); + pub const ONE_BTC_F32: f32 = 100_000_000.0; pub const ONE_BTC_F64: f64 = 100_000_000.0; #[inline(always)] diff --git a/parser/src/structs/bi_map.rs b/parser/src/structs/bi_map.rs index 2847cbed1..b0f095a68 100644 --- a/parser/src/structs/bi_map.rs +++ b/parser/src/structs/bi_map.rs @@ -299,6 +299,18 @@ where self.date .multi_insert_percentile(dates, date_map_and_percentiles, days); } + + pub fn multi_insert_max( + &mut self, + heights: &[Height], + dates: &[Date], + source: &mut BiMap, + ) where + Value: PartialOrd, + { + self.height.multi_insert_max(heights, &mut source.height); + self.date.multi_insert_max(dates, &mut source.date); + } } pub trait AnyBiMap { diff --git a/parser/src/structs/block_data.rs b/parser/src/structs/block_data.rs index e19d26f1b..99484f11b 100644 --- a/parser/src/structs/block_data.rs +++ b/parser/src/structs/block_data.rs @@ -2,19 +2,19 @@ use allocative::Allocative; use bincode::{Decode, Encode}; use serde::{Deserialize, Serialize}; -use super::{Amount, Height, Price}; +use super::{Amount, Height, Price, Timestamp}; #[derive(Debug, Serialize, Deserialize, Encode, Decode, Allocative)] pub struct BlockData { pub height: Height, pub price: Price, - pub timestamp: u32, + pub timestamp: Timestamp, pub amount: Amount, pub utxos: u32, } impl BlockData { - pub fn new(height: Height, price: Price, timestamp: u32) -> Self { + pub fn new(height: Height, price: Price, timestamp: Timestamp) -> Self { Self { height, price, diff --git a/parser/src/structs/config.rs b/parser/src/structs/config.rs index dfe420876..02e19237d 100644 --- a/parser/src/structs/config.rs +++ b/parser/src/structs/config.rs @@ -33,20 +33,21 @@ pub struct Config { pub delay: Option, /// Start a dry run, default: false, not saved - #[arg(long, default_value_t = false)] - pub dry_run: bool, + #[arg(long, value_name = "BOOL")] + dry_run: Option, /// Record ram usage, default: false, not saved - #[arg(long, default_value_t = false)] - pub record_ram_usage: bool, + #[arg(long, value_name = "BOOL")] + record_ram_usage: Option, } impl Config { const PATH: &'static str = "./config.toml"; pub fn import() -> color_eyre::Result { - let mut config_saved = fs::read_to_string(Self::PATH) - .map_or(Config::default(), |contents| { + let mut config_saved = + fs::read_to_string(Self::PATH).map_or(Config::default(), |contents| { + dbg!(&contents); toml::from_str(&contents).unwrap_or_default() }); @@ -92,8 +93,8 @@ impl Config { log(&format!("rpcuser: {:?}", config.rpcuser)); log(&format!("rpcpassword: {:?}", config.rpcpassword)); log(&format!("delay: {:?}", config.delay)); - log(&format!("dry_run: {}", config.dry_run)); - log(&format!("record_ram_usage: {}", config.record_ram_usage)); + log(&format!("dry_run: {:?}", config.dry_run)); + log(&format!("record_ram_usage: {:?}", config.record_ram_usage)); log("---"); Ok(config) @@ -124,4 +125,12 @@ impl Config { fn write(&self) -> std::io::Result<()> { fs::write(Self::PATH, toml::to_string(self).unwrap()) } + + pub fn dry_run(&self) -> bool { + self.dry_run.is_some_and(|b| b) + } + + pub fn record_ram_usage(&self) -> bool { + self.record_ram_usage.is_some_and(|b| b) + } } diff --git a/parser/src/structs/date.rs b/parser/src/structs/date.rs index fd2f2a47e..1cbb67321 100644 --- a/parser/src/structs/date.rs +++ b/parser/src/structs/date.rs @@ -7,7 +7,7 @@ use bincode::{ error::{DecodeError, EncodeError}, BorrowDecode, Decode, Encode, }; -use chrono::{Datelike, Days, NaiveDate, TimeZone, Utc}; +use chrono::{Datelike, Days, NaiveDate}; use derive_deref::{Deref, DerefMut}; use serde::{Deserialize, Serialize}; @@ -38,14 +38,6 @@ impl Date { Self(date) } - pub fn from_timestamp(timestamp: u32) -> Self { - Self( - Utc.timestamp_opt(i64::from(timestamp), 0) - .unwrap() - .date_naive(), - ) - } - pub fn today() -> Self { Self(chrono::offset::Utc::now().date_naive()) } diff --git a/parser/src/structs/generic_map.rs b/parser/src/structs/generic_map.rs index 04f6ff1db..8539783cb 100644 --- a/parser/src/structs/generic_map.rs +++ b/parser/src/structs/generic_map.rs @@ -818,4 +818,36 @@ where ControlFlow::Continue(()) }); } + + pub fn multi_insert_max(&mut self, keys: &[Key], source: &mut Self) + where + Value: Default + PartialOrd, + { + let mut max = None; + + keys.iter().for_each(|key| { + let previous_max = max.unwrap_or_else(|| { + key.checked_sub(1) + .and_then(|previous_max_key| self.get(&previous_max_key)) + .unwrap_or_default() + }); + + let last_value = source.get_or_import(key).unwrap_or_else(|| { + dbg!(key); + panic!() + }); + + if max.is_none() || last_value > previous_max { + max.replace(last_value); + } + + self.insert( + *key, + max.unwrap_or_else(|| { + dbg!(previous_max, last_value, max); + panic!(); + }), + ); + }); + } } diff --git a/parser/src/structs/map_value.rs b/parser/src/structs/map_value.rs index b29aa25e4..dfc1f53c2 100644 --- a/parser/src/structs/map_value.rs +++ b/parser/src/structs/map_value.rs @@ -6,7 +6,7 @@ use serde::{de::DeserializeOwned, Serialize}; use crate::datasets::OHLC; -use super::{Date, Height}; +use super::{Date, Height, Timestamp}; pub trait MapValue: Clone @@ -32,3 +32,4 @@ impl MapValue for f64 {} impl MapValue for Date {} impl MapValue for OHLC {} impl MapValue for Height {} +impl MapValue for Timestamp {} diff --git a/parser/src/structs/mod.rs b/parser/src/structs/mod.rs index e28eee563..d01518dcd 100644 --- a/parser/src/structs/mod.rs +++ b/parser/src/structs/mod.rs @@ -29,6 +29,7 @@ mod price; mod sent_data; mod serialized_btreemap; mod serialized_vec; +mod timestamp; mod tx_data; mod txout_index; @@ -63,5 +64,6 @@ pub use price::*; pub use sent_data::*; pub use serialized_btreemap::*; pub use serialized_vec::*; +pub use timestamp::*; pub use tx_data::*; pub use txout_index::*; diff --git a/parser/src/structs/timestamp.rs b/parser/src/structs/timestamp.rs new file mode 100644 index 000000000..d5b5585cc --- /dev/null +++ b/parser/src/structs/timestamp.rs @@ -0,0 +1,83 @@ +use std::ops::Sub; + +use allocative::Allocative; +use bincode::{Decode, Encode}; +use chrono::{Datelike, NaiveDateTime, NaiveTime, TimeZone, Timelike, Utc}; +use derive_deref::{Deref, DerefMut}; +use serde::{Deserialize, Serialize}; + +use crate::utils::{ONE_DAY_IN_S, ONE_HOUR_IN_S}; + +use super::Date; + +#[derive( + Debug, + Default, + Clone, + Copy, + Allocative, + Serialize, + Deserialize, + Deref, + DerefMut, + PartialEq, + Eq, + PartialOrd, + Ord, + Encode, + Decode, +)] +pub struct Timestamp(u32); + +impl Timestamp { + pub const ZERO: Self = Self(0); + + pub fn wrap(timestamp: u32) -> Self { + Self(timestamp) + } + + pub fn to_date(self) -> Date { + Date::wrap( + Utc.timestamp_opt(i64::from(self.0), 0) + .unwrap() + .date_naive(), + ) + } + + pub fn to_year(self) -> u32 { + self.to_date().year() as u32 + } + + pub fn to_floored_seconds(self) -> Self { + let date_time = Utc.timestamp_opt(i64::from(self.0), 0).unwrap(); + + Self::wrap( + NaiveDateTime::new( + date_time.date_naive(), + NaiveTime::from_hms_opt(date_time.hour(), date_time.minute(), 0).unwrap(), + ) + .and_utc() + .timestamp() as u32, + ) + } + + pub fn difference_in_days_between(older: Self, younger: Self) -> u32 { + if younger <= older { + 0 + } else { + *(younger - older) / ONE_DAY_IN_S as u32 + } + } + + pub fn older_by_1h_plus_than(&self, younger: Self) -> bool { + younger.checked_sub(**self).unwrap_or_default() > ONE_HOUR_IN_S as u32 + } +} + +impl Sub for Timestamp { + type Output = Self; + + fn sub(self, rhs: Self) -> Self::Output { + Self::wrap(self.0 - rhs.0) + } +} diff --git a/parser/src/utils/time.rs b/parser/src/utils/time.rs index e1d471de1..ec5c090f1 100644 --- a/parser/src/utils/time.rs +++ b/parser/src/utils/time.rs @@ -2,8 +2,6 @@ use std::time::Instant; use crate::utils::log; -use super::ONE_DAY_IN_S; - pub fn time(name: &str, function: F) -> T where F: FnOnce() -> T, @@ -16,11 +14,3 @@ where returned } - -pub fn difference_in_days_between_timestamps(older: u32, younger: u32) -> u32 { - if younger <= older { - 0 - } else { - (younger - older) / ONE_DAY_IN_S as u32 - } -} diff --git a/server/Cargo.lock b/server/Cargo.lock index ba419e7db..ab7c82498 100644 --- a/server/Cargo.lock +++ b/server/Cargo.lock @@ -450,9 +450,7 @@ dependencies = [ [[package]] name = "biter" -version = "0.1.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bd2ea6b4c4046feaaf73f3dff1cc648328af021d50be95946e0e7a807c985b47" +version = "0.1.1" dependencies = [ "bitcoin", "bitcoincore-rpc", diff --git a/website/types/paths.d.ts b/website/types/paths.d.ts index 7776f1442..92a61352e 100644 --- a/website/types/paths.d.ts +++ b/website/types/paths.d.ts @@ -1,8 +1,8 @@ // This file is auto generated by the server // Manual changes are forbidden -export type DatePath = "date-to-year-2020-45p-price-paid" | "date-to-year-2016-value-destroyed" | "date-to-from-15y-utxo-count" | "date-to-subsidy" | "date-to-market-price-to-megalodon-realized-price-ratio-0-1p" | "date-to-up-to-10y-median-price-paid" | "date-to-p2sh-supply-in-loss-to-circulating-supply-ratio" | "date-to-year-2011-realized-value" | "date-to-year-2015-25p-price-paid" | "date-to-plankton-80p-price-paid" | "date-to-up-to-1y-supply-in-loss-to-circulating-supply-ratio" | "date-to-from-1y-cumulative-realized-profit" | "date-to-market-price-to-up-to-5m-realized-price-ratio-1y-sma-momentum-oscillator" | "date-to-from-7y-to-10y-15p-price-paid" | "date-to-crab-realized-profit" | "date-to-from-3m-to-6m-realized-price-0-1p" | "date-to-megalodon-net-unrealized-profit-and-loss" | "date-to-from-10y-to-15y-20p-price-paid" | "date-to-p2pkh-value-created" | "date-to-shark-35p-price-paid" | "date-to-blocks-mined-1y-target" | "date-to-year-2011-net-realized-profit-and-loss" | "date-to-up-to-4m-value-created" | "date-to-up-to-3m-negative-realized-loss" | "date-to-up-to-2m-95p-price-paid" | "date-to-from-1d-to-1w-realized-price-99-5p" | "date-to-year-2013-realized-price" | "date-to-market-price-to-from-10y-to-15y-realized-price-ratio-1p" | "date-to-shrimp-20p-price-paid" | "date-to-year-2015-realized-loss" | "date-to-up-to-1d-realized-price-99-9p" | "date-to-whale-supply-in-profit" | "date-to-market-price-to-year-2009-realized-price-ratio" | "date-to-year-2014-20p-price-paid" | "date-to-market-price-to-up-to-2m-realized-price-ratio-99-5p" | "date-to-market-price-to-from-6m-to-1y-realized-price-ratio" | "date-to-up-to-3m-realized-loss" | "date-to-market-price-to-p2tr-realized-price-ratio" | "date-to-p2sh-cumulative-net-realized-profit-and-loss-1m-net-change" | "date-to-year-2012-realized-loss" | "date-to-market-price-to-from-15y-realized-price-ratio-99-5p" | "date-to-market-price-to-highly-liquid-realized-price-ratio-0-5p" | "date-to-block-interval-1d-min" | "date-to-year-2020-40p-price-paid" | "date-to-year-2013-55p-price-paid" | "date-to-from-6m-to-1y-90p-price-paid" | "date-to-sth-supply-in-profit" | "date-to-fish-cumulative-realized-loss" | "date-to-p2pkh-05p-price-paid" | "date-to-from-15y-realized-price-99p" | "date-to-year-2019-cumulative-net-realized-profit-and-loss-1m-net-change" | "date-to-year-2021-realized-cap-1m-net-change" | "date-to-from-4y-15p-price-paid" | "date-to-from-1w-to-1m-supply" | "date-to-year-2022-80p-price-paid" | "date-to-from-2y-to-3y-realized-value" | "date-to-from-15y-realized-value" | "date-to-liquid-cumulative-realized-profit" | "date-to-up-to-5y-net-realized-profit-and-loss" | "date-to-whale-sell-side-risk-ratio" | "date-to-liquid-realized-price-99p" | "date-to-sth-supply-in-loss-to-own-supply-ratio" | "date-to-up-to-1w-supply-in-loss-to-own-supply-ratio" | "date-to-p2wsh-supply-in-profit" | "date-to-from-10y-to-15y-realized-price-99-5p" | "date-to-liquid-40p-price-paid" | "date-to-price-1y-sma-1p" | "date-to-year-2017-cumulative-net-realized-profit-and-loss" | "date-to-year-2018-55p-price-paid" | "date-to-year-2013-60p-price-paid" | "date-to-year-2022-value-destroyed" | "date-to-from-1y-30p-price-paid" | "date-to-from-1y-35p-price-paid" | "date-to-p2pk-cumulative-realized-profit" | "date-to-market-price-to-p2wsh-realized-price-ratio-1y-sma" | "date-to-from-2y-realized-price-99-9p" | "date-to-from-3y-to-5y-realized-price-99p" | "date-to-from-7y-to-10y-75p-price-paid" | "date-to-up-to-3y-net-unrealized-profit-and-loss" | "date-to-market-price-to-from-1y-realized-price-ratio-99-9p" | "date-to-up-to-5y-realized-price-0-5p" | "date-to-year-2023-net-unrealized-profit-and-loss-to-market-cap-ratio" | "date-to-market-price-to-p2pk-realized-price-ratio-99-9p" | "date-to-up-to-1w-20p-price-paid" | "date-to-whale-supply-in-loss-to-circulating-supply-ratio" | "date-to-from-10y-75p-price-paid" | "date-to-p2wsh-utxo-count" | "date-to-up-to-1y-supply-in-profit-to-circulating-supply-ratio" | "date-to-up-to-4m-30p-price-paid" | "date-to-highly-liquid-05p-price-paid" | "date-to-market-price-to-year-2013-realized-price-ratio-0-1p" | "date-to-highly-liquid-net-unrealized-profit-and-loss" | "date-to-market-price-to-plankton-realized-price-ratio-1y-sma-momentum-oscillator" | "date-to-market-price-to-up-to-15y-realized-price-ratio-99-5p" | "date-to-p2wpkh-address-count" | "date-to-up-to-1m-unrealized-loss" | "date-to-up-to-5m-net-unrealized-profit-and-loss" | "date-to-market-price-to-liquid-realized-price-ratio-99-5p" | "date-to-from-1d-to-1w-cumulative-realized-profit" | "date-to-up-to-1m-unrealized-profit" | "date-to-liveliness" | "date-to-p2pkh-supply" | "date-to-market-price-to-year-2015-realized-price-ratio-0-1p" | "date-to-up-to-7y-realized-loss" | "date-to-up-to-1d-realized-price" | "date-to-from-10y-supply-in-loss-to-circulating-supply-ratio" | "date-to-market-price-to-price-21d-sma-ratio-1p" | "date-to-p2pk-net-realized-profit-and-loss-to-market-cap-ratio" | "date-to-lth-net-realized-profit-and-loss-to-market-cap-ratio" | "date-to-year-2009-supply-in-loss-to-circulating-supply-ratio" | "date-to-from-1w-to-1m-realized-cap-1m-net-change" | "date-to-year-2012-spent-output-profit-ratio" | "date-to-market-price-to-realized-price-ratio-1y-sma-momentum-oscillator" | "date-to-up-to-7y-supply-in-profit-to-circulating-supply-ratio" | "date-to-shrimp-cumulative-realized-loss" | "date-to-year-2018-realized-value" | "date-to-from-7y-to-10y-realized-price-99p" | "date-to-liquid-95p-price-paid" | "date-to-year-2019-supply-in-loss" | "date-to-up-to-1y-spent-output-profit-ratio" | "date-to-up-to-1d-95p-price-paid" | "date-to-shrimp-net-realized-profit-and-loss-to-market-cap-ratio" | "date-to-up-to-5y-supply-to-circulating-supply-ratio" | "date-to-utxo-count" | "date-to-year-2019-85p-price-paid" | "date-to-from-1y-20p-price-paid" | "date-to-last-coinbase-in-dollars" | "date-to-year-2021-65p-price-paid" | "date-to-coinbase-in-dollars-1y-sma" | "date-to-year-2018-net-unrealized-profit-and-loss" | "date-to-market-price-to-year-2021-realized-price-ratio-1y-sma" | "date-to-shrimp-90p-price-paid" | "date-to-liquid-realized-price-99-5p" | "date-to-market-price-to-up-to-15y-realized-price-ratio-99-9p" | "date-to-from-1m-to-3m-supply-in-profit" | "date-to-year-2009-supply-in-profit" | "date-to-95p-price-paid" | "date-to-year-2015-value-destroyed" | "date-to-year-2021-net-unrealized-profit-and-loss" | "date-to-liquid-65p-price-paid" | "date-to-up-to-7y-realized-price" | "date-to-from-2y-realized-cap" | "date-to-from-1w-to-1m-realized-cap" | "date-to-p2wsh-realized-loss" | "date-to-p2wpkh-realized-price-99-5p" | "date-to-year-2010-negative-unrealized-loss" | "date-to-year-2021-realized-cap" | "date-to-year-2022-value-created" | "date-to-year-2023-net-unrealized-profit-and-loss" | "date-to-from-1y-45p-price-paid" | "date-to-from-3y-to-5y-net-unrealized-profit-and-loss-to-market-cap-ratio" | "date-to-up-to-3y-spent-output-profit-ratio" | "date-to-from-1d-to-1w-70p-price-paid" | "date-to-fish-input-count" | "date-to-up-to-3y-realized-price-99-5p" | "date-to-year-2017-sell-side-risk-ratio" | "date-to-year-2010-value-destroyed" | "date-to-p2wsh-realized-price" | "date-to-up-to-1y-halved-supply-to-circulating-supply-ratio" | "date-to-year-2017-95p-price-paid" | "date-to-from-6m-to-1y-supply-in-profit" | "date-to-year-2022-unrealized-profit" | "date-to-year-2024-supply-in-loss-to-circulating-supply-ratio" | "date-to-from-3m-to-6m-utxo-count" | "date-to-market-price-to-price-200w-sma-ratio-1m-sma" | "date-to-year-2013-realized-cap" | "date-to-market-price-to-shrimp-realized-price-ratio-1y-sma-momentum-oscillator" | "date-to-up-to-3m-30p-price-paid" | "date-to-market-price-to-humpback-realized-price-ratio-1y-sma" | "date-to-market-price-to-up-to-1d-realized-price-ratio-99-5p" | "date-to-up-to-1y-value-destroyed" | "date-to-active-supply-net-change" | "date-to-year-2012-supply-to-circulating-supply-ratio" | "date-to-market-price-to-up-to-4m-realized-price-ratio-1w-sma" | "date-to-p2sh-40p-price-paid" | "date-to-plankton-median-price-paid" | "date-to-market-price-to-p2tr-realized-price-ratio-0-1p" | "date-to-market-price-to-year-2017-realized-price-ratio-0-5p" | "date-to-p2pkh-net-unrealized-profit-and-loss-to-market-cap-ratio" | "date-to-whale-40p-price-paid" | "date-to-from-10y-supply-in-loss" | "date-to-from-3y-to-5y-95p-price-paid" | "date-to-from-1d-to-1w-supply-in-loss-to-circulating-supply-ratio" | "date-to-p2tr-70p-price-paid" | "date-to-year-2012-realized-price-99-5p" | "date-to-up-to-1m-negative-unrealized-loss" | "date-to-humpback-realized-price-99p" | "date-to-up-to-1d-median-price-paid" | "date-to-year-2014-realized-price-99-5p" | "date-to-market-price-to-up-to-1w-realized-price-ratio-99p" | "date-to-from-3m-to-6m-supply-in-profit-to-circulating-supply-ratio" | "date-to-year-2018-spent-output-profit-ratio" | "date-to-year-2020-supply-in-profit" | "date-to-year-2024-net-unrealized-profit-and-loss-to-market-cap-ratio" | "date-to-market-price-to-sth-realized-price-ratio-99-5p" | "date-to-year-2023-supply-in-profit-to-circulating-supply-ratio" | "date-to-market-price-to-whale-realized-price-ratio-1w-sma" | "date-to-year-2014-sell-side-risk-ratio" | "date-to-year-2024-input-count" | "date-to-up-to-5m-supply-in-loss" | "date-to-from-1m-to-3m-supply-to-circulating-supply-ratio" | "date-to-up-to-15y-negative-unrealized-loss" | "date-to-up-to-1w-input-volume" | "date-to-up-to-2m-05p-price-paid" | "date-to-blocks-mined-1m-target" | "date-to-illiquid-net-unrealized-profit-and-loss-to-market-cap-ratio" | "date-to-market-price-to-from-1m-to-3m-realized-price-ratio-99-9p" | "date-to-p2pkh-60p-price-paid" | "date-to-year-2015-cumulative-realized-profit" | "date-to-from-2y-input-count" | "date-to-crab-spent-output-profit-ratio" | "date-to-market-price-to-vaulted-price-ratio-99-9p" | "date-to-shark-80p-price-paid" | "date-to-from-10y-65p-price-paid" | "date-to-from-1y-realized-price-99-5p" | "date-to-from-5y-to-7y-90p-price-paid" | "date-to-p2sh-realized-loss" | "date-to-up-to-4m-unrealized-profit" | "date-to-year-2010-realized-cap-1m-net-change" | "date-to-up-to-2m-realized-price-0-1p" | "date-to-block-weight-1d-average" | "date-to-from-7y-to-10y-negative-unrealized-loss" | "date-to-market-price-to-year-2017-realized-price-ratio-1p" | "date-to-from-1d-to-1w-cumulative-net-realized-profit-and-loss-1m-net-change" | "date-to-market-price-to-from-1y-realized-price-ratio-1w-sma" | "date-to-p2wsh-75p-price-paid" | "date-to-whale-supply-in-profit-to-circulating-supply-ratio" | "date-to-market-price-to-active-price-ratio-1y-sma" | "date-to-market-price-to-price-8d-sma-ratio-1m-sma" | "date-to-illiquid-supply-in-profit-to-circulating-supply-ratio" | "date-to-market-price-to-up-to-1m-realized-price-ratio-99-9p" | "date-to-up-to-5m-15p-price-paid" | "date-to-crab-address-count" | "date-to-lth-supply-in-profit-to-own-supply-ratio" | "date-to-from-7y-to-10y-cumulative-realized-profit" | "date-to-from-3m-to-6m-realized-price-0-5p" | "date-to-total-cointime-value-created" | "date-to-p2sh-25p-price-paid" | "date-to-price-144d-sma" | "date-to-year-2019-net-unrealized-profit-and-loss-to-market-cap-ratio" | "date-to-crab-65p-price-paid" | "date-to-market-price-to-from-5y-to-7y-realized-price-ratio" | "date-to-p2pk-supply-in-profit" | "date-to-year-2011-supply" | "date-to-up-to-7y-realized-price-99p" | "date-to-up-to-2m-supply" | "date-to-last-height" | "date-to-market-price-to-illiquid-realized-price-ratio-99-9p" | "date-to-up-to-3m-25p-price-paid" | "date-to-crab-input-volume" | "date-to-liquid-supply-in-loss-to-circulating-supply-ratio" | "date-to-from-1d-to-1w-supply" | "date-to-from-3m-to-6m-15p-price-paid" | "date-to-from-10y-supply-in-profit-to-circulating-supply-ratio" | "date-to-coinbase" | "date-to-lth-15p-price-paid" | "date-to-p2tr-35p-price-paid" | "date-to-block-vbytes-1d-25p" | "date-to-market-price-to-price-144d-sma-ratio" | "date-to-up-to-10y-supply-in-loss-to-circulating-supply-ratio" | "date-to-shrimp-realized-value" | "date-to-from-3y-to-5y-80p-price-paid" | "date-to-megalodon-realized-price-99-5p" | "date-to-shark-95p-price-paid" | "date-to-shrimp-supply-to-circulating-supply-ratio" | "date-to-from-1d-to-1w-95p-price-paid" | "date-to-crab-80p-price-paid" | "date-to-year-2018-utxo-count" | "date-to-from-1d-to-1w-supply-in-loss-to-own-supply-ratio" | "date-to-lth-net-realized-profit-and-loss" | "date-to-year-2015-cumulative-realized-loss" | "date-to-from-10y-90p-price-paid" | "date-to-p2wsh-realized-price-99p" | "date-to-up-to-5y-40p-price-paid" | "date-to-from-1d-to-1w-realized-profit" | "date-to-price-4y-sma-99p" | "date-to-up-to-1w-supply-in-profit" | "date-to-address-count" | "date-to-p2tr-cumulative-realized-profit" | "date-to-from-10y-to-15y-supply-in-loss-to-circulating-supply-ratio" | "date-to-p2wpkh-supply-in-loss-to-circulating-supply-ratio" | "date-to-up-to-3y-supply-in-loss-to-circulating-supply-ratio" | "date-to-year-2012-65p-price-paid" | "date-to-up-to-10y-realized-price-99p" | "date-to-from-6m-to-1y-net-unrealized-profit-and-loss-to-market-cap-ratio" | "date-to-humpback-negative-unrealized-loss" | "date-to-shark-realized-profit" | "date-to-up-to-10y-supply-in-profit-to-own-supply-ratio" | "date-to-from-3y-to-5y-net-realized-profit-and-loss-to-market-cap-ratio" | "date-to-year-2023-70p-price-paid" | "date-to-cumulative-block-size" | "date-to-price-21d-sma-0-5p" | "date-to-up-to-4m-sell-side-risk-ratio" | "date-to-year-2021-25p-price-paid" | "date-to-p2wpkh-value-destroyed" | "date-to-year-2014-supply-in-loss-to-own-supply-ratio" | "date-to-up-to-3y-cumulative-net-realized-profit-and-loss" | "date-to-market-price-to-humpback-realized-price-ratio" | "date-to-up-to-3y-15p-price-paid" | "date-to-market-price-to-from-7y-to-10y-realized-price-ratio-0-1p" | "date-to-market-price-to-highly-liquid-realized-price-ratio" | "date-to-year-2023-realized-price-99-9p" | "date-to-market-price-to-crab-realized-price-ratio-0-1p" | "date-to-market-price-to-from-4y-realized-price-ratio-0-1p" | "date-to-from-1d-to-1w-15p-price-paid" | "date-to-up-to-3y-halved-supply" | "date-to-from-6m-to-1y-realized-price-99p" | "date-to-liquid-supply-in-profit-to-own-supply-ratio" | "date-to-vaulted-price" | "date-to-year-2018-realized-loss" | "date-to-up-to-5y-realized-price" | "date-to-price-21d-sma-0-1p" | "date-to-p2sh-55p-price-paid" | "date-to-p2pkh-supply-in-profit" | "date-to-from-15y-60p-price-paid" | "date-to-fish-net-unrealized-profit-and-loss-to-market-cap-ratio" | "date-to-illiquid-30p-price-paid" | "date-to-from-4y-55p-price-paid" | "date-to-from-2y-halved-supply" | "date-to-from-5y-to-7y-80p-price-paid" | "date-to-year-2012-90p-price-paid" | "date-to-from-1y-net-unrealized-profit-and-loss-to-market-cap-ratio" | "date-to-from-5y-to-7y-70p-price-paid" | "date-to-from-10y-to-15y-supply-in-loss-to-own-supply-ratio" | "date-to-up-to-3y-realized-price" | "date-to-year-2015-supply-in-profit-to-circulating-supply-ratio" | "date-to-block-interval-1d-90p" | "date-to-shrimp-value-created" | "date-to-year-2015-unrealized-profit" | "date-to-year-2016-net-realized-profit-and-loss" | "date-to-year-2023-realized-cap" | "date-to-p2sh-supply" | "date-to-up-to-7y-realized-price-99-9p" | "date-to-up-to-5m-supply-in-profit-to-own-supply-ratio" | "date-to-up-to-5y-realized-loss" | "date-to-from-7y-to-10y-realized-price-99-9p" | "date-to-from-2y-to-3y-cumulative-net-realized-profit-and-loss" | "date-to-market-price-to-up-to-1w-realized-price-ratio-99-9p" | "date-to-market-price-to-price-1m-sma-ratio-0-1p" | "date-to-year-2020-halved-supply-to-circulating-supply-ratio" | "date-to-year-2024-realized-cap-1m-net-change" | "date-to-from-1d-to-1w-net-realized-profit-and-loss" | "date-to-from-5y-to-7y-net-unrealized-profit-and-loss-to-market-cap-ratio" | "date-to-p2pk-realized-price-99-9p" | "date-to-shrimp-unrealized-profit" | "date-to-from-10y-to-15y-net-realized-profit-and-loss" | "date-to-year-2009-cumulative-net-realized-profit-and-loss" | "date-to-from-10y-05p-price-paid" | "date-to-year-2013-realized-profit" | "date-to-highly-liquid-realized-price-99p" | "date-to-from-3y-to-5y-25p-price-paid" | "date-to-from-1w-to-1m-unrealized-loss" | "date-to-median-price-paid" | "date-to-first-height" | "date-to-up-to-3y-25p-price-paid" | "date-to-market-price-to-from-15y-realized-price-ratio-0-5p" | "date-to-market-price-to-up-to-1m-realized-price-ratio-0-1p" | "date-to-year-2019-negative-realized-loss" | "date-to-market-price-to-active-price-ratio-1m-sma" | "date-to-fish-90p-price-paid" | "date-to-year-2018-net-unrealized-profit-and-loss-to-market-cap-ratio" | "date-to-year-2019-realized-price-99-5p" | "date-to-block-weight-1d-10p" | "date-to-shrimp-realized-loss" | "date-to-price-4y-sma-1p" | "date-to-market-price-to-up-to-4m-realized-price-ratio-1p" | "date-to-year-2009-value-destroyed" | "date-to-year-2022-90p-price-paid" | "date-to-market-price-to-year-2020-realized-price-ratio" | "date-to-up-to-7y-55p-price-paid" | "date-to-year-2018-cumulative-realized-loss" | "date-to-from-4y-cumulative-realized-profit" | "date-to-from-6m-to-1y-realized-loss" | "date-to-from-5y-to-7y-05p-price-paid" | "date-to-p2sh-85p-price-paid" | "date-to-total-blocks-mined" | "date-to-vaulted-price-99-9p" | "date-to-up-to-3y-supply-in-loss" | "date-to-crab-55p-price-paid" | "date-to-market-price-to-up-to-4m-realized-price-ratio-1m-sma" | "date-to-plankton-cumulative-realized-profit" | "date-to-p2sh-35p-price-paid" | "date-to-highly-liquid-realized-price" | "date-to-market-price-to-from-6m-to-1y-realized-price-ratio-99-9p" | "date-to-from-2y-supply-in-profit-to-own-supply-ratio" | "date-to-market-price-to-up-to-7y-realized-price-ratio-1m-sma" | "date-to-from-7y-to-10y-supply-in-profit-to-circulating-supply-ratio" | "date-to-p2wsh-cumulative-realized-profit" | "date-to-from-5y-to-7y-15p-price-paid" | "date-to-up-to-1y-realized-cap" | "date-to-up-to-5m-supply-in-loss-to-own-supply-ratio" | "date-to-market-price-to-up-to-1w-realized-price-ratio-99-5p" | "date-to-realized-value" | "date-to-cumulative-coinblocks-destroyed" | "date-to-up-to-5y-realized-profit" | "date-to-whale-25p-price-paid" | "date-to-year-2017-cumulative-net-realized-profit-and-loss-1m-net-change" | "date-to-p2tr-net-unrealized-profit-and-loss" | "date-to-supply-to-circulating-supply-ratio" | "date-to-up-to-1w-net-unrealized-profit-and-loss" | "date-to-year-2017-unrealized-loss" | "date-to-year-2018-cumulative-net-realized-profit-and-loss" | "date-to-year-2010-95p-price-paid" | "date-to-from-5y-to-7y-sell-side-risk-ratio" | "date-to-megalodon-65p-price-paid" | "date-to-active-price-0-1p" | "date-to-up-to-10y-value-created" | "date-to-up-to-10y-70p-price-paid" | "date-to-from-1w-to-1m-05p-price-paid" | "date-to-p2tr-05p-price-paid" | "date-to-market-price-to-up-to-15y-realized-price-ratio-0-1p" | "date-to-p2pkh-85p-price-paid" | "date-to-liquid-realized-value" | "date-to-market-price-to-p2wsh-realized-price-ratio-99p" | "date-to-p2tr-65p-price-paid" | "date-to-price-2y-sma-0-1p" | "date-to-p2wsh-cumulative-net-realized-profit-and-loss" | "date-to-up-to-15y-cumulative-net-realized-profit-and-loss-1m-net-change" | "date-to-year-2016-supply-to-circulating-supply-ratio" | "date-to-up-to-1d-60p-price-paid" | "date-to-year-2018-value-destroyed" | "date-to-lth-55p-price-paid" | "date-to-year-2012-median-price-paid" | "date-to-year-2012-70p-price-paid" | "date-to-up-to-5m-input-volume" | "date-to-year-2011-value-destroyed" | "date-to-year-2012-supply" | "date-to-year-2020-value-destroyed" | "date-to-market-price-to-up-to-2m-realized-price-ratio-1y-sma-momentum-oscillator" | "date-to-market-price-to-crab-realized-price-ratio" | "date-to-from-2y-to-3y-net-unrealized-profit-and-loss-to-market-cap-ratio" | "date-to-market-price-to-from-4y-realized-price-ratio-1w-sma" | "date-to-from-1y-to-2y-supply-in-loss-to-own-supply-ratio" | "date-to-p2wsh-supply-in-profit-to-circulating-supply-ratio" | "date-to-up-to-6m-supply-in-profit" | "date-to-market-price-to-up-to-1m-realized-price-ratio-1w-sma" | "date-to-up-to-1d-45p-price-paid" | "date-to-from-4y-spent-output-profit-ratio" | "date-to-market-price-to-sth-realized-price-ratio-1p" | "date-to-market-price-to-price-200w-sma-ratio-99p" | "date-to-market-price-to-true-market-mean-ratio-99p" | "date-to-sth-cumulative-net-realized-profit-and-loss" | "date-to-year-2021-95p-price-paid" | "date-to-from-10y-to-15y-supply-in-profit-to-own-supply-ratio" | "date-to-cointime-value-destroyed" | "date-to-from-4y-cumulative-net-realized-profit-and-loss" | "date-to-market-price-to-fish-realized-price-ratio-99-5p" | "date-to-market-price-to-year-2012-realized-price-ratio-1m-sma" | "date-to-up-to-6m-median-price-paid" | "date-to-up-to-6m-net-realized-profit-and-loss" | "date-to-year-2021-35p-price-paid" | "date-to-market-price-to-up-to-3y-realized-price-ratio-99-9p" | "date-to-market-price-to-cointime-price-ratio-1y-sma-momentum-oscillator" | "date-to-p2wsh-55p-price-paid" | "date-to-up-to-4m-realized-price-99-5p" | "date-to-market-price-to-from-3y-to-5y-realized-price-ratio-99p" | "date-to-liquid-45p-price-paid" | "date-to-market-price-to-p2tr-realized-price-ratio-99-9p" | "date-to-market-price-to-year-2019-realized-price-ratio-0-5p" | "date-to-up-to-1m-supply-to-circulating-supply-ratio" | "date-to-from-7y-to-10y-60p-price-paid" | "date-to-market-price-to-p2pk-realized-price-ratio-1w-sma" | "date-to-from-1m-to-3m-net-realized-profit-and-loss-to-market-cap-ratio" | "date-to-market-price-to-true-market-mean-ratio-99-5p" | "date-to-p2wpkh-60p-price-paid" | "date-to-up-to-6m-realized-price-99p" | "date-to-up-to-10y-realized-price-0-1p" | "date-to-up-to-2m-70p-price-paid" | "date-to-market-price-to-up-to-2m-realized-price-ratio-1m-sma" | "date-to-up-to-5m-realized-price-0-1p" | "date-to-market-price-to-p2tr-realized-price-ratio-99-5p" | "date-to-p2sh-realized-cap" | "date-to-up-to-3y-realized-value" | "date-to-block-weight-1d-max" | "date-to-up-to-2m-realized-cap-1m-net-change" | "date-to-year-2018-realized-cap-1m-net-change" | "date-to-market-price-to-p2sh-realized-price-ratio-99-9p" | "date-to-shark-unrealized-loss" | "date-to-p2wsh-95p-price-paid" | "date-to-year-2020-median-price-paid" | "date-to-up-to-1d-realized-loss" | "date-to-sth-70p-price-paid" | "date-to-illiquid-realized-loss" | "date-to-market-price-to-liquid-realized-price-ratio-1p" | "date-to-up-to-3m-70p-price-paid" | "date-to-from-1m-to-3m-cumulative-realized-loss" | "date-to-from-1w-to-1m-input-count" | "date-to-market-price-to-price-200w-sma-ratio-0-1p" | "date-to-up-to-1w-net-realized-profit-and-loss-to-market-cap-ratio" | "date-to-from-1m-to-3m-value-destroyed" | "date-to-from-5y-to-7y-supply-to-circulating-supply-ratio" | "date-to-p2sh-unrealized-loss" | "date-to-humpback-negative-realized-loss" | "date-to-p2tr-address-count" | "date-to-from-1w-to-1m-35p-price-paid" | "date-to-up-to-1w-median-price-paid" | "date-to-market-price-to-highly-liquid-realized-price-ratio-1m-sma" | "date-to-market-price-to-shark-realized-price-ratio-1y-sma" | "date-to-market-price-to-year-2011-realized-price-ratio" | "date-to-year-2021-value-created" | "date-to-60p-price-paid" | "date-to-humpback-15p-price-paid" | "date-to-up-to-1m-65p-price-paid" | "date-to-market-price-to-p2sh-realized-price-ratio-0-5p" | "date-to-from-1y-to-2y-sell-side-risk-ratio" | "date-to-market-price-to-up-to-1w-realized-price-ratio-1p" | "date-to-year-2021-supply-in-loss-to-circulating-supply-ratio" | "date-to-shark-net-realized-profit-and-loss" | "date-to-from-3m-to-6m-realized-cap-1m-net-change" | "date-to-illiquid-cumulative-realized-profit" | "date-to-year-2010-halved-supply" | "date-to-year-2021-40p-price-paid" | "date-to-up-to-2y-realized-loss" | "date-to-up-to-1m-20p-price-paid" | "date-to-year-2019-unrealized-profit" | "date-to-shrimp-60p-price-paid" | "date-to-up-to-10y-net-realized-profit-and-loss-to-market-cap-ratio" | "date-to-up-to-1m-75p-price-paid" | "date-to-megalodon-cumulative-realized-loss" | "date-to-market-price-to-price-21d-sma-ratio-0-5p" | "date-to-up-to-2y-realized-value" | "date-to-from-1y-70p-price-paid" | "date-to-sth-cumulative-realized-profit" | "date-to-from-1w-to-1m-10p-price-paid" | "date-to-up-to-4m-net-realized-profit-and-loss-to-market-cap-ratio" | "date-to-up-to-5m-unrealized-profit" | "date-to-market-price-to-year-2020-realized-price-ratio-99-9p" | "date-to-year-2020-15p-price-paid" | "date-to-year-2024-value-destroyed" | "date-to-from-6m-to-1y-realized-price-99-9p" | "date-to-market-price-to-from-4y-realized-price-ratio-1m-sma" | "date-to-market-price-to-humpback-realized-price-ratio-1p" | "date-to-market-price-to-liquid-realized-price-ratio-0-5p" | "date-to-market-price-to-shark-realized-price-ratio-99p" | "date-to-market-price-to-year-2016-realized-price-ratio-99-5p" | "date-to-up-to-3y-realized-cap-1m-net-change" | "date-to-up-to-2m-40p-price-paid" | "date-to-market-price-to-crab-realized-price-ratio-1y-sma-momentum-oscillator" | "date-to-market-price-to-price-21d-sma-ratio-1y-sma" | "date-to-year-2023-supply-in-profit" | "date-to-lth-cumulative-net-realized-profit-and-loss-1m-net-change" | "date-to-market-price-to-fish-realized-price-ratio-1y-sma" | "date-to-up-to-7y-cumulative-net-realized-profit-and-loss-1m-net-change" | "date-to-from-3m-to-6m-supply" | "date-to-up-to-2y-supply-to-circulating-supply-ratio" | "date-to-up-to-4m-10p-price-paid" | "date-to-shrimp-realized-price" | "date-to-from-4y-10p-price-paid" | "date-to-year-2016-25p-price-paid" | "date-to-humpback-sell-side-risk-ratio" | "date-to-shark-input-volume" | "date-to-from-1m-to-3m-realized-profit" | "date-to-market-price-to-year-2010-realized-price-ratio-1y-sma-momentum-oscillator" | "date-to-market-price-to-shrimp-realized-price-ratio-0-1p" | "date-to-plankton-cumulative-net-realized-profit-and-loss" | "date-to-up-to-2y-realized-price-0-1p" | "date-to-up-to-5m-realized-value" | "date-to-50" | "date-to-from-4y-80p-price-paid" | "date-to-market-price-to-up-to-1m-realized-price-ratio-1y-sma" | "date-to-up-to-2m-input-count" | "date-to-up-to-15y-input-count" | "date-to-from-10y-cumulative-realized-profit" | "date-to-year-2009-realized-price" | "date-to-up-to-4m-realized-price-99-9p" | "date-to-market-price-to-megalodon-realized-price-ratio-99p" | "date-to-up-to-4m-realized-loss" | "date-to-from-3m-to-6m-net-realized-profit-and-loss" | "date-to-illiquid-halved-supply-to-circulating-supply-ratio" | "date-to-market-price-to-cointime-price-ratio-99p" | "date-to-market-price-to-up-to-3m-realized-price-ratio-99-5p" | "date-to-from-5y-to-7y-realized-price-1p" | "date-to-price-2y-sma-99-9p" | "date-to-up-to-3y-75p-price-paid" | "date-to-up-to-3y-realized-profit" | "date-to-from-3y-to-5y-supply-in-loss-to-circulating-supply-ratio" | "date-to-from-1w-to-1m-80p-price-paid" | "date-to-year-2011-value-created" | "date-to-market-price-to-from-2y-realized-price-ratio-99p" | "date-to-up-to-1w-realized-price-99-5p" | "date-to-from-3y-to-5y-75p-price-paid" | "date-to-market-price-to-year-2018-realized-price-ratio-1p" | "date-to-year-2023-60p-price-paid" | "date-to-up-to-1d-10p-price-paid" | "date-to-market-price-to-price-1y-sma-ratio-1w-sma" | "date-to-year-2017-realized-price-1p" | "date-to-price-34d-sma-99-9p" | "date-to-vaulted-supply-3m-net-change" | "date-to-p2pk-55p-price-paid" | "date-to-year-2011-supply-to-circulating-supply-ratio" | "date-to-from-6m-to-1y-10p-price-paid" | "date-to-year-2018-cumulative-net-realized-profit-and-loss-1m-net-change" | "date-to-megalodon-realized-price-0-1p" | "date-to-shark-value-created" | "date-to-up-to-5m-unrealized-loss" | "date-to-liquid-realized-price-0-5p" | "date-to-market-price-to-p2pkh-realized-price-ratio-99p" | "date-to-up-to-2y-unrealized-loss" | "date-to-market-price-to-from-6m-to-1y-realized-price-ratio-1y-sma" | "date-to-up-to-1y-cumulative-realized-profit" | "date-to-market-price-to-year-2019-realized-price-ratio-0-1p" | "date-to-market-price-to-p2wpkh-realized-price-ratio" | "date-to-market-price-to-up-to-1w-realized-price-ratio-0-5p" | "date-to-plankton-95p-price-paid" | "date-to-humpback-supply-in-profit-to-circulating-supply-ratio" | "date-to-up-to-1m-70p-price-paid" | "date-to-from-1w-to-1m-75p-price-paid" | "date-to-year-2024-cumulative-net-realized-profit-and-loss-1m-net-change" | "date-to-price-1m-sma-0-1p" | "date-to-market-price-to-year-2012-realized-price-ratio-0-5p" | "date-to-year-2016-40p-price-paid" | "date-to-from-4y-75p-price-paid" | "date-to-megalodon-net-realized-profit-and-loss" | "date-to-year-2023-median-price-paid" | "date-to-megalodon-85p-price-paid" | "date-to-from-1y-05p-price-paid" | "date-to-year-2010-cumulative-net-realized-profit-and-loss-1m-net-change" | "date-to-up-to-1d-input-volume" | "date-to-year-2010-55p-price-paid" | "date-to-p2tr-55p-price-paid" | "date-to-from-15y-20p-price-paid" | "date-to-up-to-7y-unrealized-profit" | "date-to-year-2016-90p-price-paid" | "date-to-up-to-4m-cumulative-net-realized-profit-and-loss" | "date-to-up-to-10y-realized-value" | "date-to-year-2018-negative-unrealized-loss" | "date-to-from-1w-to-1m-halved-supply" | "date-to-up-to-1y-cumulative-net-realized-profit-and-loss-1m-net-change" | "date-to-year-2009-realized-cap" | "date-to-up-to-2y-cumulative-realized-loss" | "date-to-market-price-to-year-2015-realized-price-ratio-99-9p" | "date-to-year-2011-negative-unrealized-loss" | "date-to-from-5y-to-7y-realized-price-0-1p" | "date-to-from-6m-to-1y-70p-price-paid" | "date-to-highly-liquid-value-created" | "date-to-market-price-to-up-to-3m-realized-price-ratio-1m-sma" | "date-to-year-2012-realized-price-0-1p" | "date-to-up-to-3m-20p-price-paid" | "date-to-up-to-1y-realized-value" | "date-to-year-2016-realized-value" | "date-to-market-price-to-up-to-1y-realized-price-ratio-1m-sma" | "date-to-illiquid-80p-price-paid" | "date-to-lth-realized-price-99-5p" | "date-to-whale-realized-price-1p" | "date-to-year-2015-cumulative-net-realized-profit-and-loss-1m-net-change" | "date-to-year-2021-realized-price-99-5p" | "date-to-block-vbytes-1d-max" | "date-to-plankton-supply-in-loss" | "date-to-from-1w-to-1m-70p-price-paid" | "date-to-sth-supply-in-loss" | "date-to-up-to-1y-supply-in-loss" | "date-to-year-2009-35p-price-paid" | "date-to-year-2012-supply-in-profit-to-own-supply-ratio" | "date-to-year-2022-60p-price-paid" | "date-to-year-2009-25p-price-paid" | "date-to-p2pkh-supply-to-circulating-supply-ratio" | "date-to-year-2021-realized-price-0-5p" | "date-to-p2sh-halved-supply" | "date-to-up-to-1d-supply-in-profit-to-circulating-supply-ratio" | "date-to-up-to-5m-value-destroyed" | "date-to-from-10y-to-15y-realized-price-99p" | "date-to-p2pk-70p-price-paid" | "date-to-p2sh-60p-price-paid" | "date-to-p2tr-realized-price-99-9p" | "date-to-price-200w-sma-0-5p" | "date-to-from-1y-to-2y-realized-cap" | "date-to-from-2y-60p-price-paid" | "date-to-market-price-to-liquid-realized-price-ratio-99-9p" | "date-to-year-2023-realized-price-99p" | "date-to-market-price-to-year-2015-realized-price-ratio-1w-sma" | "date-to-up-to-1y-realized-price-99-9p" | "date-to-p2pk-realized-value" | "date-to-from-4y-90p-price-paid" | "date-to-market-price-to-vaulted-price-ratio-0-1p" | "date-to-year-2017-supply-in-profit" | "date-to-lth-60p-price-paid" | "date-to-year-2009-net-realized-profit-and-loss-to-market-cap-ratio" | "date-to-30p-price-paid" | "date-to-highly-liquid-80p-price-paid" | "date-to-crab-realized-price-99-9p" | "date-to-humpback-supply-in-loss-to-circulating-supply-ratio" | "date-to-market-price-to-price-8d-sma-ratio" | "date-to-from-15y-input-count" | "date-to-hash-rate-1w-sma" | "date-to-from-2y-realized-cap-1m-net-change" | "date-to-market-price-to-year-2020-realized-price-ratio-99-5p" | "date-to-up-to-7y-05p-price-paid" | "date-to-from-3m-to-6m-halved-supply" | "date-to-highly-liquid-supply" | "date-to-crab-realized-price" | "date-to-market-price-to-year-2022-realized-price-ratio-1p" | "date-to-fish-95p-price-paid" | "date-to-lth-25p-price-paid" | "date-to-market-price-to-year-2018-realized-price-ratio" | "date-to-p2sh-cumulative-net-realized-profit-and-loss" | "date-to-p2wsh-15p-price-paid" | "date-to-from-1d-to-1w-utxo-count" | "date-to-shrimp-70p-price-paid" | "date-to-shark-realized-price-99p" | "date-to-up-to-6m-95p-price-paid" | "date-to-year-2024-utxo-count" | "date-to-from-2y-to-3y-halved-supply" | "date-to-market-price-to-price-1w-sma-ratio-99p" | "date-to-year-2011-input-count" | "date-to-year-2021-80p-price-paid" | "date-to-up-to-10y-35p-price-paid" | "date-to-year-2022-utxo-count" | "date-to-from-1d-to-1w-supply-to-circulating-supply-ratio" | "date-to-up-to-6m-realized-price-0-5p" | "date-to-humpback-net-unrealized-profit-and-loss" | "date-to-p2tr-halved-supply" | "date-to-market-price-to-sth-realized-price-ratio-1m-sma" | "date-to-market-price-to-vaulted-price-ratio-1m-sma" | "date-to-megalodon-realized-profit" | "date-to-up-to-1w-sell-side-risk-ratio" | "date-to-market-price-to-plankton-realized-price-ratio-0-5p" | "date-to-market-price-to-price-144d-sma-ratio-99p" | "date-to-from-3y-to-5y-60p-price-paid" | "date-to-market-price-to-year-2013-realized-price-ratio-99-5p" | "date-to-up-to-5y-value-destroyed" | "date-to-up-to-7y-60p-price-paid" | "date-to-year-2019-realized-cap" | "date-to-sth-realized-price-99-5p" | "date-to-market-price-to-price-144d-sma-ratio-1y-sma" | "date-to-up-to-10y-40p-price-paid" | "date-to-from-6m-to-1y-75p-price-paid" | "date-to-market-price-to-up-to-6m-realized-price-ratio-0-5p" | "date-to-p2pk-85p-price-paid" | "date-to-whale-realized-cap" | "date-to-p2wpkh-80p-price-paid" | "date-to-shark-60p-price-paid" | "date-to-market-price-to-lth-realized-price-ratio-1y-sma" | "date-to-block-vbytes-1d-75p" | "date-to-market-price-to-from-1d-to-1w-realized-price-ratio-99-9p" | "date-to-market-price-to-p2wsh-realized-price-ratio" | "date-to-market-price-to-price-1y-sma-ratio-1y-sma-momentum-oscillator" | "date-to-market-price-to-year-2019-realized-price-ratio-1y-sma-momentum-oscillator" | "date-to-p2pkh-cumulative-realized-loss" | "date-to-from-6m-to-1y-80p-price-paid" | "date-to-year-2024-45p-price-paid" | "date-to-year-2012-utxo-count" | "date-to-from-1m-to-3m-40p-price-paid" | "date-to-liquid-negative-unrealized-loss" | "date-to-market-price-to-year-2013-realized-price-ratio-0-5p" | "date-to-from-5y-to-7y-input-volume" | "date-to-p2tr-75p-price-paid" | "date-to-from-7y-to-10y-halved-supply" | "date-to-p2wpkh-supply-to-circulating-supply-ratio" | "date-to-shark-85p-price-paid" | "date-to-crab-halved-supply-to-circulating-supply-ratio" | "date-to-p2sh-realized-profit" | "date-to-from-6m-to-1y-20p-price-paid" | "date-to-humpback-realized-price" | "date-to-lth-85p-price-paid" | "date-to-sth-85p-price-paid" | "date-to-year-2010-35p-price-paid" | "date-to-year-2010-supply-in-loss-to-own-supply-ratio" | "date-to-from-4y-30p-price-paid" | "date-to-from-6m-to-1y-60p-price-paid" | "date-to-liquid-15p-price-paid" | "date-to-market-price-to-from-2y-to-3y-realized-price-ratio" | "date-to-market-price-to-shrimp-realized-price-ratio-1p" | "date-to-net-unrealized-profit-and-loss" | "date-to-up-to-15y-realized-price-99p" | "date-to-year-2013-net-unrealized-profit-and-loss-to-market-cap-ratio" | "date-to-year-2013-supply-in-loss-to-circulating-supply-ratio" | "date-to-from-1w-to-1m-realized-price-99-5p" | "date-to-up-to-3m-75p-price-paid" | "date-to-crab-net-unrealized-profit-and-loss" | "date-to-year-2012-05p-price-paid" | "date-to-crab-realized-price-99p" | "date-to-up-to-1y-value-created" | "date-to-from-1d-to-1w-80p-price-paid" | "date-to-from-10y-85p-price-paid" | "date-to-p2wpkh-supply-in-loss-to-own-supply-ratio" | "date-to-from-1y-to-2y-40p-price-paid" | "date-to-up-to-4m-supply-in-profit" | "date-to-from-1m-to-3m-negative-realized-loss" | "date-to-humpback-realized-price-99-9p" | "date-to-market-price-to-from-1d-to-1w-realized-price-ratio-1m-sma" | "date-to-market-price-to-shrimp-realized-price-ratio-99-5p" | "date-to-megalodon-supply-in-loss-to-circulating-supply-ratio" | "date-to-market-price-to-year-2014-realized-price-ratio" | "date-to-shrimp-supply-in-loss" | "date-to-up-to-1y-65p-price-paid" | "date-to-block-vbytes-1d-median" | "date-to-year-2016-net-realized-profit-and-loss-to-market-cap-ratio" | "date-to-market-price-to-price-144d-sma-ratio-1m-sma" | "date-to-from-10y-55p-price-paid" | "date-to-up-to-2m-median-price-paid" | "date-to-blocks-mined-1w-target" | "date-to-from-10y-to-15y-net-unrealized-profit-and-loss-to-market-cap-ratio" | "date-to-price-1w-sma" | "date-to-shrimp-supply-in-profit" | "date-to-up-to-1d-net-realized-profit-and-loss" | "date-to-up-to-1m-95p-price-paid" | "date-to-sth-55p-price-paid" | "date-to-crab-negative-realized-loss" | "date-to-year-2015-median-price-paid" | "date-to-market-price-to-active-price-ratio-1w-sma" | "date-to-from-5y-to-7y-cumulative-net-realized-profit-and-loss-1m-net-change" | "date-to-p2wsh-supply-in-loss-to-own-supply-ratio" | "date-to-up-to-5y-cumulative-realized-loss" | "date-to-highly-liquid-supply-in-loss-to-circulating-supply-ratio" | "date-to-market-price-to-plankton-realized-price-ratio-99p" | "date-to-up-to-3m-35p-price-paid" | "date-to-from-15y-45p-price-paid" | "date-to-liquid-net-realized-profit-and-loss-to-market-cap-ratio" | "date-to-market-price-to-lth-realized-price-ratio-0-5p" | "date-to-from-1y-to-2y-realized-price-99p" | "date-to-p2pkh-supply-in-loss" | "date-to-up-to-7y-unrealized-loss" | "date-to-year-2013-net-unrealized-profit-and-loss" | "date-to-lth-spent-output-profit-ratio" | "date-to-market-price-to-liquid-realized-price-ratio-99p" | "date-to-plankton-25p-price-paid" | "date-to-from-2y-to-3y-supply-to-circulating-supply-ratio" | "date-to-year-2016-sell-side-risk-ratio" | "date-to-market-price-to-year-2024-realized-price-ratio-1w-sma" | "date-to-year-2013-cumulative-net-realized-profit-and-loss" | "date-to-from-3y-to-5y-85p-price-paid" | "date-to-up-to-1m-80p-price-paid" | "date-to-p2pk-30p-price-paid" | "date-to-from-1y-85p-price-paid" | "date-to-up-to-10y-realized-cap" | "date-to-p2pk-supply" | "date-to-p2pk-supply-in-profit-to-own-supply-ratio" | "date-to-price-89d-sma-99-5p" | "date-to-crab-sell-side-risk-ratio" | "date-to-from-4y-input-volume" | "date-to-year-2014-realized-cap" | "date-to-from-5y-to-7y-supply" | "date-to-market-price-to-price-89d-sma-ratio-99-5p" | "date-to-transaction-count-1w-sma" | "date-to-up-to-1m-05p-price-paid" | "date-to-up-to-5y-negative-realized-loss" | "date-to-year-2023-20p-price-paid" | "date-to-from-6m-to-1y-supply-in-profit-to-circulating-supply-ratio" | "date-to-liquid-realized-profit" | "date-to-from-10y-value-created" | "date-to-p2pk-20p-price-paid" | "date-to-from-6m-to-1y-realized-price-0-5p" | "date-to-p2pk-35p-price-paid" | "date-to-p2wpkh-net-unrealized-profit-and-loss-to-market-cap-ratio" | "date-to-from-1m-to-3m-95p-price-paid" | "date-to-market-price-to-from-1y-to-2y-realized-price-ratio-0-1p" | "date-to-from-2y-to-3y-95p-price-paid" | "date-to-from-5y-to-7y-unrealized-profit" | "date-to-lth-input-count" | "date-to-from-10y-supply-to-circulating-supply-ratio" | "date-to-plankton-supply" | "date-to-price-8d-sma-99-5p" | "date-to-sth-90p-price-paid" | "date-to-liquid-30p-price-paid" | "date-to-up-to-2m-spent-output-profit-ratio" | "date-to-up-to-3y-70p-price-paid" | "date-to-year-2020-spent-output-profit-ratio" | "date-to-from-3y-to-5y-55p-price-paid" | "date-to-price-2y-sma-1p" | "date-to-year-2024-realized-price-0-1p" | "date-to-from-6m-to-1y-supply-in-profit-to-own-supply-ratio" | "date-to-liquid-55p-price-paid" | "date-to-market-price-to-year-2021-realized-price-ratio" | "date-to-market-price-to-price-1m-sma-ratio-99-5p" | "date-to-shrimp-65p-price-paid" | "date-to-megalodon-30p-price-paid" | "date-to-up-to-1w-cumulative-realized-loss" | "date-to-from-1y-to-2y-15p-price-paid" | "date-to-market-price-to-p2sh-realized-price-ratio" | "date-to-p2pkh-address-count" | "date-to-from-6m-to-1y-cumulative-net-realized-profit-and-loss-1m-net-change" | "date-to-year-2015-20p-price-paid" | "date-to-year-2017-realized-cap" | "date-to-block-size-1d-75p" | "date-to-up-to-5m-realized-price" | "date-to-price-200w-sma-99p" | "date-to-up-to-1d-75p-price-paid" | "date-to-up-to-7y-cumulative-net-realized-profit-and-loss" | "date-to-market-price-to-up-to-7y-realized-price-ratio-99-5p" | "date-to-transaction-volume-in-dollars-1m-sma" | "date-to-market-price-to-up-to-1d-realized-price-ratio-1w-sma" | "date-to-year-2022-realized-price-0-1p" | "date-to-market-price-to-p2pk-realized-price-ratio-0-1p" | "date-to-year-2010-20p-price-paid" | "date-to-year-2013-realized-cap-1m-net-change" | "date-to-market-price-to-up-to-3y-realized-price-ratio-99p" | "date-to-year-2023-supply-in-loss-to-own-supply-ratio" | "date-to-market-price-to-price-144d-sma-ratio-99-9p" | "date-to-up-to-2y-realized-cap-1m-net-change" | "date-to-from-15y-spent-output-profit-ratio" | "date-to-from-4y-realized-price-1p" | "date-to-year-2011-halved-supply" | "date-to-market-price-to-year-2023-realized-price-ratio-99-5p" | "date-to-fish-realized-price-0-1p" | "date-to-from-2y-median-price-paid" | "date-to-up-to-1d-30p-price-paid" | "date-to-year-2018-95p-price-paid" | "date-to-p2wsh-70p-price-paid" | "date-to-market-price-to-price-200w-sma-ratio-99-9p" | "date-to-market-price-to-from-2y-to-3y-realized-price-ratio-0-5p" | "date-to-from-3y-to-5y-value-destroyed" | "date-to-year-2010-net-realized-profit-and-loss-to-market-cap-ratio" | "date-to-from-10y-to-15y-05p-price-paid" | "date-to-from-2y-to-3y-80p-price-paid" | "date-to-market-price-to-p2wpkh-realized-price-ratio-99-5p" | "date-to-price-1m-sma-99-9p" | "date-to-up-to-10y-halved-supply" | "date-to-up-to-6m-70p-price-paid" | "date-to-market-price-to-up-to-10y-realized-price-ratio-99-5p" | "date-to-up-to-7y-supply-in-loss-to-own-supply-ratio" | "date-to-year-2013-realized-price-1p" | "date-to-market-price-to-from-15y-realized-price-ratio-1w-sma" | "date-to-up-to-1y-realized-price-99p" | "date-to-up-to-1w-cumulative-net-realized-profit-and-loss" | "date-to-p2wsh-supply-in-loss" | "date-to-cumulative-coinbase" | "date-to-illiquid-spent-output-profit-ratio" | "date-to-up-to-5m-negative-unrealized-loss" | "date-to-year-2019-40p-price-paid" | "date-to-from-4y-supply-in-profit" | "date-to-plankton-realized-price" | "date-to-p2wpkh-40p-price-paid" | "date-to-from-1m-to-3m-55p-price-paid" | "date-to-price-89d-sma-99-9p" | "date-to-up-to-1w-realized-price-99-9p" | "date-to-market-price-to-year-2022-realized-price-ratio-0-1p" | "date-to-year-2023-unrealized-profit" | "date-to-up-to-6m-value-created" | "date-to-market-price-to-price-4y-sma-ratio-99p" | "date-to-market-price-to-up-to-4m-realized-price-ratio" | "date-to-up-to-2y-80p-price-paid" | "date-to-true-market-net-unrealized-profit-and-loss" | "date-to-from-1m-to-3m-60p-price-paid" | "date-to-market-price-to-illiquid-realized-price-ratio-99p" | "date-to-active-price-99p" | "date-to-highly-liquid-supply-to-circulating-supply-ratio" | "date-to-market-price-to-up-to-5y-realized-price-ratio-0-1p" | "date-to-price-2y-total-return" | "date-to-from-3m-to-6m-unrealized-loss" | "date-to-market-price-to-year-2015-realized-price-ratio-1y-sma" | "date-to-from-10y-halved-supply" | "date-to-from-1m-to-3m-negative-unrealized-loss" | "date-to-up-to-15y-05p-price-paid" | "date-to-price-89d-sma-1p" | "date-to-from-3y-to-5y-realized-price-0-1p" | "date-to-market-price-to-price-55d-sma-ratio-1y-sma-momentum-oscillator" | "date-to-crab-unrealized-loss" | "date-to-up-to-5m-85p-price-paid" | "date-to-humpback-median-price-paid" | "date-to-plankton-realized-price-99-9p" | "date-to-up-to-3y-05p-price-paid" | "date-to-year-2023-cumulative-realized-profit" | "date-to-year-2019-value-destroyed" | "date-to-from-1y-net-realized-profit-and-loss" | "date-to-market-price-to-year-2010-realized-price-ratio-99p" | "date-to-market-price-to-price-4y-sma-ratio-1p" | "date-to-megalodon-supply-in-profit-to-circulating-supply-ratio" | "date-to-from-1d-to-1w-60p-price-paid" | "date-to-p2pkh-40p-price-paid" | "date-to-up-to-1w-75p-price-paid" | "date-to-up-to-1w-realized-value" | "date-to-market-price-to-price-89d-sma-ratio-0-5p" | "date-to-market-price-to-up-to-5y-realized-price-ratio-99p" | "date-to-from-3y-to-5y-halved-supply" | "date-to-p2sh-net-unrealized-profit-and-loss" | "date-to-up-to-6m-supply-in-loss" | "date-to-up-to-2y-net-realized-profit-and-loss" | "date-to-up-to-1m-cumulative-net-realized-profit-and-loss" | "date-to-year-2010-input-count" | "date-to-up-to-1m-net-unrealized-profit-and-loss" | "date-to-cumulative-subsidy" | "date-to-fish-80p-price-paid" | "date-to-market-price-to-price-89d-sma-ratio-99p" | "date-to-from-1y-to-2y-input-count" | "date-to-illiquid-realized-cap" | "date-to-market-price-to-from-2y-realized-price-ratio" | "date-to-from-3m-to-6m-realized-price-1p" | "date-to-lth-realized-loss" | "date-to-up-to-7y-10p-price-paid" | "date-to-year-2022-supply-in-loss" | "date-to-from-1d-to-1w-55p-price-paid" | "date-to-market-price-to-p2sh-realized-price-ratio-1m-sma" | "date-to-p2wpkh-cumulative-net-realized-profit-and-loss" | "date-to-up-to-5y-negative-unrealized-loss" | "date-to-highly-liquid-net-realized-profit-and-loss" | "date-to-from-1m-to-3m-supply" | "date-to-market-price-to-from-10y-realized-price-ratio-0-5p" | "date-to-market-price-to-from-7y-to-10y-realized-price-ratio-1y-sma-momentum-oscillator" | "date-to-up-to-1d-supply-in-profit-to-own-supply-ratio" | "date-to-from-2y-to-3y-cumulative-realized-loss" | "date-to-net-unrealized-profit-and-loss-to-market-cap-ratio" | "date-to-from-3m-to-6m-net-unrealized-profit-and-loss-to-market-cap-ratio" | "date-to-p2wsh-median-price-paid" | "date-to-shrimp-45p-price-paid" | "date-to-up-to-7y-15p-price-paid" | "date-to-up-to-10y-25p-price-paid" | "date-to-from-3y-to-5y-supply" | "date-to-market-price-to-price-13d-sma-ratio-1m-sma" | "date-to-year-2022-70p-price-paid" | "date-to-up-to-3m-negative-unrealized-loss" | "date-to-from-1y-to-2y-net-realized-profit-and-loss-to-market-cap-ratio" | "date-to-market-price-to-up-to-6m-realized-price-ratio" | "date-to-market-price-to-active-price-ratio-1p" | "date-to-up-to-6m-35p-price-paid" | "date-to-year-2016-spent-output-profit-ratio" | "date-to-up-to-1d-20p-price-paid" | "date-to-from-7y-to-10y-supply" | "date-to-market-price-to-price-200w-sma-ratio-1y-sma-momentum-oscillator" | "date-to-market-price-to-year-2019-realized-price-ratio-1m-sma" | "date-to-up-to-1d-supply-to-circulating-supply-ratio" | "date-to-from-4y-sell-side-risk-ratio" | "date-to-sth-realized-price-99-9p" | "date-to-from-1d-to-1w-cumulative-net-realized-profit-and-loss" | "date-to-market-price-to-year-2021-realized-price-ratio-99p" | "date-to-market-price-to-year-2014-realized-price-ratio-0-5p" | "date-to-up-to-1m-45p-price-paid" | "date-to-from-3y-to-5y-90p-price-paid" | "date-to-liquid-realized-price-0-1p" | "date-to-year-2012-sell-side-risk-ratio" | "date-to-liquid-35p-price-paid" | "date-to-market-price-to-cointime-price-ratio-99-5p" | "date-to-market-price-to-price-21d-sma-ratio-99-9p" | "date-to-year-2009-unrealized-profit" | "date-to-up-to-7y-20p-price-paid" | "date-to-crab-realized-price-0-1p" | "date-to-up-to-2m-realized-price-0-5p" | "date-to-up-to-15y-input-volume" | "date-to-up-to-4m-35p-price-paid" | "date-to-p2tr-negative-realized-loss" | "date-to-from-6m-to-1y-realized-cap-1m-net-change" | "date-to-up-to-1d-cumulative-realized-profit" | "date-to-year-2019-15p-price-paid" | "date-to-year-2013-net-realized-profit-and-loss" | "date-to-market-price-to-year-2024-realized-price-ratio-99-5p" | "date-to-plankton-cumulative-realized-loss" | "date-to-fish-sell-side-risk-ratio" | "date-to-year-2016-unrealized-loss" | "date-to-year-2022-input-count" | "date-to-crab-realized-cap" | "date-to-p2tr-supply-in-loss-to-circulating-supply-ratio" | "date-to-year-2014-unrealized-loss" | "date-to-year-2024-halved-supply" | "date-to-market-price-to-year-2018-realized-price-ratio-0-1p" | "date-to-market-price-to-from-6m-to-1y-realized-price-ratio-1y-sma-momentum-oscillator" | "date-to-market-price-to-plankton-realized-price-ratio-1p" | "date-to-price-13d-sma-99p" | "date-to-up-to-2y-25p-price-paid" | "date-to-market-price-to-year-2009-realized-price-ratio-1y-sma" | "date-to-up-to-3y-cumulative-realized-loss" | "date-to-from-3y-to-5y-65p-price-paid" | "date-to-from-4y-20p-price-paid" | "date-to-market-price-to-from-4y-realized-price-ratio-1y-sma" | "date-to-from-1m-to-3m-realized-price-99-5p" | "date-to-from-10y-realized-price-0-1p" | "date-to-market-price-to-shrimp-realized-price-ratio-1m-sma" | "date-to-up-to-7y-negative-realized-loss" | "date-to-year-2014-unrealized-profit" | "date-to-year-2023-85p-price-paid" | "date-to-liquid-75p-price-paid" | "date-to-from-1m-to-3m-65p-price-paid" | "date-to-year-2020-supply-in-profit-to-own-supply-ratio" | "date-to-market-price-to-p2sh-realized-price-ratio-99p" | "date-to-market-price-to-year-2013-realized-price-ratio-1y-sma" | "date-to-from-4y-net-realized-profit-and-loss-to-market-cap-ratio" | "date-to-up-to-5y-35p-price-paid" | "date-to-from-3y-to-5y-utxo-count" | "date-to-market-price-to-price-2y-sma-ratio-99p" | "date-to-from-10y-to-15y-80p-price-paid" | "date-to-up-to-10y-80p-price-paid" | "date-to-from-7y-to-10y-net-realized-profit-and-loss" | "date-to-p2sh-input-count" | "date-to-year-2015-60p-price-paid" | "date-to-year-2015-net-realized-profit-and-loss-to-market-cap-ratio" | "date-to-year-2012-halved-supply-to-circulating-supply-ratio" | "date-to-market-price-to-from-10y-realized-price-ratio-99-5p" | "date-to-year-2016-65p-price-paid" | "date-to-year-2009-net-unrealized-profit-and-loss-to-market-cap-ratio" | "date-to-plankton-15p-price-paid" | "date-to-fish-negative-realized-loss" | "date-to-market-price-to-from-15y-realized-price-ratio-1y-sma" | "date-to-year-2018-supply-in-loss-to-circulating-supply-ratio" | "date-to-price-1m-total-return" | "date-to-year-2021-supply-in-profit" | "date-to-highly-liquid-55p-price-paid" | "date-to-up-to-7y-realized-price-99-5p" | "date-to-year-2024-40p-price-paid" | "date-to-up-to-1w-net-realized-profit-and-loss" | "date-to-from-1y-to-2y-supply-in-loss-to-circulating-supply-ratio" | "date-to-p2wpkh-65p-price-paid" | "date-to-year-2016-supply" | "date-to-highly-liquid-net-unrealized-profit-and-loss-to-market-cap-ratio" | "date-to-megalodon-input-volume" | "date-to-p2tr-utxo-count" | "date-to-humpback-cumulative-realized-loss" | "date-to-market-price-to-illiquid-realized-price-ratio-1w-sma" | "date-to-market-price-to-from-10y-realized-price-ratio-1y-sma-momentum-oscillator" | "date-to-p2tr-supply-in-profit-to-own-supply-ratio" | "date-to-highly-liquid-95p-price-paid" | "date-to-market-price-to-year-2009-realized-price-ratio-0-5p" | "date-to-market-price-to-megalodon-realized-price-ratio-99-9p" | "date-to-p2wpkh-realized-price-0-5p" | "date-to-price-13d-sma-99-5p" | "date-to-from-1m-to-3m-supply-in-loss-to-own-supply-ratio" | "date-to-shrimp-supply" | "date-to-up-to-1w-supply-in-profit-to-circulating-supply-ratio" | "date-to-market-price-to-from-5y-to-7y-realized-price-ratio-1w-sma" | "date-to-up-to-2y-70p-price-paid" | "date-to-crab-cumulative-realized-profit" | "date-to-from-1m-to-3m-value-created" | "date-to-lth-supply-in-profit" | "date-to-market-price-to-up-to-1y-realized-price-ratio-0-5p" | "date-to-market-price-to-up-to-5m-realized-price-ratio-99-5p" | "date-to-market-price-to-p2wsh-realized-price-ratio-1p" | "date-to-p2pkh-realized-cap" | "date-to-sth-10p-price-paid" | "date-to-whale-realized-price-99-5p" | "date-to-from-1m-to-3m-utxo-count" | "date-to-market-price-to-from-15y-realized-price-ratio-1m-sma" | "date-to-market-price-to-sth-realized-price-ratio-1w-sma" | "date-to-p2wpkh-90p-price-paid" | "date-to-vaulted-price-99p" | "date-to-year-2016-cumulative-net-realized-profit-and-loss" | "date-to-up-to-2y-45p-price-paid" | "date-to-up-to-3m-supply-in-profit" | "date-to-liquid-net-unrealized-profit-and-loss-to-market-cap-ratio" | "date-to-from-1w-to-1m-supply-in-loss" | "date-to-shrimp-input-count" | "date-to-humpback-net-unrealized-profit-and-loss-to-market-cap-ratio" | "date-to-up-to-10y-realized-cap-1m-net-change" | "date-to-year-2009-input-volume" | "date-to-year-2016-net-unrealized-profit-and-loss-to-market-cap-ratio" | "date-to-from-3y-to-5y-realized-price" | "date-to-year-2019-30p-price-paid" | "date-to-up-to-2y-cumulative-net-realized-profit-and-loss-1m-net-change" | "date-to-from-2y-to-3y-65p-price-paid" | "date-to-from-5y-to-7y-input-count" | "date-to-shark-supply-in-loss-to-own-supply-ratio" | "date-to-price-21d-sma-99-5p" | "date-to-year-2012-35p-price-paid" | "date-to-from-7y-to-10y-net-realized-profit-and-loss-to-market-cap-ratio" | "date-to-year-2021-10p-price-paid" | "date-to-from-1w-to-1m-85p-price-paid" | "date-to-from-3m-to-6m-net-realized-profit-and-loss-to-market-cap-ratio" | "date-to-market-price-to-crab-realized-price-ratio-1w-sma" | "date-to-from-1m-to-3m-15p-price-paid" | "date-to-market-price-to-from-1y-realized-price-ratio-1y-sma-momentum-oscillator" | "date-to-year-2015-realized-price-0-5p" | "date-to-up-to-3m-unrealized-profit" | "date-to-year-2009-15p-price-paid" | "date-to-market-price-to-up-to-1d-realized-price-ratio-99-9p" | "date-to-from-1m-to-3m-45p-price-paid" | "date-to-highly-liquid-90p-price-paid" | "date-to-from-1y-to-2y-input-volume" | "date-to-year-2016-70p-price-paid" | "date-to-year-2019-utxo-count" | "date-to-market-price-to-megalodon-realized-price-ratio-0-5p" | "date-to-year-2019-realized-price-99-9p" | "date-to-year-2012-negative-realized-loss" | "date-to-from-2y-realized-price-0-5p" | "date-to-market-price-to-year-2017-realized-price-ratio-99-9p" | "date-to-up-to-4m-unrealized-loss" | "date-to-up-to-5m-60p-price-paid" | "date-to-market-price-to-price-89d-sma-ratio-99-9p" | "date-to-up-to-6m-80p-price-paid" | "date-to-lth-halved-supply-to-circulating-supply-ratio" | "date-to-active-price-99-5p" | "date-to-p2pk-75p-price-paid" | "date-to-up-to-3m-value-created" | "date-to-market-price-to-year-2015-realized-price-ratio-99p" | "date-to-from-1m-to-3m-realized-price-1p" | "date-to-market-price-to-price-89d-sma-ratio-1m-sma" | "date-to-from-1w-to-1m-65p-price-paid" | "date-to-from-3m-to-6m-realized-price-99p" | "date-to-humpback-30p-price-paid" | "date-to-p2tr-realized-price-99p" | "date-to-up-to-3m-realized-price-0-5p" | "date-to-from-6m-to-1y-net-unrealized-profit-and-loss" | "date-to-blocks-mined-1w-sum" | "date-to-lth-75p-price-paid" | "date-to-up-to-2y-supply-in-loss-to-circulating-supply-ratio" | "date-to-megalodon-sell-side-risk-ratio" | "date-to-p2sh-realized-price" | "date-to-up-to-3y-supply-in-profit" | "date-to-market-price-to-up-to-1w-realized-price-ratio-1m-sma" | "date-to-unrealized-loss" | "date-to-market-price-to-from-5y-to-7y-realized-price-ratio-0-1p" | "date-to-cumulative-fees" | "date-to-from-1y-to-2y-spent-output-profit-ratio" | "date-to-from-6m-to-1y-40p-price-paid" | "date-to-market-price-to-from-1y-to-2y-realized-price-ratio-1y-sma" | "date-to-p2wpkh-net-realized-profit-and-loss" | "date-to-market-price-to-price-34d-sma-ratio-99p" | "date-to-from-10y-realized-price-1p" | "date-to-from-1y-to-2y-cumulative-realized-profit" | "date-to-from-7y-to-10y-realized-price" | "date-to-market-price-to-up-to-6m-realized-price-ratio-1p" | "date-to-market-price-to-p2sh-realized-price-ratio-0-1p" | "date-to-from-1y-value-created" | "date-to-market-price-to-price-1y-sma-ratio-1y-sma" | "date-to-up-to-15y-realized-value" | "date-to-up-to-7y-65p-price-paid" | "date-to-from-1d-to-1w-05p-price-paid" | "date-to-p2wpkh-sell-side-risk-ratio" | "date-to-market-price-to-up-to-7y-realized-price-ratio-99-9p" | "date-to-year-2013-unrealized-loss" | "date-to-year-2024-85p-price-paid" | "date-to-from-10y-unrealized-profit" | "date-to-shark-negative-realized-loss" | "date-to-up-to-4m-net-unrealized-profit-and-loss" | "date-to-year-2011-85p-price-paid" | "date-to-highly-liquid-supply-in-loss" | "date-to-up-to-2y-realized-price-99p" | "date-to-last-fees" | "date-to-sth-net-unrealized-profit-and-loss" | "date-to-up-to-2m-realized-price" | "date-to-year-2019-negative-unrealized-loss" | "date-to-year-2016-realized-cap-1m-net-change" | "date-to-from-10y-supply" | "date-to-from-1y-supply-in-profit-to-own-supply-ratio" | "date-to-up-to-2m-net-unrealized-profit-and-loss" | "date-to-from-15y-net-unrealized-profit-and-loss" | "date-to-lth-20p-price-paid" | "date-to-from-10y-to-15y-realized-price-0-1p" | "date-to-whale-net-realized-profit-and-loss-to-market-cap-ratio" | "date-to-market-price-to-megalodon-realized-price-ratio-1y-sma" | "date-to-year-2014-supply-to-circulating-supply-ratio" | "date-to-up-to-1m-35p-price-paid" | "date-to-sth-20p-price-paid" | "date-to-from-6m-to-1y-55p-price-paid" | "date-to-market-price-to-true-market-mean-ratio-0-5p" | "date-to-from-2y-10p-price-paid" | "date-to-market-price-to-cointime-price-ratio" | "date-to-up-to-2m-sell-side-risk-ratio" | "date-to-market-price-to-year-2016-realized-price-ratio-99p" | "date-to-up-to-1w-realized-loss" | "date-to-p2sh-value-created" | "date-to-price-144d-sma-0-1p" | "date-to-market-price-to-up-to-3m-realized-price-ratio" | "date-to-block-size-1d-min" | "date-to-from-15y-negative-realized-loss" | "date-to-sth-input-volume" | "date-to-from-10y-median-price-paid" | "date-to-year-2020-realized-price" | "date-to-from-7y-to-10y-realized-price-1p" | "date-to-market-price-to-up-to-1y-realized-price-ratio-99p" | "date-to-market-price-to-up-to-3y-realized-price-ratio-99-5p" | "date-to-up-to-10y-input-volume" | "date-to-market-price-to-from-3m-to-6m-realized-price-ratio-1w-sma" | "date-to-up-to-2m-realized-price-1p" | "date-to-from-15y-realized-cap-1m-net-change" | "date-to-up-to-4m-supply-in-loss" | "date-to-from-2y-to-3y-net-realized-profit-and-loss" | "date-to-year-2015-supply-in-loss-to-circulating-supply-ratio" | "date-to-lth-supply-in-loss-to-own-supply-ratio" | "date-to-sth-halved-supply-to-circulating-supply-ratio" | "date-to-market-price-to-price-21d-sma-ratio-1w-sma" | "date-to-from-5y-to-7y-55p-price-paid" | "date-to-p2sh-10p-price-paid" | "date-to-p2pkh-unrealized-profit" | "date-to-p2sh-90p-price-paid" | "date-to-up-to-2m-realized-cap" | "date-to-whale-45p-price-paid" | "date-to-year-2017-20p-price-paid" | "date-to-market-price-to-up-to-7y-realized-price-ratio-0-5p" | "date-to-up-to-1m-realized-price-1p" | "date-to-up-to-1m-supply-in-loss" | "date-to-from-1d-to-1w-supply-in-profit-to-circulating-supply-ratio" | "date-to-p2wsh-address-count" | "date-to-up-to-1m-realized-price-0-1p" | "date-to-from-2y-95p-price-paid" | "date-to-from-5y-to-7y-realized-profit" | "date-to-humpback-25p-price-paid" | "date-to-year-2024-80p-price-paid" | "date-to-from-6m-to-1y-realized-profit" | "date-to-up-to-10y-30p-price-paid" | "date-to-up-to-3y-realized-price-1p" | "date-to-up-to-15y-45p-price-paid" | "date-to-market-price-to-year-2022-realized-price-ratio-1y-sma" | "date-to-market-price-to-year-2024-realized-price-ratio-1y-sma-momentum-oscillator" | "date-to-crab-realized-price-0-5p" | "date-to-year-2013-spent-output-profit-ratio" | "date-to-p2pkh-sell-side-risk-ratio" | "date-to-from-15y-30p-price-paid" | "date-to-sth-realized-price-0-5p" | "date-to-market-price-to-from-5y-to-7y-realized-price-ratio-1y-sma" | "date-to-liquid-utxo-count" | "date-to-price-1w-sma-99-5p" | "date-to-sth-realized-cap-1m-net-change" | "date-to-year-2013-median-price-paid" | "date-to-market-price-to-whale-realized-price-ratio-0-1p" | "date-to-market-price-to-plankton-realized-price-ratio" | "date-to-illiquid-realized-price-99p" | "date-to-up-to-7y-sell-side-risk-ratio" | "date-to-p2wsh-realized-price-0-5p" | "date-to-up-to-1w-unrealized-profit" | "date-to-year-2010-05p-price-paid" | "date-to-year-2014-65p-price-paid" | "date-to-from-4y-net-unrealized-profit-and-loss" | "date-to-year-2021-supply-to-circulating-supply-ratio" | "date-to-market-price-to-from-1m-to-3m-realized-price-ratio-1m-sma" | "date-to-p2pkh-45p-price-paid" | "date-to-market-price-to-year-2014-realized-price-ratio-99-9p" | "date-to-market-price-to-up-to-15y-realized-price-ratio-99p" | "date-to-year-2021-median-price-paid" | "date-to-year-2022-15p-price-paid" | "date-to-from-15y-realized-cap" | "date-to-market-price-to-highly-liquid-realized-price-ratio-1p" | "date-to-market-price-to-from-2y-realized-price-ratio-1p" | "date-to-market-price-to-price-8d-sma-ratio-1w-sma" | "date-to-market-price-to-up-to-5m-realized-price-ratio" | "date-to-up-to-1d-unrealized-loss" | "date-to-year-2013-realized-value" | "date-to-year-2022-supply" | "date-to-input-volume" | "date-to-year-2010-utxo-count" | "date-to-year-2011-realized-price-0-1p" | "date-to-shrimp-sell-side-risk-ratio" | "date-to-year-2021-supply-in-profit-to-circulating-supply-ratio" | "date-to-p2tr-30p-price-paid" | "date-to-market-price-to-from-1d-to-1w-realized-price-ratio-0-5p" | "date-to-up-to-4m-net-realized-profit-and-loss" | "date-to-year-2009-cumulative-realized-profit" | "date-to-year-2022-net-unrealized-profit-and-loss" | "date-to-up-to-4m-realized-price-0-1p" | "date-to-whale-realized-price-99p" | "date-to-from-10y-to-15y-supply-in-profit" | "date-to-plankton-supply-in-profit-to-circulating-supply-ratio" | "date-to-whale-realized-profit" | "date-to-up-to-1w-25p-price-paid" | "date-to-price-2y-sma-99p" | "date-to-lth-supply-in-profit-to-circulating-supply-ratio" | "date-to-up-to-2m-supply-in-profit" | "date-to-sth-value-destroyed" | "date-to-up-to-5m-30p-price-paid" | "date-to-whale-cumulative-net-realized-profit-and-loss" | "date-to-whale-70p-price-paid" | "date-to-plankton-supply-in-loss-to-own-supply-ratio" | "date-to-year-2021-60p-price-paid" | "date-to-block-weight-1d-min" | "date-to-year-2023-supply" | "date-to-market-price-to-from-10y-to-15y-realized-price-ratio-1y-sma-momentum-oscillator" | "date-to-humpback-realized-cap-1m-net-change" | "date-to-from-7y-to-10y-35p-price-paid" | "date-to-humpback-net-realized-profit-and-loss" | "date-to-market-price-to-year-2013-realized-price-ratio-99-9p" | "date-to-year-2016-halved-supply-to-circulating-supply-ratio" | "date-to-megalodon-realized-value" | "date-to-from-3y-to-5y-median-price-paid" | "date-to-market-price-to-up-to-3m-realized-price-ratio-0-1p" | "date-to-up-to-4m-realized-price" | "date-to-from-1m-to-3m-input-count" | "date-to-p2sh-realized-value" | "date-to-up-to-10y-supply-in-loss-to-own-supply-ratio" | "date-to-from-10y-45p-price-paid" | "date-to-up-to-1d-unrealized-profit" | "date-to-plankton-60p-price-paid" | "date-to-year-2019-60p-price-paid" | "date-to-market-price-to-price-1m-sma-ratio-0-5p" | "date-to-from-6m-to-1y-utxo-count" | "date-to-p2pk-10p-price-paid" | "date-to-from-2y-to-3y-15p-price-paid" | "date-to-from-10y-spent-output-profit-ratio" | "date-to-humpback-40p-price-paid" | "date-to-humpback-cumulative-net-realized-profit-and-loss-1m-net-change" | "date-to-market-price-to-price-55d-sma-ratio" | "date-to-market-price-to-year-2016-realized-price-ratio-1w-sma" | "date-to-supply-in-loss-to-circulating-supply-ratio" | "date-to-year-2014-cumulative-net-realized-profit-and-loss" | "date-to-up-to-3m-realized-price-99-9p" | "date-to-market-price-to-active-price-ratio" | "date-to-highly-liquid-realized-loss" | "date-to-market-price-to-from-1m-to-3m-realized-price-ratio-0-5p" | "date-to-market-price-to-up-to-2m-realized-price-ratio-99-9p" | "date-to-market-price-to-year-2010-realized-price-ratio-99-9p" | "date-to-up-to-6m-negative-unrealized-loss" | "date-to-sth-cumulative-net-realized-profit-and-loss-1m-net-change" | "date-to-shark-55p-price-paid" | "date-to-up-to-2y-net-realized-profit-and-loss-to-market-cap-ratio" | "date-to-up-to-7y-realized-price-0-5p" | "date-to-whale-net-unrealized-profit-and-loss" | "date-to-from-10y-to-15y-halved-supply" | "date-to-market-price-to-year-2021-realized-price-ratio-0-1p" | "date-to-year-2013-30p-price-paid" | "date-to-up-to-2m-supply-to-circulating-supply-ratio" | "date-to-from-6m-to-1y-negative-realized-loss" | "date-to-from-3m-to-6m-20p-price-paid" | "date-to-highly-liquid-45p-price-paid" | "date-to-year-2022-realized-price" | "date-to-up-to-2m-value-created" | "date-to-from-7y-to-10y-unrealized-loss" | "date-to-year-2009-supply-in-loss" | "date-to-from-10y-to-15y-realized-profit" | "date-to-year-2021-cumulative-net-realized-profit-and-loss" | "date-to-from-2y-net-realized-profit-and-loss-to-market-cap-ratio" | "date-to-up-to-5y-supply-in-loss-to-circulating-supply-ratio" | "date-to-year-2024-negative-unrealized-loss" | "date-to-up-to-5m-input-count" | "date-to-from-2y-to-3y-60p-price-paid" | "date-to-up-to-5m-80p-price-paid" | "date-to-shark-realized-value" | "date-to-from-3y-to-5y-supply-in-profit-to-circulating-supply-ratio" | "date-to-from-3y-to-5y-cumulative-net-realized-profit-and-loss-1m-net-change" | "date-to-market-price-to-from-1m-to-3m-realized-price-ratio-99-5p" | "date-to-market-price-to-true-market-mean-ratio-99-9p" | "date-to-up-to-5y-45p-price-paid" | "date-to-year-2020-supply" | "date-to-from-1d-to-1w-realized-price-0-1p" | "date-to-whale-supply-in-profit-to-own-supply-ratio" | "date-to-transactions-per-second-1w-sma" | "date-to-market-price-to-up-to-1y-realized-price-ratio-0-1p" | "date-to-plankton-20p-price-paid" | "date-to-up-to-7y-supply-in-loss" | "date-to-year-2009-halved-supply-to-circulating-supply-ratio" | "date-to-market-price-to-price-200w-sma-ratio-0-5p" | "date-to-p2tr-cumulative-realized-loss" | "date-to-year-2019-realized-price-0-1p" | "date-to-85p-price-paid" | "date-to-from-1d-to-1w-realized-price-1p" | "date-to-from-5y-to-7y-supply-in-loss-to-circulating-supply-ratio" | "date-to-halved-supply-to-circulating-supply-ratio" | "date-to-up-to-5y-80p-price-paid" | "date-to-up-to-5y-unrealized-loss" | "date-to-up-to-1w-realized-profit" | "date-to-up-to-7y-net-realized-profit-and-loss" | "date-to-year-2016-realized-loss" | "date-to-year-2012-realized-price" | "date-to-p2wpkh-cumulative-realized-loss" | "date-to-from-4y-supply" | "date-to-shark-supply-in-profit-to-circulating-supply-ratio" | "date-to-up-to-15y-realized-loss" | "date-to-year-2015-05p-price-paid" | "date-to-year-2024-15p-price-paid" | "date-to-liquid-90p-price-paid" | "date-to-price-13d-sma-99-9p" | "date-to-market-price-to-liquid-realized-price-ratio-1y-sma-momentum-oscillator" | "date-to-price-13d-sma-0-5p" | "date-to-cointime-adjusted-velocity" | "date-to-market-price-to-price-21d-sma-ratio-99p" | "date-to-from-3y-to-5y-supply-to-circulating-supply-ratio" | "date-to-p2sh-net-realized-profit-and-loss-to-market-cap-ratio" | "date-to-year-2016-60p-price-paid" | "date-to-highly-liquid-15p-price-paid" | "date-to-from-1y-to-2y-35p-price-paid" | "date-to-from-7y-to-10y-supply-to-circulating-supply-ratio" | "date-to-p2pkh-negative-realized-loss" | "date-to-shrimp-net-realized-profit-and-loss" | "date-to-market-price-to-up-to-3y-realized-price-ratio-0-1p" | "date-to-05p-price-paid" | "date-to-year-2015-supply-in-profit" | "date-to-up-to-1d-realized-profit" | "date-to-up-to-10y-realized-price" | "date-to-up-to-1w-cumulative-net-realized-profit-and-loss-1m-net-change" | "date-to-from-15y-negative-unrealized-loss" | "date-to-year-2021-realized-price-99-9p" | "date-to-p2sh-supply-in-profit-to-own-supply-ratio" | "date-to-from-1y-to-2y-20p-price-paid" | "date-to-up-to-3y-95p-price-paid" | "date-to-market-price-to-price-8d-sma-ratio-99-5p" | "date-to-year-2021-halved-supply" | "date-to-year-2019-35p-price-paid" | "date-to-up-to-7y-halved-supply" | "date-to-year-2024-realized-profit" | "date-to-from-1d-to-1w-75p-price-paid" | "date-to-shark-20p-price-paid" | "date-to-market-price-to-price-8d-sma-ratio-1p" | "date-to-p2pk-median-price-paid" | "date-to-price-1m-sma-99p" | "date-to-year-2011-realized-price-99-5p" | "date-to-price-6m-total-return" | "date-to-highly-liquid-realized-profit" | "date-to-fish-negative-unrealized-loss" | "date-to-up-to-2m-75p-price-paid" | "date-to-price-2y-sma-99-5p" | "date-to-up-to-2y-supply-in-profit-to-circulating-supply-ratio" | "date-to-year-2024-input-volume" | "date-to-year-2024-realized-cap" | "date-to-whale-realized-cap-1m-net-change" | "date-to-from-4y-realized-price" | "date-to-p2wsh-net-unrealized-profit-and-loss-to-market-cap-ratio" | "date-to-shrimp-halved-supply-to-circulating-supply-ratio" | "date-to-sth-supply-to-circulating-supply-ratio" | "date-to-1" | "date-to-liquid-realized-price-99-9p" | "date-to-up-to-10y-supply-in-profit" | "date-to-from-7y-to-10y-80p-price-paid" | "date-to-from-10y-to-15y-35p-price-paid" | "date-to-lth-net-unrealized-profit-and-loss-to-market-cap-ratio" | "date-to-price-3y-total-return" | "date-to-up-to-10y-60p-price-paid" | "date-to-up-to-2m-value-destroyed" | "date-to-year-2012-cumulative-net-realized-profit-and-loss-1m-net-change" | "date-to-plankton-unrealized-profit" | "date-to-from-1y-cumulative-realized-loss" | "date-to-market-price-to-fish-realized-price-ratio" | "date-to-illiquid-40p-price-paid" | "date-to-price-200w-sma-99-5p" | "date-to-year-2022-65p-price-paid" | "date-to-from-1w-to-1m-input-volume" | "date-to-market-price-to-p2wpkh-realized-price-ratio-1y-sma" | "date-to-up-to-2m-65p-price-paid" | "date-to-up-to-1y-05p-price-paid" | "date-to-from-7y-to-10y-median-price-paid" | "date-to-plankton-30p-price-paid" | "date-to-year-2021-net-realized-profit-and-loss-to-market-cap-ratio" | "date-to-market-price-to-price-1w-sma-ratio-1y-sma" | "date-to-last-fees-in-dollars" | "date-to-fish-spent-output-profit-ratio" | "date-to-up-to-1m-net-unrealized-profit-and-loss-to-market-cap-ratio" | "date-to-market-price-to-price-8d-sma-ratio-1y-sma" | "date-to-market-price-to-from-15y-realized-price-ratio" | "date-to-year-2022-realized-price-99p" | "date-to-from-1d-to-1w-realized-cap-1m-net-change" | "date-to-from-3m-to-6m-55p-price-paid" | "date-to-fish-input-volume" | "date-to-from-1d-to-1w-realized-value" | "date-to-from-7y-to-10y-10p-price-paid" | "date-to-from-1y-to-2y-realized-loss" | "date-to-market-price-to-from-4y-realized-price-ratio" | "date-to-p2pk-45p-price-paid" | "date-to-from-4y-value-created" | "date-to-p2wsh-35p-price-paid" | "date-to-up-to-15y-supply-in-loss-to-circulating-supply-ratio" | "date-to-up-to-1m-median-price-paid" | "date-to-illiquid-negative-realized-loss" | "date-to-market-price-to-year-2017-realized-price-ratio-1m-sma" | "date-to-from-10y-to-15y-unrealized-profit" | "date-to-up-to-2y-negative-unrealized-loss" | "date-to-vaultedness" | "date-to-up-to-3m-55p-price-paid" | "date-to-highly-liquid-supply-in-profit-to-circulating-supply-ratio" | "date-to-price-34d-sma" | "date-to-market-price-to-up-to-1d-realized-price-ratio-99p" | "date-to-from-10y-to-15y-realized-price" | "date-to-humpback-supply-to-circulating-supply-ratio" | "date-to-up-to-4m-realized-value" | "date-to-up-to-5m-realized-cap" | "date-to-year-2013-90p-price-paid" | "date-to-year-2017-cumulative-realized-loss" | "date-to-active-price-0-5p" | "date-to-from-15y-realized-price-0-1p" | "date-to-market-price-to-p2wsh-realized-price-ratio-1y-sma-momentum-oscillator" | "date-to-highly-liquid-cumulative-net-realized-profit-and-loss" | "date-to-sth-realized-cap" | "date-to-year-2023-15p-price-paid" | "date-to-market-price-to-up-to-6m-realized-price-ratio-99p" | "date-to-year-2017-utxo-count" | "date-to-up-to-1y-80p-price-paid" | "date-to-from-1w-to-1m-realized-price-0-5p" | "date-to-from-1w-to-1m-utxo-count" | "date-to-from-2y-net-unrealized-profit-and-loss" | "date-to-price-1m-sma-99-5p" | "date-to-megalodon-realized-cap" | "date-to-year-2011-20p-price-paid" | "date-to-from-3m-to-6m-sell-side-risk-ratio" | "date-to-from-3y-to-5y-supply-in-loss-to-own-supply-ratio" | "date-to-crab-05p-price-paid" | "date-to-up-to-10y-45p-price-paid" | "date-to-sth-35p-price-paid" | "date-to-up-to-4m-supply-to-circulating-supply-ratio" | "date-to-year-2009-realized-price-1p" | "date-to-p2wpkh-value-created" | "date-to-market-price-to-price-1y-sma-ratio-1p" | "date-to-price-2y-sma-0-5p" | "date-to-up-to-10y-net-realized-profit-and-loss" | "date-to-p2pk-realized-price" | "date-to-from-4y-35p-price-paid" | "date-to-up-to-10y-10p-price-paid" | "date-to-shrimp-85p-price-paid" | "date-to-year-2018-realized-price" | "date-to-market-price-to-active-price-ratio-1y-sma-momentum-oscillator" | "date-to-year-2017-65p-price-paid" | "date-to-p2sh-15p-price-paid" | "date-to-liquid-85p-price-paid" | "date-to-year-2011-70p-price-paid" | "date-to-year-2019-spent-output-profit-ratio" | "date-to-blocks-mined-1m-sma" | "date-to-from-15y-cumulative-net-realized-profit-and-loss-1m-net-change" | "date-to-illiquid-55p-price-paid" | "date-to-fish-halved-supply-to-circulating-supply-ratio" | "date-to-fish-supply-in-profit" | "date-to-from-7y-to-10y-sell-side-risk-ratio" | "date-to-realized-price" | "date-to-year-2009-supply-in-loss-to-own-supply-ratio" | "date-to-up-to-1y-realized-price-1p" | "date-to-from-1y-to-2y-unrealized-loss" | "date-to-up-to-2y-input-count" | "date-to-market-price-to-year-2011-realized-price-ratio-1m-sma" | "date-to-illiquid-halved-supply" | "date-to-from-7y-to-10y-realized-price-0-1p" | "date-to-megalodon-utxo-count" | "date-to-p2wsh-net-unrealized-profit-and-loss" | "date-to-up-to-5m-10p-price-paid" | "date-to-market-price-to-price-55d-sma-ratio-0-1p" | "date-to-lth-net-unrealized-profit-and-loss" | "date-to-market-price-to-from-1y-to-2y-realized-price-ratio-99-5p" | "date-to-from-10y-to-15y-cumulative-realized-loss" | "date-to-total-cointime-value-destroyed" | "date-to-year-2010-unrealized-profit" | "date-to-up-to-1m-utxo-count" | "date-to-market-price-to-from-10y-realized-price-ratio-1w-sma" | "date-to-megalodon-negative-realized-loss" | "date-to-up-to-2y-realized-cap" | "date-to-crab-value-destroyed" | "date-to-whale-value-created" | "date-to-lth-30p-price-paid" | "date-to-from-1m-to-3m-05p-price-paid" | "date-to-market-price-to-realized-price-ratio-0-1p" | "date-to-whale-negative-unrealized-loss" | "date-to-from-10y-to-15y-negative-unrealized-loss" | "date-to-market-price-to-active-price-ratio-99-9p" | "date-to-market-price-to-year-2021-realized-price-ratio-1w-sma" | "date-to-p2pkh-cumulative-realized-profit" | "date-to-year-2020-realized-cap-1m-net-change" | "date-to-p2wpkh-55p-price-paid" | "date-to-humpback-realized-profit" | "date-to-year-2014-halved-supply-to-circulating-supply-ratio" | "date-to-illiquid-25p-price-paid" | "date-to-from-1d-to-1w-value-created" | "date-to-up-to-1d-negative-unrealized-loss" | "date-to-up-to-4m-supply" | "date-to-from-1m-to-3m-net-realized-profit-and-loss" | "date-to-up-to-7y-median-price-paid" | "date-to-from-3y-to-5y-supply-in-profit" | "date-to-from-1w-to-1m-60p-price-paid" | "date-to-from-5y-to-7y-realized-loss" | "date-to-market-price-to-from-1d-to-1w-realized-price-ratio-99-5p" | "date-to-market-price-to-price-55d-sma-ratio-99-5p" | "date-to-from-1y-to-2y-65p-price-paid" | "date-to-crab-35p-price-paid" | "date-to-from-2y-to-3y-realized-price-99-5p" | "date-to-up-to-1y-realized-price-0-5p" | "date-to-market-price-to-from-1m-to-3m-realized-price-ratio-1y-sma" | "date-to-from-3y-to-5y-sell-side-risk-ratio" | "date-to-year-2016-realized-price-99-5p" | "date-to-market-price-to-year-2012-realized-price-ratio" | "date-to-price-8y-total-return" | "date-to-active-supply" | "date-to-price-55d-sma-0-5p" | "date-to-from-1y-to-2y-80p-price-paid" | "date-to-from-10y-to-15y-95p-price-paid" | "date-to-market-price-to-from-1w-to-1m-realized-price-ratio-1p" | "date-to-from-10y-to-15y-realized-price-0-5p" | "date-to-from-2y-supply-to-circulating-supply-ratio" | "date-to-from-2y-to-3y-realized-price" | "date-to-market-price-to-year-2010-realized-price-ratio-1y-sma" | "date-to-megalodon-40p-price-paid" | "date-to-market-price-to-realized-price-ratio-1m-sma" | "date-to-up-to-1m-10p-price-paid" | "date-to-shrimp-net-unrealized-profit-and-loss-to-market-cap-ratio" | "date-to-market-price-to-realized-price-ratio-0-5p" | "date-to-from-1d-to-1w-unrealized-profit" | "date-to-fish-realized-profit" | "date-to-highly-liquid-input-count" | "date-to-liquid-realized-cap-1m-net-change" | "date-to-year-2017-net-unrealized-profit-and-loss" | "date-to-from-2y-realized-price-99-5p" | "date-to-plankton-05p-price-paid" | "date-to-year-2019-75p-price-paid" | "date-to-up-to-15y-value-created" | "date-to-up-to-6m-40p-price-paid" | "date-to-year-2022-cumulative-realized-profit" | "date-to-up-to-1y-unrealized-profit" | "date-to-year-2019-10p-price-paid" | "date-to-year-2011-net-unrealized-profit-and-loss-to-market-cap-ratio" | "date-to-year-2023-spent-output-profit-ratio" | "date-to-year-2018-supply" | "date-to-up-to-6m-halved-supply" | "date-to-from-7y-to-10y-value-destroyed" | "date-to-market-price-to-year-2020-realized-price-ratio-0-1p" | "date-to-market-price-to-from-7y-to-10y-realized-price-ratio-99-5p" | "date-to-market-price-to-year-2016-realized-price-ratio-1p" | "date-to-realized-price-0-1p" | "date-to-created-addresses" | "date-to-up-to-15y-35p-price-paid" | "date-to-p2pkh-realized-price-0-1p" | "date-to-market-price-to-year-2020-realized-price-ratio-99p" | "date-to-up-to-3y-utxo-count" | "date-to-sth-sell-side-risk-ratio" | "date-to-from-4y-net-realized-profit-and-loss" | "date-to-illiquid-net-realized-profit-and-loss" | "date-to-whale-95p-price-paid" | "date-to-from-1m-to-3m-median-price-paid" | "date-to-coinbase-in-dollars" | "date-to-market-price-to-price-21d-sma-ratio" | "date-to-year-2011-45p-price-paid" | "date-to-year-2022-55p-price-paid" | "date-to-year-2022-cumulative-net-realized-profit-and-loss-1m-net-change" | "date-to-from-7y-to-10y-realized-cap-1m-net-change" | "date-to-75p-price-paid" | "date-to-highly-liquid-input-volume" | "date-to-market-price-to-from-1y-to-2y-realized-price-ratio-1w-sma" | "date-to-market-price-to-from-2y-to-3y-realized-price-ratio-1y-sma" | "date-to-up-to-5m-cumulative-realized-loss" | "date-to-from-15y-realized-loss" | "date-to-year-2023-realized-profit" | "date-to-market-price-to-up-to-5y-realized-price-ratio-1y-sma" | "date-to-from-1w-to-1m-realized-loss" | "date-to-fish-realized-price-99p" | "date-to-from-10y-net-realized-profit-and-loss" | "date-to-market-price-to-p2wsh-realized-price-ratio-1w-sma" | "date-to-p2pkh-realized-value" | "date-to-up-to-1m-90p-price-paid" | "date-to-from-10y-95p-price-paid" | "date-to-up-to-10y-net-unrealized-profit-and-loss" | "date-to-year-2012-supply-in-profit-to-circulating-supply-ratio" | "date-to-from-3m-to-6m-40p-price-paid" | "date-to-from-2y-realized-price-1p" | "date-to-market-price-to-cointime-price-ratio-99-9p" | "date-to-year-2018-input-count" | "date-to-humpback-supply-in-loss" | "date-to-price-1w-sma-99-9p" | "date-to-year-2013-35p-price-paid" | "date-to-year-2012-supply-in-profit" | "date-to-vaulted-price-0-5p" | "date-to-year-2017-realized-profit" | "date-to-from-6m-to-1y-median-price-paid" | "date-to-market-price-to-price-55d-sma-ratio-1w-sma" | "date-to-up-to-6m-realized-cap-1m-net-change" | "date-to-subsidy-in-dollars" | "date-to-year-2019-supply-in-loss-to-own-supply-ratio" | "date-to-year-2024-realized-price" | "date-to-illiquid-realized-price-0-1p" | "date-to-p2wsh-60p-price-paid" | "date-to-year-2016-net-unrealized-profit-and-loss" | "date-to-from-10y-70p-price-paid" | "date-to-year-2019-realized-cap-1m-net-change" | "date-to-up-to-1w-realized-price-1p" | "date-to-whale-supply-in-loss" | "date-to-highly-liquid-85p-price-paid" | "date-to-year-2023-supply-in-loss" | "date-to-from-2y-to-3y-35p-price-paid" | "date-to-from-1y-to-2y-net-unrealized-profit-and-loss" | "date-to-market-price-to-from-2y-to-3y-realized-price-ratio-1y-sma-momentum-oscillator" | "date-to-megalodon-80p-price-paid" | "date-to-p2pk-supply-in-profit-to-circulating-supply-ratio" | "date-to-up-to-15y-realized-price" | "date-to-market-price-to-up-to-15y-realized-price-ratio-0-5p" | "date-to-up-to-5y-realized-price-0-1p" | "date-to-market-price-to-from-3y-to-5y-realized-price-ratio-1w-sma" | "date-to-year-2011-realized-price-1p" | "date-to-year-2015-75p-price-paid" | "date-to-year-2020-net-realized-profit-and-loss" | "date-to-up-to-3y-unrealized-profit" | "date-to-market-price-to-from-5y-to-7y-realized-price-ratio-0-5p" | "date-to-up-to-7y-input-count" | "date-to-whale-60p-price-paid" | "date-to-market-price-to-price-89d-sma-ratio-1p" | "date-to-from-2y-05p-price-paid" | "date-to-whale-realized-value" | "date-to-from-10y-to-15y-supply-to-circulating-supply-ratio" | "date-to-market-price-to-fish-realized-price-ratio-0-1p" | "date-to-p2pkh-realized-loss" | "date-to-from-15y-05p-price-paid" | "date-to-up-to-1d-05p-price-paid" | "date-to-up-to-3m-realized-value" | "date-to-up-to-6m-supply-in-loss-to-circulating-supply-ratio" | "date-to-megalodon-cumulative-net-realized-profit-and-loss" | "date-to-year-2009-input-count" | "date-to-year-2024-20p-price-paid" | "date-to-market-price-to-from-1m-to-3m-realized-price-ratio-0-1p" | "date-to-up-to-10y-85p-price-paid" | "date-to-p2tr-value-destroyed" | "date-to-up-to-2m-unrealized-profit" | "date-to-crab-45p-price-paid" | "date-to-humpback-cumulative-realized-profit" | "date-to-market-price-to-fish-realized-price-ratio-0-5p" | "date-to-market-price-to-plankton-realized-price-ratio-0-1p" | "date-to-shark-realized-price-0-5p" | "date-to-up-to-1m-supply-in-profit-to-circulating-supply-ratio" | "date-to-year-2021-supply-in-loss" | "date-to-year-2010-cumulative-realized-profit" | "date-to-from-10y-net-unrealized-profit-and-loss" | "date-to-market-price-to-realized-price-ratio" | "date-to-up-to-1m-sell-side-risk-ratio" | "date-to-year-2017-55p-price-paid" | "date-to-year-2013-cumulative-realized-loss" | "date-to-lth-realized-price-0-5p" | "date-to-block-interval-1d-10p" | "date-to-market-price-to-from-3y-to-5y-realized-price-ratio-0-5p" | "date-to-from-3m-to-6m-75p-price-paid" | "date-to-up-to-15y-halved-supply-to-circulating-supply-ratio" | "date-to-market-price-to-price-34d-sma-ratio-1m-sma" | "date-to-from-7y-to-10y-realized-loss" | "date-to-from-7y-to-10y-value-created" | "date-to-shrimp-realized-price-99-5p" | "date-to-up-to-1w-70p-price-paid" | "date-to-up-to-5m-supply-in-profit" | "date-to-up-to-5y-utxo-count" | "date-to-market-price-to-p2sh-realized-price-ratio-1w-sma" | "date-to-humpback-05p-price-paid" | "date-to-block-vbytes-1d-min" | "date-to-illiquid-65p-price-paid" | "date-to-price-21d-sma" | "date-to-year-2012-10p-price-paid" | "date-to-from-10y-net-unrealized-profit-and-loss-to-market-cap-ratio" | "date-to-from-10y-to-15y-negative-realized-loss" | "date-to-up-to-6m-supply-in-profit-to-own-supply-ratio" | "date-to-from-10y-sell-side-risk-ratio" | "date-to-year-2014-cumulative-realized-profit" | "date-to-year-2019-cumulative-net-realized-profit-and-loss" | "date-to-year-2021-realized-price-99p" | "date-to-market-price-to-year-2018-realized-price-ratio-0-5p" | "date-to-market-price-to-price-4y-sma-ratio-1y-sma-momentum-oscillator" | "date-to-up-to-1m-55p-price-paid" | "date-to-price-1y-sma" | "date-to-year-2015-realized-cap" | "date-to-market-price-to-active-price-ratio-0-1p" | "date-to-up-to-1m-input-volume" | "date-to-from-10y-negative-unrealized-loss" | "date-to-year-2023-80p-price-paid" | "date-to-market-price-to-highly-liquid-realized-price-ratio-1y-sma-momentum-oscillator" | "date-to-p2wsh-negative-realized-loss" | "date-to-from-3m-to-6m-supply-in-loss" | "date-to-market-price-to-shark-realized-price-ratio-1p" | "date-to-from-1y-supply-in-loss" | "date-to-year-2018-25p-price-paid" | "date-to-from-2y-to-3y-20p-price-paid" | "date-to-year-2012-value-created" | "date-to-from-3m-to-6m-10p-price-paid" | "date-to-from-2y-40p-price-paid" | "date-to-from-3m-to-6m-unrealized-profit" | "date-to-market-price-to-from-1y-realized-price-ratio" | "date-to-p2pkh-net-realized-profit-and-loss" | "date-to-year-2017-supply-in-profit-to-own-supply-ratio" | "date-to-up-to-3y-sell-side-risk-ratio" | "date-to-illiquid-cumulative-net-realized-profit-and-loss" | "date-to-up-to-5m-sell-side-risk-ratio" | "date-to-year-2019-realized-price-0-5p" | "date-to-p2wsh-25p-price-paid" | "date-to-year-2015-realized-price-99p" | "date-to-from-1w-to-1m-30p-price-paid" | "date-to-from-10y-to-15y-75p-price-paid" | "date-to-market-price-to-up-to-15y-realized-price-ratio-1m-sma" | "date-to-p2tr-realized-price-0-5p" | "date-to-p2wpkh-70p-price-paid" | "date-to-from-1d-to-1w-65p-price-paid" | "date-to-supply-in-profit" | "date-to-from-1y-negative-unrealized-loss" | "date-to-market-price-to-from-2y-to-3y-realized-price-ratio-1m-sma" | "date-to-shark-spent-output-profit-ratio" | "date-to-plankton-supply-in-profit" | "date-to-up-to-3m-cumulative-realized-loss" | "date-to-from-1y-to-2y-halved-supply" | "date-to-market-price-to-active-price-ratio-0-5p" | "date-to-from-2y-spent-output-profit-ratio" | "date-to-up-to-1y-input-volume" | "date-to-up-to-2y-realized-price-1p" | "date-to-up-to-3y-realized-price-0-5p" | "date-to-year-2023-net-realized-profit-and-loss-to-market-cap-ratio" | "date-to-from-10y-cumulative-net-realized-profit-and-loss-1m-net-change" | "date-to-highly-liquid-35p-price-paid" | "date-to-market-price-to-up-to-3y-realized-price-ratio" | "date-to-plankton-net-realized-profit-and-loss" | "date-to-market-price-to-from-1m-to-3m-realized-price-ratio-99p" | "date-to-market-price-to-from-1y-to-2y-realized-price-ratio-1y-sma-momentum-oscillator" | "date-to-market-price-to-from-7y-to-10y-realized-price-ratio-99-9p" | "date-to-from-15y-95p-price-paid" | "date-to-up-to-4m-05p-price-paid" | "date-to-market-price-to-price-1w-sma-ratio-1m-sma" | "date-to-up-to-5y-realized-cap" | "date-to-year-2012-45p-price-paid" | "date-to-p2pkh-halved-supply-to-circulating-supply-ratio" | "date-to-year-2024-spent-output-profit-ratio" | "date-to-market-price-to-p2tr-realized-price-ratio-1m-sma" | "date-to-cumulative-coinbase-in-dollars" | "date-to-from-1w-to-1m-supply-in-profit" | "date-to-from-10y-20p-price-paid" | "date-to-from-3m-to-6m-cumulative-realized-profit" | "date-to-market-price-to-year-2013-realized-price-ratio-99p" | "date-to-up-to-2m-negative-realized-loss" | "date-to-year-2013-halved-supply" | "date-to-year-2023-cumulative-net-realized-profit-and-loss" | "date-to-market-price-to-price-34d-sma-ratio-99-5p" | "date-to-market-price-to-shrimp-realized-price-ratio" | "date-to-market-price-to-from-15y-realized-price-ratio-99-9p" | "date-to-year-2009-realized-price-99p" | "date-to-year-2022-halved-supply" | "date-to-market-price-to-up-to-1d-realized-price-ratio-0-1p" | "date-to-up-to-5y-net-unrealized-profit-and-loss-to-market-cap-ratio" | "date-to-up-to-7y-utxo-count" | "date-to-market-price-to-year-2011-realized-price-ratio-0-1p" | "date-to-price-8d-sma-99-9p" | "date-to-year-2022-supply-in-profit-to-own-supply-ratio" | "date-to-from-10y-to-15y-45p-price-paid" | "date-to-from-1y-to-2y-realized-profit" | "date-to-year-2024-55p-price-paid" | "date-to-from-3y-to-5y-negative-realized-loss" | "date-to-from-1d-to-1w-25p-price-paid" | "date-to-market-price-to-up-to-4m-realized-price-ratio-0-5p" | "date-to-fish-10p-price-paid" | "date-to-from-1y-to-2y-negative-realized-loss" | "date-to-from-1y-to-2y-60p-price-paid" | "date-to-from-10y-to-15y-cumulative-net-realized-profit-and-loss-1m-net-change" | "date-to-fish-net-unrealized-profit-and-loss" | "date-to-from-2y-to-3y-realized-price-0-1p" | "date-to-year-2020-35p-price-paid" | "date-to-up-to-15y-supply" | "date-to-p2sh-20p-price-paid" | "date-to-up-to-4m-realized-cap" | "date-to-from-1d-to-1w-median-price-paid" | "date-to-up-to-5y-net-realized-profit-and-loss-to-market-cap-ratio" | "date-to-year-2018-realized-profit" | "date-to-p2pk-80p-price-paid" | "date-to-year-2014-supply-in-loss" | "date-to-up-to-1w-40p-price-paid" | "date-to-from-3m-to-6m-45p-price-paid" | "date-to-market-price-to-up-to-5y-realized-price-ratio-99-9p" | "date-to-p2pk-realized-price-1p" | "date-to-up-to-2y-value-destroyed" | "date-to-market-price-to-from-5y-to-7y-realized-price-ratio-99-9p" | "date-to-crab-net-unrealized-profit-and-loss-to-market-cap-ratio" | "date-to-market-price-to-up-to-4m-realized-price-ratio-99-5p" | "date-to-crab-net-realized-profit-and-loss" | "date-to-from-3y-to-5y-70p-price-paid" | "date-to-plankton-75p-price-paid" | "date-to-market-price-to-year-2023-realized-price-ratio-1y-sma-momentum-oscillator" | "date-to-liquid-70p-price-paid" | "date-to-market-price-to-year-2017-realized-price-ratio-1y-sma-momentum-oscillator" | "date-to-market-price-to-from-5y-to-7y-realized-price-ratio-1y-sma-momentum-oscillator" | "date-to-market-price-to-up-to-6m-realized-price-ratio-1y-sma" | "date-to-puell-multiple" | "date-to-from-6m-to-1y-unrealized-profit" | "date-to-from-1w-to-1m-sell-side-risk-ratio" | "date-to-p2wpkh-realized-cap" | "date-to-up-to-3y-net-unrealized-profit-and-loss-to-market-cap-ratio" | "date-to-up-to-5y-supply-in-profit-to-circulating-supply-ratio" | "date-to-year-2017-halved-supply-to-circulating-supply-ratio" | "date-to-from-3y-to-5y-value-created" | "date-to-sth-realized-loss" | "date-to-year-2011-realized-price-99p" | "date-to-year-2018-90p-price-paid" | "date-to-market-price-to-whale-realized-price-ratio-1p" | "date-to-from-15y-sell-side-risk-ratio" | "date-to-up-to-6m-negative-realized-loss" | "date-to-up-to-3y-60p-price-paid" | "date-to-year-2015-90p-price-paid" | "date-to-year-2013-65p-price-paid" | "date-to-up-to-2m-realized-value" | "date-to-year-2020-realized-profit" | "date-to-up-to-1y-15p-price-paid" | "date-to-p2wsh-sell-side-risk-ratio" | "date-to-year-2012-95p-price-paid" | "date-to-year-2015-realized-price-99-9p" | "date-to-liquid-supply-to-circulating-supply-ratio" | "date-to-up-to-1m-net-realized-profit-and-loss" | "date-to-p2sh-realized-price-0-1p" | "date-to-year-2022-realized-loss" | "date-to-up-to-1w-30p-price-paid" | "date-to-from-4y-supply-in-loss-to-circulating-supply-ratio" | "date-to-from-1m-to-3m-supply-in-profit-to-circulating-supply-ratio" | "date-to-up-to-1d-40p-price-paid" | "date-to-up-to-5m-supply-in-loss-to-circulating-supply-ratio" | "date-to-year-2015-15p-price-paid" | "date-to-market-price-to-from-1y-to-2y-realized-price-ratio-99-9p" | "date-to-year-2010-90p-price-paid" | "date-to-market-price-to-from-15y-realized-price-ratio-0-1p" | "date-to-year-2017-value-destroyed" | "date-to-up-to-1d-25p-price-paid" | "date-to-year-2022-cumulative-net-realized-profit-and-loss" | "date-to-year-2017-supply" | "date-to-from-15y-70p-price-paid" | "date-to-year-2023-55p-price-paid" | "date-to-plankton-utxo-count" | "date-to-p2sh-cumulative-realized-loss" | "date-to-from-1y-75p-price-paid" | "date-to-lth-negative-realized-loss" | "date-to-year-2017-supply-in-loss" | "date-to-market-price-to-price-13d-sma-ratio-1y-sma-momentum-oscillator" | "date-to-negative-unrealized-loss" | "date-to-year-2020-90p-price-paid" | "date-to-liquid-net-realized-profit-and-loss" | "date-to-market-price-to-price-13d-sma-ratio-0-5p" | "date-to-highly-liquid-realized-price-0-1p" | "date-to-market-price-to-year-2019-realized-price-ratio-99-9p" | "date-to-year-2015-10p-price-paid" | "date-to-from-5y-to-7y-halved-supply" | "date-to-market-price-to-from-1y-realized-price-ratio-0-1p" | "date-to-p2sh-net-realized-profit-and-loss" | "date-to-up-to-5y-realized-cap-1m-net-change" | "date-to-year-2009-realized-loss" | "date-to-year-2011-cumulative-realized-loss" | "date-to-from-2y-to-3y-cumulative-net-realized-profit-and-loss-1m-net-change" | "date-to-liquid-realized-cap" | "date-to-from-15y-median-price-paid" | "date-to-market-price-to-from-2y-realized-price-ratio-99-5p" | "date-to-year-2014-40p-price-paid" | "date-to-market-price-to-year-2022-realized-price-ratio-1y-sma-momentum-oscillator" | "date-to-year-2010-value-created" | "date-to-year-2018-net-realized-profit-and-loss-to-market-cap-ratio" | "date-to-up-to-4m-25p-price-paid" | "date-to-up-to-7y-spent-output-profit-ratio" | "date-to-from-5y-to-7y-30p-price-paid" | "date-to-year-2019-supply-in-profit-to-own-supply-ratio" | "date-to-humpback-net-realized-profit-and-loss-to-market-cap-ratio" | "date-to-illiquid-negative-unrealized-loss" | "date-to-p2sh-supply-in-loss" | "date-to-from-3y-to-5y-45p-price-paid" | "date-to-whale-cumulative-realized-loss" | "date-to-p2sh-negative-realized-loss" | "date-to-up-to-5m-realized-price-1p" | "date-to-from-6m-to-1y-85p-price-paid" | "date-to-market-price-to-year-2018-realized-price-ratio-1y-sma-momentum-oscillator" | "date-to-up-to-2y-input-volume" | "date-to-p2wsh-cumulative-realized-loss" | "date-to-year-2015-supply-in-profit-to-own-supply-ratio" | "date-to-fish-cumulative-net-realized-profit-and-loss-1m-net-change" | "date-to-p2wpkh-realized-value" | "date-to-illiquid-supply" | "date-to-year-2020-70p-price-paid" | "date-to-up-to-4m-85p-price-paid" | "date-to-from-1m-to-3m-realized-price" | "date-to-year-2022-net-unrealized-profit-and-loss-to-market-cap-ratio" | "date-to-up-to-7y-halved-supply-to-circulating-supply-ratio" | "date-to-up-to-1y-supply-to-circulating-supply-ratio" | "date-to-from-4y-70p-price-paid" | "date-to-from-3y-to-5y-20p-price-paid" | "date-to-from-10y-to-15y-realized-cap" | "date-to-from-15y-15p-price-paid" | "date-to-from-5y-to-7y-unrealized-loss" | "date-to-market-price-to-year-2010-realized-price-ratio-99-5p" | "date-to-shark-10p-price-paid" | "date-to-up-to-1w-realized-price-0-5p" | "date-to-price-89d-sma-0-1p" | "date-to-market-price-to-price-34d-sma-ratio-0-1p" | "date-to-from-4y-realized-value" | "date-to-humpback-85p-price-paid" | "date-to-p2pk-90p-price-paid" | "date-to-year-2009-65p-price-paid" | "date-to-year-2014-55p-price-paid" | "date-to-from-1d-to-1w-40p-price-paid" | "date-to-up-to-3m-utxo-count" | "date-to-year-2023-05p-price-paid" | "date-to-price-4y-sma-99-5p" | "date-to-from-3m-to-6m-65p-price-paid" | "date-to-up-to-6m-45p-price-paid" | "date-to-year-2009-55p-price-paid" | "date-to-up-to-2m-supply-in-loss-to-own-supply-ratio" | "date-to-new-addresses" | "date-to-p2pkh-realized-cap-1m-net-change" | "date-to-year-2015-negative-unrealized-loss" | "date-to-market-price-to-from-1d-to-1w-realized-price-ratio-1w-sma" | "date-to-megalodon-55p-price-paid" | "date-to-from-7y-to-10y-supply-in-profit" | "date-to-up-to-1m-realized-price-99-9p" | "date-to-up-to-4m-80p-price-paid" | "date-to-up-to-2y-95p-price-paid" | "date-to-up-to-2y-unrealized-profit" | "date-to-subsidy-to-coinbase-ratio" | "date-to-true-market-mean-1p" | "date-to-whale-supply-in-loss-to-own-supply-ratio" | "date-to-up-to-6m-net-realized-profit-and-loss-to-market-cap-ratio" | "date-to-year-2015-net-realized-profit-and-loss" | "date-to-from-7y-to-10y-cumulative-net-realized-profit-and-loss-1m-net-change" | "date-to-shark-45p-price-paid" | "date-to-up-to-3m-40p-price-paid" | "date-to-up-to-4m-input-volume" | "date-to-from-7y-to-10y-cumulative-realized-loss" | "date-to-up-to-1w-supply-in-loss-to-circulating-supply-ratio" | "date-to-from-3y-to-5y-10p-price-paid" | "date-to-market-price-to-from-6m-to-1y-realized-price-ratio-99p" | "date-to-market-price-to-realized-price-ratio-1w-sma" | "date-to-market-price-to-whale-realized-price-ratio-99p" | "date-to-year-2023-90p-price-paid" | "date-to-year-2022-net-realized-profit-and-loss-to-market-cap-ratio" | "date-to-from-2y-to-3y-input-volume" | "date-to-market-price-to-price-89d-sma-ratio-1y-sma-momentum-oscillator" | "date-to-from-1d-to-1w-realized-price-99-9p" | "date-to-year-2018-realized-price-99-9p" | "date-to-from-1y-realized-price-0-1p" | "date-to-year-2024-25p-price-paid" | "date-to-up-to-2m-10p-price-paid" | "date-to-plankton-realized-cap" | "date-to-p2wpkh-95p-price-paid" | "date-to-market-price-to-p2wpkh-realized-price-ratio-0-5p" | "date-to-from-1y-to-2y-realized-price-99-5p" | "date-to-sth-unrealized-profit" | "date-to-liquid-median-price-paid" | "date-to-up-to-15y-20p-price-paid" | "date-to-year-2018-realized-cap" | "date-to-crab-supply-in-loss-to-own-supply-ratio" | "date-to-from-7y-to-10y-30p-price-paid" | "date-to-market-price-to-up-to-1m-realized-price-ratio-1y-sma-momentum-oscillator" | "date-to-year-2022-realized-profit" | "date-to-up-to-1d-sell-side-risk-ratio" | "date-to-lth-sell-side-risk-ratio" | "date-to-up-to-5m-realized-price-99-5p" | "date-to-from-3m-to-6m-05p-price-paid" | "date-to-plankton-value-destroyed" | "date-to-up-to-6m-utxo-count" | "date-to-year-2009-supply-in-profit-to-own-supply-ratio" | "date-to-whale-unrealized-profit" | "date-to-up-to-10y-unrealized-profit" | "date-to-market-price-to-price-89d-sma-ratio-0-1p" | "date-to-sth-95p-price-paid" | "date-to-megalodon-median-price-paid" | "date-to-year-2013-halved-supply-to-circulating-supply-ratio" | "date-to-market-price-to-year-2024-realized-price-ratio-1p" | "date-to-cointime-value-created" | "date-to-market-price-to-p2wsh-realized-price-ratio-99-5p" | "date-to-highly-liquid-value-destroyed" | "date-to-crab-realized-price-1p" | "date-to-lth-realized-cap" | "date-to-true-market-mean" | "date-to-up-to-1w-realized-price" | "date-to-up-to-5m-20p-price-paid" | "date-to-up-to-1y-realized-price-99-5p" | "date-to-year-2017-negative-unrealized-loss" | "date-to-market-price-to-sth-realized-price-ratio-99p" | "date-to-market-price-to-year-2021-realized-price-ratio-1y-sma-momentum-oscillator" | "date-to-year-2010-supply-in-profit-to-circulating-supply-ratio" | "date-to-from-15y-supply" | "date-to-from-6m-to-1y-35p-price-paid" | "date-to-up-to-5y-60p-price-paid" | "date-to-market-price-to-price-34d-sma-ratio-0-5p" | "date-to-price-10y-total-return" | "date-to-from-2y-to-3y-realized-price-99-9p" | "date-to-market-price-to-p2wsh-realized-price-ratio-0-1p" | "date-to-up-to-1m-realized-price-99p" | "date-to-from-3m-to-6m-supply-in-profit" | "date-to-up-to-2m-supply-in-loss-to-circulating-supply-ratio" | "date-to-year-2016-35p-price-paid" | "date-to-p2sh-spent-output-profit-ratio" | "date-to-market-price-to-year-2009-realized-price-ratio-1m-sma" | "date-to-illiquid-sell-side-risk-ratio" | "date-to-year-2021-85p-price-paid" | "date-to-year-2014-80p-price-paid" | "date-to-thermo-cap-to-investor-cap-ratio" | "date-to-from-10y-to-15y-net-realized-profit-and-loss-to-market-cap-ratio" | "date-to-price-8d-sma" | "date-to-up-to-3y-realized-cap" | "date-to-up-to-5y-cumulative-net-realized-profit-and-loss" | "date-to-up-to-5y-30p-price-paid" | "date-to-fish-25p-price-paid" | "date-to-market-price-to-p2wpkh-realized-price-ratio-99p" | "date-to-market-price-to-megalodon-realized-price-ratio" | "date-to-illiquid-utxo-count" | "date-to-price-200w-sma-99-9p" | "date-to-up-to-2m-80p-price-paid" | "date-to-megalodon-realized-price" | "date-to-up-to-1w-unrealized-loss" | "date-to-price-2y-sma" | "date-to-up-to-15y-70p-price-paid" | "date-to-liquid-supply-in-loss-to-own-supply-ratio" | "date-to-from-3m-to-6m-realized-profit" | "date-to-lth-halved-supply" | "date-to-market-price-to-megalodon-realized-price-ratio-1y-sma-momentum-oscillator" | "date-to-market-price-to-true-market-mean-ratio-1p" | "date-to-up-to-2m-cumulative-net-realized-profit-and-loss-1m-net-change" | "date-to-year-2014-10p-price-paid" | "date-to-year-2010-70p-price-paid" | "date-to-p2wsh-85p-price-paid" | "date-to-p2sh-realized-cap-1m-net-change" | "date-to-market-price-to-p2pkh-realized-price-ratio-99-5p" | "date-to-up-to-2m-45p-price-paid" | "date-to-market-price-to-p2pkh-realized-price-ratio-1m-sma" | "date-to-year-2012-15p-price-paid" | "date-to-fish-realized-cap-1m-net-change" | "date-to-market-price-to-price-1y-sma-ratio-0-1p" | "date-to-year-2014-net-realized-profit-and-loss-to-market-cap-ratio" | "date-to-market-price-to-from-3m-to-6m-realized-price-ratio" | "date-to-last-coinbase" | "date-to-price-4y-compound-return" | "date-to-price-1d-total-return" | "date-to-cumulative-realized-profit" | "date-to-from-10y-supply-in-profit-to-own-supply-ratio" | "date-to-from-1w-to-1m-supply-in-loss-to-own-supply-ratio" | "date-to-market-price-to-up-to-2y-realized-price-ratio" | "date-to-p2wpkh-realized-price-1p" | "date-to-year-2017-negative-realized-loss" | "date-to-from-4y-realized-cap-1m-net-change" | "date-to-market-price-to-up-to-2m-realized-price-ratio" | "date-to-year-2017-70p-price-paid" | "date-to-blocks-mined-1d-target" | "date-to-from-1y-to-2y-value-created" | "date-to-crab-net-realized-profit-and-loss-to-market-cap-ratio" | "date-to-difficulty-adjustment" | "date-to-year-2017-45p-price-paid" | "date-to-year-2024-supply-to-circulating-supply-ratio" | "date-to-highly-liquid-cumulative-realized-profit" | "date-to-year-2023-35p-price-paid" | "date-to-market-price-to-from-3m-to-6m-realized-price-ratio-0-1p" | "date-to-p2wsh-supply-in-profit-to-own-supply-ratio" | "date-to-market-price-to-year-2024-realized-price-ratio-0-1p" | "date-to-up-to-5m-95p-price-paid" | "date-to-highly-liquid-realized-cap" | "date-to-from-7y-to-10y-input-count" | "date-to-crab-realized-value" | "date-to-market-price-to-up-to-10y-realized-price-ratio" | "date-to-up-to-1d-35p-price-paid" | "date-to-p2wsh-cumulative-net-realized-profit-and-loss-1m-net-change" | "date-to-up-to-1d-utxo-count" | "date-to-year-2015-net-unrealized-profit-and-loss" | "date-to-from-7y-to-10y-65p-price-paid" | "date-to-market-price-to-from-3m-to-6m-realized-price-ratio-99-9p" | "date-to-sth-cumulative-realized-loss" | "date-to-year-2021-cumulative-realized-profit" | "date-to-year-2016-85p-price-paid" | "date-to-year-2011-net-unrealized-profit-and-loss" | "date-to-vaulted-price-99-5p" | "date-to-year-2015-realized-profit" | "date-to-year-2010-cumulative-net-realized-profit-and-loss" | "date-to-p2pk-25p-price-paid" | "date-to-cumulative-fees-in-dollars" | "date-to-humpback-utxo-count" | "date-to-market-price-to-from-10y-to-15y-realized-price-ratio-1m-sma" | "date-to-up-to-15y-60p-price-paid" | "date-to-year-2024-90p-price-paid" | "date-to-from-2y-to-3y-halved-supply-to-circulating-supply-ratio" | "date-to-year-2013-realized-price-0-1p" | "date-to-from-1m-to-3m-cumulative-net-realized-profit-and-loss" | "date-to-from-1y-to-2y-95p-price-paid" | "date-to-year-2010-10p-price-paid" | "date-to-year-2010-supply-in-loss" | "date-to-year-2018-30p-price-paid" | "date-to-humpback-halved-supply" | "date-to-up-to-5m-35p-price-paid" | "date-to-year-2014-negative-realized-loss" | "date-to-humpback-90p-price-paid" | "date-to-up-to-5y-90p-price-paid" | "date-to-megalodon-realized-price-0-5p" | "date-to-p2wsh-input-count" | "date-to-from-4y-value-destroyed" | "date-to-up-to-10y-supply-in-profit-to-circulating-supply-ratio" | "date-to-market-price-to-p2wsh-realized-price-ratio-1m-sma" | "date-to-market-price-to-from-1m-to-3m-realized-price-ratio-1w-sma" | "date-to-market-price-to-year-2016-realized-price-ratio-99-9p" | "date-to-market-price-to-from-10y-realized-price-ratio-99p" | "date-to-humpback-realized-price-99-5p" | "date-to-market-price-to-from-2y-realized-price-ratio-1y-sma-momentum-oscillator" | "date-to-up-to-1w-10p-price-paid" | "date-to-from-7y-to-10y-realized-value" | "date-to-vaulted-price-0-1p" | "date-to-sth-realized-price" | "date-to-market-price-to-from-10y-realized-price-ratio-0-1p" | "date-to-market-price-to-year-2011-realized-price-ratio-0-5p" | "date-to-from-7y-to-10y-spent-output-profit-ratio" | "date-to-from-15y-65p-price-paid" | "date-to-year-2017-input-volume" | "date-to-from-3m-to-6m-realized-value" | "date-to-up-to-2m-unrealized-loss" | "date-to-market-price-to-price-1m-sma-ratio-99-9p" | "date-to-market-price-to-year-2015-realized-price-ratio-99-5p" | "date-to-up-to-6m-30p-price-paid" | "date-to-from-2y-to-3y-sell-side-risk-ratio" | "date-to-up-to-3m-realized-cap-1m-net-change" | "date-to-up-to-2m-supply-in-profit-to-own-supply-ratio" | "date-to-year-2020-60p-price-paid" | "date-to-fish-20p-price-paid" | "date-to-year-2016-supply-in-profit-to-own-supply-ratio" | "date-to-year-2018-unrealized-loss" | "date-to-input-count" | "date-to-transaction-volume-in-dollars" | "date-to-sth-realized-price-1p" | "date-to-sth-negative-realized-loss" | "date-to-from-1m-to-3m-realized-price-99-9p" | "date-to-year-2019-median-price-paid" | "date-to-market-price-to-year-2014-realized-price-ratio-1y-sma-momentum-oscillator" | "date-to-up-to-4m-cumulative-realized-profit" | "date-to-investorness" | "date-to-last-subsidy" | "date-to-market-price-to-price-1y-sma-ratio" | "date-to-highly-liquid-realized-value" | "date-to-sth-net-realized-profit-and-loss" | "date-to-crab-realized-cap-1m-net-change" | "date-to-sth-supply-in-profit-to-own-supply-ratio" | "date-to-price-34d-sma-99p" | "date-to-up-to-1y-30p-price-paid" | "date-to-up-to-4m-realized-profit" | "date-to-p2tr-10p-price-paid" | "date-to-year-2021-30p-price-paid" | "date-to-up-to-1m-realized-price" | "date-to-p2pk-net-realized-profit-and-loss" | "date-to-market-price-to-up-to-15y-realized-price-ratio-1y-sma-momentum-oscillator" | "date-to-cumulative-realized-loss" | "date-to-from-1w-to-1m-95p-price-paid" | "date-to-up-to-5y-input-volume" | "date-to-market-price-to-price-13d-sma-ratio-1p" | "date-to-market-price-to-from-4y-realized-price-ratio-99-9p" | "date-to-up-to-1d-supply-in-profit" | "date-to-crab-supply-in-loss-to-circulating-supply-ratio" | "date-to-up-to-3m-supply-in-loss-to-own-supply-ratio" | "date-to-market-price-to-price-2y-sma-ratio-1y-sma" | "date-to-market-price-to-up-to-7y-realized-price-ratio-99p" | "date-to-up-to-5y-70p-price-paid" | "date-to-year-2017-85p-price-paid" | "date-to-p2pkh-20p-price-paid" | "date-to-humpback-unrealized-loss" | "date-to-year-2020-supply-in-loss-to-circulating-supply-ratio" | "date-to-up-to-1w-value-created" | "date-to-p2tr-input-count" | "date-to-from-5y-to-7y-utxo-count" | "date-to-up-to-3y-median-price-paid" | "date-to-shark-cumulative-net-realized-profit-and-loss" | "date-to-up-to-15y-cumulative-net-realized-profit-and-loss" | "date-to-from-10y-to-15y-value-destroyed" | "date-to-year-2018-supply-in-profit-to-circulating-supply-ratio" | "date-to-market-price-to-from-3m-to-6m-realized-price-ratio-0-5p" | "date-to-up-to-3m-supply-in-profit-to-own-supply-ratio" | "date-to-investor-cap" | "date-to-p2pkh-realized-price-0-5p" | "date-to-p2sh-95p-price-paid" | "date-to-market-price-to-up-to-1y-realized-price-ratio-1w-sma" | "date-to-year-2012-negative-unrealized-loss" | "date-to-year-2012-realized-price-99p" | "date-to-year-2021-negative-unrealized-loss" | "date-to-market-price-to-up-to-7y-realized-price-ratio-1y-sma" | "date-to-illiquid-supply-in-loss" | "date-to-market-price-to-highly-liquid-realized-price-ratio-1y-sma" | "date-to-market-price-to-up-to-7y-realized-price-ratio-1w-sma" | "date-to-p2wpkh-supply-in-profit-to-circulating-supply-ratio" | "date-to-year-2022-85p-price-paid" | "date-to-from-1y-to-2y-cumulative-net-realized-profit-and-loss-1m-net-change" | "date-to-up-to-7y-net-realized-profit-and-loss-to-market-cap-ratio" | "date-to-p2pkh-75p-price-paid" | "date-to-p2pk-address-count" | "date-to-up-to-1y-supply-in-profit-to-own-supply-ratio" | "date-to-from-7y-to-10y-55p-price-paid" | "date-to-up-to-1m-realized-profit" | "date-to-year-2016-cumulative-realized-profit" | "date-to-market-price-to-up-to-3m-realized-price-ratio-99p" | "date-to-up-to-15y-utxo-count" | "date-to-market-price-to-from-4y-realized-price-ratio-1y-sma-momentum-oscillator" | "date-to-up-to-1y-75p-price-paid" | "date-to-from-15y-cumulative-realized-profit" | "date-to-up-to-3y-input-count" | "date-to-year-2020-negative-realized-loss" | "date-to-year-2020-supply-in-profit-to-circulating-supply-ratio" | "date-to-market-price-to-price-144d-sma-ratio-1w-sma" | "date-to-market-price-to-from-6m-to-1y-realized-price-ratio-1m-sma" | "date-to-year-2011-realized-profit" | "date-to-up-to-3y-30p-price-paid" | "date-to-price-1w-sma-0-1p" | "date-to-market-price-to-humpback-realized-price-ratio-1m-sma" | "date-to-market-price-to-year-2012-realized-price-ratio-0-1p" | "date-to-from-4y-supply-in-profit-to-own-supply-ratio" | "date-to-highly-liquid-net-realized-profit-and-loss-to-market-cap-ratio" | "date-to-humpback-realized-loss" | "date-to-p2pkh-35p-price-paid" | "date-to-shrimp-realized-cap-1m-net-change" | "date-to-sth-input-count" | "date-to-market-price-to-up-to-1d-realized-price-ratio-0-5p" | "date-to-fees-in-dollars-1y-sum" | "date-to-year-2009-supply" | "date-to-year-2018-cumulative-realized-profit" | "date-to-year-2022-supply-in-loss-to-own-supply-ratio" | "date-to-market-price-to-p2tr-realized-price-ratio-1y-sma-momentum-oscillator" | "date-to-market-price-to-up-to-15y-realized-price-ratio-1w-sma" | "date-to-up-to-2m-supply-in-loss" | "date-to-from-1y-10p-price-paid" | "date-to-up-to-2y-10p-price-paid" | "date-to-from-1y-spent-output-profit-ratio" | "date-to-market-price-to-cointime-price-ratio-1m-sma" | "date-to-up-to-3m-65p-price-paid" | "date-to-market-price-to-from-1y-to-2y-realized-price-ratio-0-5p" | "date-to-year-2011-cumulative-net-realized-profit-and-loss" | "date-to-year-2022-95p-price-paid" | "date-to-market-price-to-year-2014-realized-price-ratio-1w-sma" | "date-to-from-1y-to-2y-median-price-paid" | "date-to-market-price-to-price-144d-sma-ratio-1y-sma-momentum-oscillator" | "date-to-p2wpkh-realized-price" | "date-to-up-to-4m-70p-price-paid" | "date-to-from-6m-to-1y-realized-price-99-5p" | "date-to-year-2011-60p-price-paid" | "date-to-year-2021-halved-supply-to-circulating-supply-ratio" | "date-to-from-6m-to-1y-realized-price" | "date-to-year-2013-realized-loss" | "date-to-year-2018-realized-price-99-5p" | "date-to-whale-net-unrealized-profit-and-loss-to-market-cap-ratio" | "date-to-from-7y-to-10y-cumulative-net-realized-profit-and-loss" | "date-to-shark-net-realized-profit-and-loss-to-market-cap-ratio" | "date-to-year-2013-supply-in-profit-to-circulating-supply-ratio" | "date-to-p2tr-input-volume" | "date-to-market-price-to-active-price-ratio-99-5p" | "date-to-illiquid-supply-to-circulating-supply-ratio" | "date-to-from-1y-to-2y-supply-in-loss" | "date-to-block-weight-1d-90p" | "date-to-from-1w-to-1m-supply-in-loss-to-circulating-supply-ratio" | "date-to-from-3m-to-6m-negative-realized-loss" | "date-to-market-price-to-price-144d-sma-ratio-1p" | "date-to-plankton-halved-supply-to-circulating-supply-ratio" | "date-to-market-price-to-true-market-mean-ratio-1y-sma" | "date-to-from-15y-supply-in-profit-to-own-supply-ratio" | "date-to-highly-liquid-median-price-paid" | "date-to-p2pkh-input-count" | "date-to-year-2011-65p-price-paid" | "date-to-from-7y-to-10y-net-unrealized-profit-and-loss-to-market-cap-ratio" | "date-to-year-2013-70p-price-paid" | "date-to-year-2015-realized-price-0-1p" | "date-to-year-2020-input-count" | "date-to-market-price-to-from-1d-to-1w-realized-price-ratio-1y-sma" | "date-to-year-2024-median-price-paid" | "date-to-from-1w-to-1m-unrealized-profit" | "date-to-illiquid-60p-price-paid" | "date-to-market-price-to-price-1m-sma-ratio-1m-sma" | "date-to-from-10y-realized-price" | "date-to-market-price-to-up-to-6m-realized-price-ratio-1m-sma" | "date-to-p2pkh-net-realized-profit-and-loss-to-market-cap-ratio" | "date-to-cumulative-subsidy-in-dollars" | "date-to-up-to-2m-realized-profit" | "date-to-up-to-1w-90p-price-paid" | "date-to-year-2015-85p-price-paid" | "date-to-market-price-to-sth-realized-price-ratio-1y-sma" | "date-to-up-to-1y-realized-price-0-1p" | "date-to-p2tr-supply-in-profit" | "date-to-up-to-4m-75p-price-paid" | "date-to-up-to-1w-spent-output-profit-ratio" | "date-to-from-10y-to-15y-55p-price-paid" | "date-to-year-2013-realized-price-99p" | "date-to-shrimp-realized-price-0-5p" | "date-to-up-to-1w-15p-price-paid" | "date-to-crab-median-price-paid" | "date-to-sth-supply-in-loss-to-circulating-supply-ratio" | "date-to-up-to-3y-10p-price-paid" | "date-to-up-to-6m-15p-price-paid" | "date-to-year-2013-supply-to-circulating-supply-ratio" | "date-to-year-2022-realized-cap" | "date-to-activity-to-vaultedness-ratio" | "date-to-up-to-6m-realized-price-0-1p" | "date-to-p2pk-input-volume" | "date-to-shark-address-count" | "date-to-liquid-realized-price" | "date-to-up-to-1y-60p-price-paid" | "date-to-year-2019-net-unrealized-profit-and-loss" | "date-to-p2sh-supply-in-profit-to-circulating-supply-ratio" | "date-to-humpback-20p-price-paid" | "date-to-market-price-to-from-4y-realized-price-ratio-99p" | "date-to-realized-price-99-5p" | "date-to-year-2010-realized-price-0-5p" | "date-to-price" | "date-to-price-8d-sma-0-1p" | "date-to-year-2024-unrealized-loss" | "date-to-price-200w-sma" | "date-to-p2pkh-cumulative-net-realized-profit-and-loss" | "date-to-up-to-1d-65p-price-paid" | "date-to-year-2009-realized-price-0-5p" | "date-to-year-2018-65p-price-paid" | "date-to-from-6m-to-1y-unrealized-loss" | "date-to-plankton-realized-profit" | "date-to-shrimp-supply-in-loss-to-own-supply-ratio" | "date-to-year-2016-negative-realized-loss" | "date-to-fish-supply" | "date-to-from-6m-to-1y-spent-output-profit-ratio" | "date-to-55p-price-paid" | "date-to-from-3y-to-5y-realized-profit" | "date-to-market-price-to-p2sh-realized-price-ratio-1p" | "date-to-p2pk-realized-profit" | "date-to-highly-liquid-unrealized-profit" | "date-to-p2wsh-halved-supply-to-circulating-supply-ratio" | "date-to-whale-80p-price-paid" | "date-to-p2pk-negative-unrealized-loss" | "date-to-p2tr-value-created" | "date-to-p2tr-supply-in-loss-to-own-supply-ratio" | "date-to-realized-price-1p" | "date-to-year-2012-net-unrealized-profit-and-loss-to-market-cap-ratio" | "date-to-market-price-to-year-2010-realized-price-ratio" | "date-to-fish-supply-in-loss" | "date-to-from-2y-realized-profit" | "date-to-up-to-3m-value-destroyed" | "date-to-up-to-1m-40p-price-paid" | "date-to-from-1w-to-1m-supply-in-profit-to-own-supply-ratio" | "date-to-megalodon-realized-cap-1m-net-change" | "date-to-from-1d-to-1w-input-count" | "date-to-fish-supply-to-circulating-supply-ratio" | "date-to-from-10y-to-15y-unrealized-loss" | "date-to-from-1y-net-unrealized-profit-and-loss" | "date-to-from-5y-to-7y-20p-price-paid" | "date-to-market-price-to-year-2015-realized-price-ratio-1m-sma" | "date-to-p2pk-supply-in-loss" | "date-to-lth-realized-value" | "date-to-from-10y-to-15y-supply" | "date-to-crab-cumulative-realized-loss" | "date-to-megalodon-supply-in-profit" | "date-to-up-to-7y-supply" | "date-to-from-7y-to-10y-supply-in-loss" | "date-to-highly-liquid-unrealized-loss" | "date-to-up-to-3y-45p-price-paid" | "date-to-from-1w-to-1m-cumulative-net-realized-profit-and-loss-1m-net-change" | "date-to-humpback-realized-price-1p" | "date-to-true-market-mean-0-1p" | "date-to-fish-45p-price-paid" | "date-to-up-to-7y-realized-price-0-1p" | "date-to-market-price-to-p2wpkh-realized-price-ratio-1w-sma" | "date-to-market-price-to-whale-realized-price-ratio-99-5p" | "date-to-price-144d-sma-99p" | "date-to-from-1y-realized-price-1p" | "date-to-market-price-to-price-4y-sma-ratio-1y-sma" | "date-to-market-price-to-from-3m-to-6m-realized-price-ratio-1m-sma" | "date-to-transaction-volume-1m-sma" | "date-to-year-2012-value-destroyed" | "date-to-from-7y-to-10y-realized-price-99-5p" | "date-to-up-to-2m-halved-supply" | "date-to-market-price-to-up-to-10y-realized-price-ratio-99-9p" | "date-to-market-price-to-up-to-2y-realized-price-ratio-99p" | "date-to-year-2024-realized-price-99p" | "date-to-from-2y-to-3y-75p-price-paid" | "date-to-year-2024-cumulative-net-realized-profit-and-loss" | "date-to-year-2019-value-created" | "date-to-from-5y-to-7y-cumulative-net-realized-profit-and-loss" | "date-to-market-price-to-up-to-1m-realized-price-ratio-99p" | "date-to-year-2023-realized-loss" | "date-to-year-2023-realized-price" | "date-to-p2tr-cumulative-net-realized-profit-and-loss" | "date-to-year-2011-supply-in-loss" | "date-to-year-2019-net-realized-profit-and-loss-to-market-cap-ratio" | "date-to-from-1w-to-1m-value-destroyed" | "date-to-price-1y-sma-99-5p" | "date-to-p2wpkh-realized-price-0-1p" | "date-to-up-to-1y-70p-price-paid" | "date-to-market-price-to-year-2014-realized-price-ratio-1m-sma" | "date-to-lth-90p-price-paid" | "date-to-market-price-to-price-144d-sma-ratio-0-5p" | "date-to-market-price-to-vaulted-price-ratio-99p" | "date-to-up-to-3y-realized-price-0-1p" | "date-to-cointime-adjusted-yearly-inflation-rate" | "date-to-from-10y-to-15y-supply-in-loss" | "date-to-p2tr-realized-loss" | "date-to-market-price-to-price-1m-sma-ratio-1y-sma-momentum-oscillator" | "date-to-p2wsh-unrealized-profit" | "date-to-price-55d-sma-1p" | "date-to-p2tr-realized-price-1p" | "date-to-shark-net-unrealized-profit-and-loss-to-market-cap-ratio" | "date-to-up-to-5m-halved-supply-to-circulating-supply-ratio" | "date-to-market-price-to-from-2y-to-3y-realized-price-ratio-99-5p" | "date-to-up-to-6m-unrealized-profit" | "date-to-from-15y-supply-in-loss-to-circulating-supply-ratio" | "date-to-from-15y-value-created" | "date-to-market-price-to-illiquid-realized-price-ratio-0-1p" | "date-to-market-price-to-shrimp-realized-price-ratio-0-5p" | "date-to-p2wsh-90p-price-paid" | "date-to-from-1d-to-1w-realized-price" | "date-to-price-55d-sma-0-1p" | "date-to-year-2019-unrealized-loss" | "date-to-year-2013-15p-price-paid" | "date-to-from-2y-75p-price-paid" | "date-to-year-2018-median-price-paid" | "date-to-whale-05p-price-paid" | "date-to-market-price-to-up-to-1d-realized-price-ratio" | "date-to-up-to-15y-90p-price-paid" | "date-to-year-2013-supply-in-loss" | "date-to-from-7y-to-10y-negative-realized-loss" | "date-to-up-to-3y-realized-loss" | "date-to-year-2020-cumulative-realized-profit" | "date-to-year-2020-realized-price-1p" | "date-to-crab-40p-price-paid" | "date-to-p2wpkh-20p-price-paid" | "date-to-from-3m-to-6m-value-created" | "date-to-vaulting-rate" | "date-to-year-2017-supply-in-profit-to-circulating-supply-ratio" | "date-to-up-to-15y-spent-output-profit-ratio" | "date-to-from-4y-utxo-count" | "date-to-up-to-1d-cumulative-net-realized-profit-and-loss-1m-net-change" | "date-to-year-2017-90p-price-paid" | "date-to-from-1d-to-1w-20p-price-paid" | "date-to-up-to-1m-spent-output-profit-ratio" | "date-to-market-price-to-illiquid-realized-price-ratio" | "date-to-market-price-to-p2pk-realized-price-ratio" | "date-to-year-2011-realized-loss" | "date-to-from-1m-to-3m-net-unrealized-profit-and-loss-to-market-cap-ratio" | "date-to-up-to-2m-cumulative-realized-loss" | "date-to-market-price-to-year-2023-realized-price-ratio" | "date-to-market-price-to-year-2018-realized-price-ratio-1m-sma" | "date-to-year-2023-input-volume" | "date-to-market-price-to-plankton-realized-price-ratio-1y-sma" | "date-to-shark-65p-price-paid" | "date-to-shark-negative-unrealized-loss" | "date-to-year-2014-cumulative-net-realized-profit-and-loss-1m-net-change" | "date-to-year-2022-75p-price-paid" | "date-to-liquid-supply-in-profit-to-circulating-supply-ratio" | "date-to-up-to-2m-25p-price-paid" | "date-to-megalodon-75p-price-paid" | "date-to-market-price-to-price-89d-sma-ratio-1y-sma" | "date-to-up-to-5y-supply-in-loss-to-own-supply-ratio" | "date-to-up-to-5m-net-unrealized-profit-and-loss-to-market-cap-ratio" | "date-to-up-to-3y-supply-in-profit-to-own-supply-ratio" | "date-to-year-2019-supply-to-circulating-supply-ratio" | "date-to-market-price-to-price-34d-sma-ratio-1p" | "date-to-market-price-to-price-2y-sma-ratio-1m-sma" | "date-to-megalodon-supply-in-loss" | "date-to-year-2019-cumulative-realized-profit" | "date-to-year-2010-45p-price-paid" | "date-to-humpback-65p-price-paid" | "date-to-p2pk-value-created" | "date-to-shark-70p-price-paid" | "date-to-from-3y-to-5y-input-count" | "date-to-p2tr-25p-price-paid" | "date-to-up-to-1y-net-unrealized-profit-and-loss-to-market-cap-ratio" | "date-to-market-price-to-crab-realized-price-ratio-1p" | "date-to-year-2012-85p-price-paid" | "date-to-from-2y-cumulative-net-realized-profit-and-loss" | "date-to-from-6m-to-1y-value-destroyed" | "date-to-sth-realized-price-0-1p" | "date-to-plankton-35p-price-paid" | "date-to-p2wpkh-negative-unrealized-loss" | "date-to-fish-75p-price-paid" | "date-to-year-2018-85p-price-paid" | "date-to-from-15y-supply-in-loss" | "date-to-year-2018-40p-price-paid" | "date-to-lth-negative-unrealized-loss" | "date-to-up-to-1m-value-destroyed" | "date-to-from-3y-to-5y-cumulative-realized-loss" | "date-to-fish-realized-cap" | "date-to-market-price-to-price-1y-sma-ratio-0-5p" | "date-to-p2pk-sell-side-risk-ratio" | "date-to-p2sh-05p-price-paid" | "date-to-up-to-1w-60p-price-paid" | "date-to-year-2014-realized-price-0-1p" | "date-to-from-3y-to-5y-realized-price-99-9p" | "date-to-market-price-to-up-to-2y-realized-price-ratio-1m-sma" | "date-to-market-price-to-year-2019-realized-price-ratio" | "date-to-from-10y-to-15y-input-count" | "date-to-up-to-2y-utxo-count" | "date-to-up-to-4m-supply-in-profit-to-circulating-supply-ratio" | "date-to-year-2016-75p-price-paid" | "date-to-year-2017-realized-price-99p" | "date-to-up-to-1w-utxo-count" | "date-to-year-2021-spent-output-profit-ratio" | "date-to-market-price-to-year-2014-realized-price-ratio-1y-sma" | "date-to-megalodon-value-created" | "date-to-price-1y-total-return" | "date-to-year-2012-halved-supply" | "date-to-year-2017-realized-price-99-5p" | "date-to-year-2018-05p-price-paid" | "date-to-up-to-1m-realized-value" | "date-to-year-2024-supply-in-profit" | "date-to-year-2019-halved-supply" | "date-to-whale-address-count" | "date-to-year-2019-90p-price-paid" | "date-to-megalodon-realized-price-99p" | "date-to-from-1m-to-3m-35p-price-paid" | "date-to-up-to-3y-supply-to-circulating-supply-ratio" | "date-to-up-to-5y-supply-in-profit-to-own-supply-ratio" | "date-to-year-2011-95p-price-paid" | "date-to-year-2011-30p-price-paid" | "date-to-from-6m-to-1y-input-count" | "date-to-from-10y-to-15y-cumulative-net-realized-profit-and-loss" | "date-to-from-10y-to-15y-realized-loss" | "date-to-from-4y-supply-to-circulating-supply-ratio" | "date-to-market-price-to-year-2009-realized-price-ratio-1y-sma-momentum-oscillator" | "date-to-from-7y-to-10y-supply-in-loss-to-own-supply-ratio" | "date-to-market-price-to-price-21d-sma-ratio-1y-sma-momentum-oscillator" | "date-to-year-2016-55p-price-paid" | "date-to-from-2y-to-3y-supply-in-loss-to-own-supply-ratio" | "date-to-up-to-10y-realized-loss" | "date-to-market-price-to-year-2013-realized-price-ratio-1w-sma" | "date-to-p2pk-realized-loss" | "date-to-p2pkh-supply-in-loss-to-own-supply-ratio" | "date-to-up-to-1y-sell-side-risk-ratio" | "date-to-from-3y-to-5y-realized-cap" | "date-to-up-to-1y-25p-price-paid" | "date-to-crab-realized-loss" | "date-to-up-to-5y-realized-price-99p" | "date-to-market-price-to-price-8d-sma-ratio-0-5p" | "date-to-up-to-1m-realized-cap-1m-net-change" | "date-to-shrimp-unrealized-loss" | "date-to-market-price-to-p2pkh-realized-price-ratio-0-5p" | "date-to-from-1y-to-2y-90p-price-paid" | "date-to-from-1d-to-1w-value-destroyed" | "date-to-market-price-to-up-to-3m-realized-price-ratio-1y-sma-momentum-oscillator" | "date-to-p2pk-spent-output-profit-ratio" | "date-to-year-2013-25p-price-paid" | "date-to-p2pk-realized-cap" | "date-to-p2pk-cumulative-realized-loss" | "date-to-up-to-15y-value-destroyed" | "date-to-from-2y-supply-in-profit" | "date-to-p2sh-30p-price-paid" | "date-to-up-to-3y-35p-price-paid" | "date-to-year-2020-25p-price-paid" | "date-to-market-price-to-year-2015-realized-price-ratio-1p" | "date-to-from-10y-realized-price-99-9p" | "date-to-from-1d-to-1w-spent-output-profit-ratio" | "date-to-year-2009-utxo-count" | "date-to-market-price-to-lth-realized-price-ratio-99-5p" | "date-to-illiquid-unrealized-profit" | "date-to-market-price-to-price-2y-sma-ratio-0-1p" | "date-to-year-2016-supply-in-loss-to-own-supply-ratio" | "date-to-year-2009-80p-price-paid" | "date-to-cointime-value-stored" | "date-to-from-1y-to-2y-negative-unrealized-loss" | "date-to-block-weight-1d-25p" | "date-to-humpback-45p-price-paid" | "date-to-up-to-2y-35p-price-paid" | "date-to-year-2021-45p-price-paid" | "date-to-from-7y-to-10y-supply-in-profit-to-own-supply-ratio" | "date-to-market-price-to-year-2017-realized-price-ratio-1w-sma" | "date-to-megalodon-cumulative-realized-profit" | "date-to-sth-supply" | "date-to-year-2013-net-realized-profit-and-loss-to-market-cap-ratio" | "date-to-cointime-price-99-9p" | "date-to-highly-liquid-supply-in-loss-to-own-supply-ratio" | "date-to-from-1m-to-3m-supply-in-loss" | "date-to-realized-loss" | "date-to-from-4y-95p-price-paid" | "date-to-unrealized-profit" | "date-to-from-10y-realized-price-99-5p" | "date-to-p2sh-65p-price-paid" | "date-to-market-price-to-up-to-5m-realized-price-ratio-1m-sma" | "date-to-year-2011-supply-in-profit-to-own-supply-ratio" | "date-to-from-4y-net-unrealized-profit-and-loss-to-market-cap-ratio" | "date-to-market-price-to-up-to-10y-realized-price-ratio-1y-sma-momentum-oscillator" | "date-to-plankton-70p-price-paid" | "date-to-crab-30p-price-paid" | "date-to-from-10y-to-15y-40p-price-paid" | "date-to-market-price-to-from-1y-realized-price-ratio-1m-sma" | "date-to-p2wpkh-unrealized-profit" | "date-to-up-to-15y-unrealized-loss" | "date-to-year-2021-realized-value" | "date-to-from-3m-to-6m-25p-price-paid" | "date-to-from-15y-unrealized-loss" | "date-to-market-price-to-up-to-6m-realized-price-ratio-1w-sma" | "date-to-market-price-to-vaulted-price-ratio-0-5p" | "date-to-up-to-1w-65p-price-paid" | "date-to-from-10y-80p-price-paid" | "date-to-year-2014-realized-price-0-5p" | "date-to-year-2015-30p-price-paid" | "date-to-year-2017-realized-price-0-1p" | "date-to-from-1y-to-2y-cumulative-net-realized-profit-and-loss" | "date-to-year-2017-net-realized-profit-and-loss" | "date-to-year-2009-realized-price-99-5p" | "date-to-year-2017-realized-value" | "date-to-year-2009-realized-value" | "date-to-market-price-to-from-7y-to-10y-realized-price-ratio-0-5p" | "date-to-from-15y-input-volume" | "date-to-market-price-to-price-1m-sma-ratio-1w-sma" | "date-to-year-2022-supply-to-circulating-supply-ratio" | "date-to-from-6m-to-1y-25p-price-paid" | "date-to-from-1d-to-1w-85p-price-paid" | "date-to-market-price-to-year-2012-realized-price-ratio-99-5p" | "date-to-year-2020-65p-price-paid" | "date-to-highly-liquid-65p-price-paid" | "date-to-illiquid-realized-price-99-9p" | "date-to-up-to-15y-supply-in-profit-to-circulating-supply-ratio" | "date-to-fish-30p-price-paid" | "date-to-from-1y-realized-price-99p" | "date-to-shark-05p-price-paid" | "date-to-up-to-3y-supply-in-profit-to-circulating-supply-ratio" | "date-to-year-2023-25p-price-paid" | "date-to-from-1m-to-3m-halved-supply-to-circulating-supply-ratio" | "date-to-market-price-to-vaulted-price-ratio-99-5p" | "date-to-up-to-5m-spent-output-profit-ratio" | "date-to-year-2018-75p-price-paid" | "date-to-up-to-1y-negative-unrealized-loss" | "date-to-from-3m-to-6m-supply-in-loss-to-circulating-supply-ratio" | "date-to-from-5y-to-7y-realized-price-99-5p" | "date-to-market-price-to-year-2022-realized-price-ratio-99p" | "date-to-highly-liquid-75p-price-paid" | "date-to-shark-realized-price" | "date-to-fish-05p-price-paid" | "date-to-p2wpkh-input-count" | "date-to-p2wpkh-spent-output-profit-ratio" | "date-to-supply" | "date-to-up-to-6m-sell-side-risk-ratio" | "date-to-year-2010-realized-price-99-9p" | "date-to-from-2y-cumulative-realized-profit" | "date-to-market-price-to-p2pk-realized-price-ratio-1m-sma" | "date-to-market-price-to-from-4y-realized-price-ratio-1p" | "date-to-market-price-to-up-to-5m-realized-price-ratio-1w-sma" | "date-to-from-6m-to-1y-realized-price-0-1p" | "date-to-up-to-2y-realized-price" | "date-to-market-price-to-realized-price-ratio-1y-sma" | "date-to-up-to-5m-40p-price-paid" | "date-to-market-price-to-up-to-3y-realized-price-ratio-1m-sma" | "date-to-year-2013-input-volume" | "date-to-up-to-1y-input-count" | "date-to-market-price-to-sth-realized-price-ratio-0-5p" | "date-to-lth-35p-price-paid" | "date-to-year-2018-value-created" | "date-to-liquid-spent-output-profit-ratio" | "date-to-year-2023-realized-price-99-5p" | "date-to-from-2y-realized-price-99p" | "date-to-liquid-value-destroyed" | "date-to-market-price-to-up-to-2y-realized-price-ratio-1w-sma" | "date-to-year-2016-realized-price-99-9p" | "date-to-market-price-to-from-6m-to-1y-realized-price-ratio-0-5p" | "date-to-plankton-realized-price-0-1p" | "date-to-market-price-to-from-1d-to-1w-realized-price-ratio-99p" | "date-to-up-to-1w-05p-price-paid" | "date-to-highly-liquid-20p-price-paid" | "date-to-market-price-to-price-21d-sma-ratio-99-5p" | "date-to-market-price-to-sth-realized-price-ratio-99-9p" | "date-to-p2pk-cumulative-net-realized-profit-and-loss" | "date-to-lth-realized-cap-1m-net-change" | "date-to-market-price-to-from-3m-to-6m-realized-price-ratio-1p" | "date-to-price-4y-total-return" | "date-to-net-realized-profit-and-loss" | "date-to-year-2020-05p-price-paid" | "date-to-year-2016-realized-price-1p" | "date-to-from-5y-to-7y-supply-in-profit-to-own-supply-ratio" | "date-to-from-5y-to-7y-40p-price-paid" | "date-to-market-price-to-price-200w-sma-ratio-1w-sma" | "date-to-p2pk-realized-cap-1m-net-change" | "date-to-from-4y-05p-price-paid" | "date-to-market-price-to-shrimp-realized-price-ratio-99p" | "date-to-whale-15p-price-paid" | "date-to-shark-halved-supply-to-circulating-supply-ratio" | "date-to-from-1d-to-1w-realized-loss" | "date-to-market-price-to-lth-realized-price-ratio-1m-sma" | "date-to-up-to-10y-supply-in-loss" | "date-to-shrimp-address-count" | "date-to-fish-realized-price-99-5p" | "date-to-year-2012-80p-price-paid" | "date-to-fish-realized-loss" | "date-to-up-to-1d-net-realized-profit-and-loss-to-market-cap-ratio" | "date-to-price-21d-sma-1p" | "date-to-market-price-to-up-to-5y-realized-price-ratio-1p" | "date-to-year-2017-median-price-paid" | "date-to-from-7y-to-10y-input-volume" | "date-to-plankton-45p-price-paid" | "date-to-p2sh-value-destroyed" | "date-to-p2tr-realized-value" | "date-to-year-2011-realized-price-0-5p" | "date-to-year-2010-net-unrealized-profit-and-loss-to-market-cap-ratio" | "date-to-year-2017-realized-price-99-9p" | "date-to-from-6m-to-1y-supply" | "date-to-up-to-2y-realized-price-99-9p" | "date-to-transactions-per-second" | "date-to-from-1w-to-1m-90p-price-paid" | "date-to-illiquid-median-price-paid" | "date-to-up-to-6m-90p-price-paid" | "date-to-market-price-to-from-1d-to-1w-realized-price-ratio-0-1p" | "date-to-p2wpkh-net-realized-profit-and-loss-to-market-cap-ratio" | "date-to-plankton-realized-cap-1m-net-change" | "date-to-up-to-6m-realized-value" | "date-to-from-7y-to-10y-40p-price-paid" | "date-to-from-1y-15p-price-paid" | "date-to-up-to-5m-net-realized-profit-and-loss" | "date-to-shrimp-30p-price-paid" | "date-to-from-4y-realized-loss" | "date-to-year-2017-35p-price-paid" | "date-to-year-2011-net-realized-profit-and-loss-to-market-cap-ratio" | "date-to-90p-price-paid" | "date-to-halved-supply" | "date-to-shrimp-40p-price-paid" | "date-to-shrimp-utxo-count" | "date-to-shark-halved-supply" | "date-to-p2sh-address-count" | "date-to-from-1y-cumulative-net-realized-profit-and-loss" | "date-to-p2wsh-realized-cap" | "date-to-from-1m-to-3m-cumulative-net-realized-profit-and-loss-1m-net-change" | "date-to-year-2014-supply-in-loss-to-circulating-supply-ratio" | "date-to-year-2019-realized-loss" | "date-to-market-price-to-price-2y-sma-ratio-1y-sma-momentum-oscillator" | "date-to-year-2018-realized-price-1p" | "date-to-crab-15p-price-paid" | "date-to-p2wpkh-75p-price-paid" | "date-to-block-weight-1d-75p" | "date-to-shark-supply-in-loss" | "date-to-year-2021-55p-price-paid" | "date-to-year-2023-negative-unrealized-loss" | "date-to-illiquid-10p-price-paid" | "date-to-megalodon-cumulative-net-realized-profit-and-loss-1m-net-change" | "date-to-p2tr-net-unrealized-profit-and-loss-to-market-cap-ratio" | "date-to-up-to-15y-net-unrealized-profit-and-loss" | "date-to-up-to-1y-negative-realized-loss" | "date-to-year-2015-40p-price-paid" | "date-to-illiquid-cumulative-net-realized-profit-and-loss-1m-net-change" | "date-to-up-to-2m-supply-in-profit-to-circulating-supply-ratio" | "date-to-fish-unrealized-profit" | "date-to-year-2020-halved-supply" | "date-to-year-2015-65p-price-paid" | "date-to-year-2024-negative-realized-loss" | "date-to-active-price-1p" | "date-to-fish-net-realized-profit-and-loss" | "date-to-market-price-to-year-2024-realized-price-ratio" | "date-to-block-size-1d-median" | "date-to-market-price-to-from-15y-realized-price-ratio-1p" | "date-to-from-2y-55p-price-paid" | "date-to-market-price-to-p2wsh-realized-price-ratio-0-5p" | "date-to-lth-65p-price-paid" | "date-to-market-price-to-up-to-2m-realized-price-ratio-99p" | "date-to-whale-supply-to-circulating-supply-ratio" | "date-to-year-2021-net-realized-profit-and-loss" | "date-to-up-to-2m-cumulative-realized-profit" | "date-to-market-price-to-from-2y-realized-price-ratio-1m-sma" | "date-to-year-2015-utxo-count" | "date-to-from-2y-to-3y-90p-price-paid" | "date-to-from-2y-realized-price-0-1p" | "date-to-lth-realized-price-0-1p" | "date-to-from-1w-to-1m-realized-profit" | "date-to-from-2y-15p-price-paid" | "date-to-liquid-cumulative-net-realized-profit-and-loss" | "date-to-from-2y-realized-loss" | "date-to-from-1w-to-1m-25p-price-paid" | "date-to-up-to-2y-90p-price-paid" | "date-to-megalodon-negative-unrealized-loss" | "date-to-year-2010-halved-supply-to-circulating-supply-ratio" | "date-to-up-to-1w-value-destroyed" | "date-to-humpback-95p-price-paid" | "date-to-market-price-to-lth-realized-price-ratio" | "date-to-market-price-to-megalodon-realized-price-ratio-1m-sma" | "date-to-up-to-7y-75p-price-paid" | "date-to-market-price-to-year-2011-realized-price-ratio-1w-sma" | "date-to-market-price-to-up-to-10y-realized-price-ratio-1y-sma" | "date-to-illiquid-20p-price-paid" | "date-to-price-1y-sma-99p" | "date-to-fish-realized-price-99-9p" | "date-to-market-price-to-from-1y-realized-price-ratio-1y-sma" | "date-to-fish-realized-price-1p" | "date-to-up-to-4m-halved-supply-to-circulating-supply-ratio" | "date-to-from-4y-realized-price-99-5p" | "date-to-from-15y-10p-price-paid" | "date-to-market-price-to-from-6m-to-1y-realized-price-ratio-1w-sma" | "date-to-fish-halved-supply" | "date-to-coinbase-in-dollars-1y-sum" | "date-to-from-15y-halved-supply-to-circulating-supply-ratio" | "date-to-market-price-to-up-to-3y-realized-price-ratio-0-5p" | "date-to-from-3m-to-6m-negative-unrealized-loss" | "date-to-year-2022-supply-in-loss-to-circulating-supply-ratio" | "date-to-year-2022-realized-price-99-9p" | "date-to-market-price-to-price-1w-sma-ratio-99-9p" | "date-to-up-to-2y-40p-price-paid" | "date-to-15p-price-paid" | "date-to-market-price-to-year-2024-realized-price-ratio-1y-sma" | "date-to-p2wsh-80p-price-paid" | "date-to-from-2y-cumulative-realized-loss" | "date-to-value-destroyed" | "date-to-from-10y-supply-in-loss-to-own-supply-ratio" | "date-to-lth-realized-price-99p" | "date-to-megalodon-20p-price-paid" | "date-to-up-to-2y-net-unrealized-profit-and-loss" | "date-to-fish-net-realized-profit-and-loss-to-market-cap-ratio" | "date-to-plankton-85p-price-paid" | "date-to-price-1m-sma" | "date-to-year-2016-input-volume" | "date-to-p2wsh-realized-cap-1m-net-change" | "date-to-crab-95p-price-paid" | "date-to-from-15y-80p-price-paid" | "date-to-market-price-to-realized-price-ratio-99-9p" | "date-to-from-2y-to-3y-realized-price-0-5p" | "date-to-from-1y-to-2y-realized-price-1p" | "date-to-up-to-15y-95p-price-paid" | "date-to-market-price-to-from-10y-realized-price-ratio" | "date-to-hash-rate" | "date-to-year-2023-utxo-count" | "date-to-market-price-to-price-13d-sma-ratio-0-1p" | "date-to-from-3y-to-5y-net-unrealized-profit-and-loss" | "date-to-humpback-supply" | "date-to-up-to-5y-realized-price-1p" | "date-to-from-10y-realized-profit" | "date-to-highly-liquid-60p-price-paid" | "date-to-block-interval-1d-75p" | "date-to-p2wsh-realized-price-99-9p" | "date-to-up-to-10y-unrealized-loss" | "date-to-p2sh-unrealized-profit" | "date-to-up-to-2y-halved-supply" | "date-to-up-to-5m-realized-loss" | "date-to-year-2014-35p-price-paid" | "date-to-year-2016-median-price-paid" | "date-to-p2pkh-cumulative-net-realized-profit-and-loss-1m-net-change" | "date-to-from-1m-to-3m-realized-loss" | "date-to-market-price-to-price-34d-sma-ratio" | "date-to-from-15y-realized-price-99-5p" | "date-to-up-to-3m-net-unrealized-profit-and-loss-to-market-cap-ratio" | "date-to-year-2015-value-created" | "date-to-market-price-to-up-to-1w-realized-price-ratio-1y-sma" | "date-to-shrimp-value-destroyed" | "date-to-from-10y-to-15y-utxo-count" | "date-to-plankton-sell-side-risk-ratio" | "date-to-megalodon-95p-price-paid" | "date-to-up-to-5y-cumulative-net-realized-profit-and-loss-1m-net-change" | "date-to-from-1w-to-1m-supply-in-profit-to-circulating-supply-ratio" | "date-to-up-to-1y-realized-cap-1m-net-change" | "date-to-year-2018-input-volume" | "date-to-market-price-to-price-55d-sma-ratio-99p" | "date-to-net-realized-profit-and-loss-to-market-cap-ratio" | "date-to-from-10y-value-destroyed" | "date-to-p2pk-realized-price-0-1p" | "date-to-year-2014-95p-price-paid" | "date-to-market-price-to-p2tr-realized-price-ratio-1y-sma" | "date-to-from-4y-supply-in-loss-to-own-supply-ratio" | "date-to-concurrent-liveliness-2w-median" | "date-to-up-to-2m-20p-price-paid" | "date-to-from-1y-supply" | "date-to-transactions-per-second-1m-sma" | "date-to-from-7y-to-10y-realized-profit" | "date-to-up-to-6m-cumulative-realized-loss" | "date-to-from-5y-to-7y-negative-realized-loss" | "date-to-from-3y-to-5y-net-realized-profit-and-loss" | "date-to-year-2023-halved-supply-to-circulating-supply-ratio" | "date-to-liquid-input-count" | "date-to-up-to-3m-realized-price-1p" | "date-to-up-to-4m-halved-supply" | "date-to-crab-halved-supply" | "date-to-from-15y-realized-price-0-5p" | "date-to-market-price-to-from-3m-to-6m-realized-price-ratio-1y-sma" | "date-to-year-2012-realized-value" | "date-to-from-10y-net-realized-profit-and-loss-to-market-cap-ratio" | "date-to-year-2020-realized-price-0-1p" | "date-to-year-2023-cumulative-realized-loss" | "date-to-year-2011-cumulative-realized-profit" | "date-to-from-1m-to-3m-85p-price-paid" | "date-to-up-to-6m-realized-price-1p" | "date-to-price-8d-sma-0-5p" | "date-to-year-2017-net-realized-profit-and-loss-to-market-cap-ratio" | "date-to-year-2019-95p-price-paid" | "date-to-price-4y-sma-0-5p" | "date-to-up-to-10y-realized-price-99-9p" | "date-to-from-1d-to-1w-negative-realized-loss" | "date-to-cointime-price-99p" | "date-to-market-price-to-up-to-1m-realized-price-ratio" | "date-to-market-price-to-year-2011-realized-price-ratio-99-5p" | "date-to-up-to-6m-unrealized-loss" | "date-to-market-price-to-price-21d-sma-ratio-0-1p" | "date-to-year-2014-negative-unrealized-loss" | "date-to-megalodon-10p-price-paid" | "date-to-market-price-to-vaulted-price-ratio-1p" | "date-to-year-2022-35p-price-paid" | "date-to-year-2016-15p-price-paid" | "date-to-market-price-to-up-to-7y-realized-price-ratio-1y-sma-momentum-oscillator" | "date-to-market-price-to-from-3y-to-5y-realized-price-ratio-1p" | "date-to-market-price-to-shrimp-realized-price-ratio-1w-sma" | "date-to-sth-realized-profit" | "date-to-from-4y-median-price-paid" | "date-to-year-2011-15p-price-paid" | "date-to-market-price-to-from-1d-to-1w-realized-price-ratio" | "date-to-market-price-to-p2pk-realized-price-ratio-99p" | "date-to-from-1m-to-3m-realized-cap" | "date-to-from-6m-to-1y-05p-price-paid" | "date-to-whale-realized-price-99-9p" | "date-to-year-2024-30p-price-paid" | "date-to-fish-cumulative-realized-profit" | "date-to-market-price-to-price-200w-sma-ratio-1p" | "date-to-market-price-to-fish-realized-price-ratio-99-9p" | "date-to-up-to-10y-cumulative-net-realized-profit-and-loss" | "date-to-up-to-2y-supply" | "date-to-year-2014-supply-in-profit-to-own-supply-ratio" | "date-to-up-to-4m-supply-in-loss-to-own-supply-ratio" | "date-to-up-to-3y-unrealized-loss" | "date-to-up-to-7y-cumulative-realized-profit" | "date-to-from-2y-value-created" | "date-to-market-price-to-p2pkh-realized-price-ratio" | "date-to-crab-90p-price-paid" | "date-to-from-1d-to-1w-realized-price-99p" | "date-to-up-to-3m-net-realized-profit-and-loss-to-market-cap-ratio" | "date-to-up-to-15y-realized-price-0-5p" | "date-to-year-2011-supply-in-loss-to-own-supply-ratio" | "date-to-market-price-to-p2sh-realized-price-ratio-1y-sma-momentum-oscillator" | "date-to-from-10y-halved-supply-to-circulating-supply-ratio" | "date-to-market-price-to-year-2013-realized-price-ratio-1m-sma" | "date-to-up-to-15y-80p-price-paid" | "date-to-year-2013-cumulative-net-realized-profit-and-loss-1m-net-change" | "date-to-p2tr-90p-price-paid" | "date-to-from-1m-to-3m-supply-in-loss-to-circulating-supply-ratio" | "date-to-crab-supply-to-circulating-supply-ratio" | "date-to-from-5y-to-7y-realized-price-0-5p" | "date-to-year-2017-realized-price-0-5p" | "date-to-p2sh-utxo-count" | "date-to-from-4y-halved-supply-to-circulating-supply-ratio" | "date-to-market-price-to-shark-realized-price-ratio-99-9p" | "date-to-lth-realized-profit" | "date-to-p2wpkh-85p-price-paid" | "date-to-from-1y-40p-price-paid" | "date-to-from-4y-negative-unrealized-loss" | "date-to-market-price-to-year-2024-realized-price-ratio-0-5p" | "date-to-from-3m-to-6m-cumulative-net-realized-profit-and-loss-1m-net-change" | "date-to-from-1d-to-1w-halved-supply-to-circulating-supply-ratio" | "date-to-year-2021-75p-price-paid" | "date-to-year-2021-value-destroyed" | "date-to-up-to-5m-25p-price-paid" | "date-to-from-2y-supply-in-profit-to-circulating-supply-ratio" | "date-to-from-6m-to-1y-30p-price-paid" | "date-to-from-6m-to-1y-input-volume" | "date-to-up-to-2m-realized-price-99-9p" | "date-to-annualized-transaction-volume" | "date-to-market-price-to-sth-realized-price-ratio-1y-sma-momentum-oscillator" | "date-to-year-2009-90p-price-paid" | "date-to-from-1m-to-3m-sell-side-risk-ratio" | "date-to-p2tr-unrealized-profit" | "date-to-up-to-15y-65p-price-paid" | "date-to-from-2y-net-realized-profit-and-loss" | "date-to-from-10y-utxo-count" | "date-to-market-price-to-up-to-1y-realized-price-ratio-1p" | "date-to-market-price-to-fish-realized-price-ratio-1y-sma-momentum-oscillator" | "date-to-market-price-to-year-2018-realized-price-ratio-1y-sma" | "date-to-up-to-2y-60p-price-paid" | "date-to-market-price-to-megalodon-realized-price-ratio-99-5p" | "date-to-from-10y-to-15y-realized-value" | "date-to-from-1w-to-1m-cumulative-realized-profit" | "date-to-year-2009-unrealized-loss" | "date-to-from-1y-supply-in-loss-to-circulating-supply-ratio" | "date-to-market-price-to-shark-realized-price-ratio-0-5p" | "date-to-supply-in-loss" | "date-to-up-to-1m-supply-in-profit-to-own-supply-ratio" | "date-to-up-to-4m-supply-in-profit-to-own-supply-ratio" | "date-to-up-to-15y-realized-price-1p" | "date-to-up-to-1y-realized-profit" | "date-to-from-15y-unrealized-profit" | "date-to-from-15y-supply-in-profit" | "date-to-from-3m-to-6m-95p-price-paid" | "date-to-up-to-10y-cumulative-realized-loss" | "date-to-market-price-to-from-10y-to-15y-realized-price-ratio-99-5p" | "date-to-from-1y-net-realized-profit-and-loss-to-market-cap-ratio" | "date-to-p2sh-realized-price-1p" | "date-to-whale-90p-price-paid" | "date-to-whale-median-price-paid" | "date-to-year-2020-realized-loss" | "date-to-realized-cap" | "date-to-p2tr-unrealized-loss" | "date-to-up-to-3y-20p-price-paid" | "date-to-from-2y-to-3y-value-created" | "date-to-from-1y-to-2y-30p-price-paid" | "date-to-market-price-to-p2sh-realized-price-ratio-1y-sma" | "date-to-price-21d-sma-99-9p" | "date-to-up-to-15y-realized-price-0-1p" | "date-to-up-to-2y-cumulative-net-realized-profit-and-loss" | "date-to-year-2021-sell-side-risk-ratio" | "date-to-year-2011-55p-price-paid" | "date-to-market-price-to-year-2009-realized-price-ratio-1p" | "date-to-from-1y-to-2y-realized-price-99-9p" | "date-to-from-5y-to-7y-net-unrealized-profit-and-loss" | "date-to-p2tr-realized-price-99-5p" | "date-to-price-13d-sma" | "date-to-year-2009-net-unrealized-profit-and-loss" | "date-to-from-6m-to-1y-45p-price-paid" | "date-to-from-1m-to-3m-25p-price-paid" | "date-to-from-15y-net-realized-profit-and-loss" | "date-to-from-3m-to-6m-spent-output-profit-ratio" | "date-to-from-6m-to-1y-negative-unrealized-loss" | "date-to-liquid-supply" | "date-to-plankton-90p-price-paid" | "date-to-market-price-to-realized-price-ratio-99-5p" | "date-to-year-2012-unrealized-profit" | "date-to-year-2010-realized-price" | "date-to-year-2013-supply-in-profit" | "date-to-year-2014-25p-price-paid" | "date-to-market-price-to-from-10y-to-15y-realized-price-ratio-1y-sma" | "date-to-concurrent-liveliness" | "date-to-fish-60p-price-paid" | "date-to-up-to-7y-35p-price-paid" | "date-to-year-2018-45p-price-paid" | "date-to-highly-liquid-70p-price-paid" | "date-to-market-price-to-price-1m-sma-ratio" | "date-to-market-price-to-year-2024-realized-price-ratio-99-9p" | "date-to-megalodon-realized-price-1p" | "date-to-from-1y-to-2y-25p-price-paid" | "date-to-from-10y-realized-value" | "date-to-up-to-7y-cumulative-realized-loss" | "date-to-price-1y-sma-0-1p" | "date-to-year-2014-input-count" | "date-to-year-2017-05p-price-paid" | "date-to-market-price-to-up-to-1d-realized-price-ratio-1m-sma" | "date-to-year-2020-input-volume" | "date-to-up-to-5y-halved-supply-to-circulating-supply-ratio" | "date-to-up-to-1w-net-unrealized-profit-and-loss-to-market-cap-ratio" | "date-to-up-to-1y-supply-in-loss-to-own-supply-ratio" | "date-to-year-2016-realized-price-99p" | "date-to-price-144d-sma-99-5p" | "date-to-up-to-1d-cumulative-realized-loss" | "date-to-market-price-to-up-to-3y-realized-price-ratio-1y-sma" | "date-to-market-price-to-up-to-10y-realized-price-ratio-1p" | "date-to-up-to-3y-halved-supply-to-circulating-supply-ratio" | "date-to-from-3m-to-6m-halved-supply-to-circulating-supply-ratio" | "date-to-sth-value-created" | "date-to-from-3m-to-6m-supply-in-profit-to-own-supply-ratio" | "date-to-from-1y-to-2y-70p-price-paid" | "date-to-year-2021-20p-price-paid" | "date-to-market-price-to-up-to-15y-realized-price-ratio-1y-sma" | "date-to-up-to-1w-supply-in-loss" | "date-to-year-2012-net-unrealized-profit-and-loss" | "date-to-year-2013-cumulative-realized-profit" | "date-to-annualized-issuance" | "date-to-from-1m-to-3m-realized-price-0-5p" | "date-to-up-to-5m-cumulative-realized-profit" | "date-to-from-1y-to-2y-realized-value" | "date-to-market-price-to-from-2y-realized-price-ratio-99-9p" | "date-to-p2wsh-realized-price-0-1p" | "date-to-from-4y-cumulative-realized-loss" | "date-to-crab-60p-price-paid" | "date-to-year-2017-60p-price-paid" | "date-to-year-2019-20p-price-paid" | "date-to-liquid-halved-supply" | "date-to-from-1y-to-2y-net-unrealized-profit-and-loss-to-market-cap-ratio" | "date-to-shark-median-price-paid" | "date-to-humpback-75p-price-paid" | "date-to-year-2019-cumulative-realized-loss" | "date-to-up-to-5m-halved-supply" | "date-to-year-2021-15p-price-paid" | "date-to-year-2010-realized-price-0-1p" | "date-to-year-2016-supply-in-profit-to-circulating-supply-ratio" | "date-to-p2tr-net-realized-profit-and-loss" | "date-to-market-price-to-from-5y-to-7y-realized-price-ratio-1p" | "date-to-lth-input-volume" | "date-to-p2pk-utxo-count" | "date-to-up-to-10y-negative-realized-loss" | "date-to-year-2010-supply-in-loss-to-circulating-supply-ratio" | "date-to-price-55d-sma" | "date-to-market-price-to-realized-price-ratio-1p" | "date-to-illiquid-35p-price-paid" | "date-to-up-to-5m-05p-price-paid" | "date-to-market-price-to-price-200w-sma-ratio-1y-sma" | "date-to-plankton-realized-value" | "date-to-from-6m-to-1y-net-realized-profit-and-loss-to-market-cap-ratio" | "date-to-market-price-to-lth-realized-price-ratio-99-9p" | "date-to-market-price-to-price-8d-sma-ratio-0-1p" | "date-to-fish-40p-price-paid" | "date-to-illiquid-realized-profit" | "date-to-market-price-to-up-to-15y-realized-price-ratio" | "date-to-market-price-to-up-to-2y-realized-price-ratio-0-1p" | "date-to-market-price-to-up-to-2y-realized-price-ratio-1y-sma-momentum-oscillator" | "date-to-year-2009-75p-price-paid" | "date-to-year-2014-halved-supply" | "date-to-fish-85p-price-paid" | "date-to-year-2020-realized-price-99p" | "date-to-from-1d-to-1w-halved-supply" | "date-to-megalodon-70p-price-paid" | "date-to-shrimp-supply-in-profit-to-own-supply-ratio" | "date-to-year-2016-95p-price-paid" | "date-to-whale-35p-price-paid" | "date-to-block-interval-1d-25p" | "date-to-year-2023-realized-price-1p" | "date-to-up-to-2y-spent-output-profit-ratio" | "date-to-up-to-6m-cumulative-net-realized-profit-and-loss-1m-net-change" | "date-to-price-55d-sma-99p" | "date-to-from-10y-cumulative-realized-loss" | "date-to-from-3m-to-6m-cumulative-net-realized-profit-and-loss" | "date-to-market-price-to-plankton-realized-price-ratio-99-5p" | "date-to-from-1y-to-2y-realized-cap-1m-net-change" | "date-to-market-price-to-up-to-2y-realized-price-ratio-0-5p" | "date-to-from-10y-30p-price-paid" | "date-to-price-1w-sma-0-5p" | "date-to-from-1y-to-2y-value-destroyed" | "date-to-year-2012-net-realized-profit-and-loss" | "date-to-from-5y-to-7y-net-realized-profit-and-loss" | "date-to-from-15y-supply-to-circulating-supply-ratio" | "date-to-year-2016-20p-price-paid" | "date-to-year-2022-negative-realized-loss" | "date-to-year-2015-input-count" | "date-to-year-2013-10p-price-paid" | "date-to-year-2013-value-created" | "date-to-transaction-count-1m-sma" | "date-to-shrimp-realized-cap" | "date-to-market-price-to-year-2022-realized-price-ratio-1m-sma" | "date-to-from-5y-to-7y-supply-in-loss" | "date-to-from-1m-to-3m-realized-cap-1m-net-change" | "date-to-market-price-to-year-2020-realized-price-ratio-1y-sma-momentum-oscillator" | "date-to-up-to-6m-25p-price-paid" | "date-to-p2wsh-realized-price-1p" | "date-to-market-price-to-from-7y-to-10y-realized-price-ratio-99p" | "date-to-market-price-to-price-34d-sma-ratio-99-9p" | "date-to-up-to-3y-cumulative-net-realized-profit-and-loss-1m-net-change" | "date-to-market-price-to-from-10y-realized-price-ratio-1p" | "date-to-from-1y-to-2y-halved-supply-to-circulating-supply-ratio" | "date-to-year-2023-unrealized-loss" | "date-to-liquid-sell-side-risk-ratio" | "date-to-block-interval-1d-median" | "date-to-fees-to-coinbase-ratio" | "date-to-from-10y-to-15y-input-volume" | "date-to-year-2016-unrealized-profit" | "date-to-year-2021-90p-price-paid" | "date-to-market-price-to-up-to-3y-realized-price-ratio-1w-sma" | "date-to-vaulted-cap" | "date-to-from-1d-to-1w-net-realized-profit-and-loss-to-market-cap-ratio" | "date-to-up-to-3m-85p-price-paid" | "date-to-p2wpkh-halved-supply-to-circulating-supply-ratio" | "date-to-year-2021-input-volume" | "date-to-market-price-to-up-to-2m-realized-price-ratio-0-1p" | "date-to-market-price-to-year-2012-realized-price-ratio-1y-sma-momentum-oscillator" | "date-to-market-price-to-from-10y-to-15y-realized-price-ratio" | "date-to-market-price-to-from-7y-to-10y-realized-price-ratio-1w-sma" | "date-to-market-price-to-price-2y-sma-ratio" | "date-to-market-price-to-up-to-5m-realized-price-ratio-0-1p" | "date-to-up-to-1y-95p-price-paid" | "date-to-up-to-1y-35p-price-paid" | "date-to-illiquid-95p-price-paid" | "date-to-up-to-3m-supply" | "date-to-block-vbytes-1d-90p" | "date-to-p2sh-realized-price-99-5p" | "date-to-market-price-to-year-2009-realized-price-ratio-99-5p" | "date-to-up-to-3y-value-destroyed" | "date-to-market-price-to-year-2021-realized-price-ratio-99-5p" | "date-to-p2wsh-supply-in-loss-to-circulating-supply-ratio" | "date-to-from-1y-to-2y-cumulative-realized-loss" | "date-to-year-2010-negative-realized-loss" | "date-to-year-2016-halved-supply" | "date-to-from-3m-to-6m-realized-price-99-9p" | "date-to-up-to-3m-spent-output-profit-ratio" | "date-to-up-to-1y-realized-price" | "date-to-year-2015-spent-output-profit-ratio" | "date-to-negative-realized-loss" | "date-to-illiquid-supply-in-profit-to-own-supply-ratio" | "date-to-year-2012-input-volume" | "date-to-market-price-to-cointime-price-ratio-1y-sma" | "date-to-p2pkh-70p-price-paid" | "date-to-year-2010-85p-price-paid" | "date-to-year-2023-realized-cap-1m-net-change" | "date-to-from-7y-to-10y-unrealized-profit" | "date-to-market-price-to-up-to-7y-realized-price-ratio-1p" | "date-to-block-vbytes-1d-average" | "date-to-year-2012-supply-in-loss-to-circulating-supply-ratio" | "date-to-up-to-7y-negative-unrealized-loss" | "date-to-megalodon-input-count" | "date-to-up-to-7y-realized-value" | "date-to-year-2017-cumulative-realized-profit" | "date-to-fish-35p-price-paid" | "date-to-lth-70p-price-paid" | "date-to-market-price-to-year-2016-realized-price-ratio" | "date-to-from-1y-value-destroyed" | "date-to-p2tr-supply-in-loss" | "date-to-from-15y-supply-in-profit-to-circulating-supply-ratio" | "date-to-market-price-to-from-2y-realized-price-ratio-0-1p" | "date-to-illiquid-input-volume" | "date-to-up-to-10y-sell-side-risk-ratio" | "date-to-shark-input-count" | "date-to-cointime-price" | "date-to-up-to-5y-25p-price-paid" | "date-to-up-to-6m-65p-price-paid" | "date-to-shrimp-35p-price-paid" | "date-to-market-price-to-price-13d-sma-ratio-1w-sma" | "date-to-sth-realized-value" | "date-to-from-1y-to-2y-unrealized-profit" | "date-to-market-price-to-year-2013-realized-price-ratio-1y-sma-momentum-oscillator" | "date-to-up-to-6m-20p-price-paid" | "date-to-up-to-4m-cumulative-net-realized-profit-and-loss-1m-net-change" | "date-to-up-to-6m-realized-loss" | "date-to-year-2017-spent-output-profit-ratio" | "date-to-year-2012-input-count" | "date-to-year-2018-35p-price-paid" | "date-to-market-price-to-whale-realized-price-ratio-1m-sma" | "date-to-p2pk-60p-price-paid" | "date-to-year-2018-supply-to-circulating-supply-ratio" | "date-to-from-1d-to-1w-45p-price-paid" | "date-to-market-price-to-price-144d-sma-ratio-0-1p" | "date-to-year-2019-input-count" | "date-to-p2pkh-unrealized-loss" | "date-to-lth-value-created" | "date-to-year-2010-30p-price-paid" | "date-to-from-7y-to-10y-95p-price-paid" | "date-to-from-7y-to-10y-70p-price-paid" | "date-to-p2sh-realized-price-99p" | "date-to-year-2023-halved-supply" | "date-to-market-price-to-year-2012-realized-price-ratio-99-9p" | "date-to-whale-realized-price" | "date-to-year-2014-60p-price-paid" | "date-to-price-21d-sma-99p" | "date-to-up-to-3y-input-volume" | "date-to-market-price-to-cointime-price-ratio-0-5p" | "date-to-year-2010-cumulative-realized-loss" | "date-to-up-to-2m-halved-supply-to-circulating-supply-ratio" | "date-to-p2wpkh-cumulative-net-realized-profit-and-loss-1m-net-change" | "date-to-up-to-15y-net-unrealized-profit-and-loss-to-market-cap-ratio" | "date-to-whale-55p-price-paid" | "date-to-market-price-to-shrimp-realized-price-ratio-99-9p" | "date-to-from-4y-halved-supply" | "date-to-from-2y-to-3y-supply-in-loss-to-circulating-supply-ratio" | "date-to-market-price-to-year-2022-realized-price-ratio" | "date-to-up-to-5m-median-price-paid" | "date-to-fish-unrealized-loss" | "date-to-from-1y-realized-cap" | "date-to-market-price-to-up-to-1m-realized-price-ratio-99-5p" | "date-to-p2wsh-supply" | "date-to-up-to-6m-realized-profit" | "date-to-up-to-6m-supply" | "date-to-vaulted-price-1p" | "date-to-up-to-10y-utxo-count" | "date-to-from-3y-to-5y-unrealized-profit" | "date-to-market-price-to-shark-realized-price-ratio" | "date-to-p2wsh-10p-price-paid" | "date-to-whale-input-volume" | "date-to-year-2013-supply-in-loss-to-own-supply-ratio" | "date-to-year-2014-70p-price-paid" | "date-to-from-4y-input-count" | "date-to-p2tr-halved-supply-to-circulating-supply-ratio" | "date-to-market-price-to-up-to-1m-realized-price-ratio-0-5p" | "date-to-market-price-to-crab-realized-price-ratio-0-5p" | "date-to-year-2017-realized-cap-1m-net-change" | "date-to-year-2024-realized-price-1p" | "date-to-whale-net-realized-profit-and-loss" | "date-to-market-price-to-up-to-10y-realized-price-ratio-0-1p" | "date-to-market-price-to-humpback-realized-price-ratio-99-9p" | "date-to-market-price-to-up-to-7y-realized-price-ratio-0-1p" | "date-to-up-to-4m-realized-price-1p" | "date-to-up-to-7y-value-destroyed" | "date-to-year-2018-realized-price-0-1p" | "date-to-year-2010-15p-price-paid" | "date-to-price-4y-sma" | "date-to-liquid-10p-price-paid" | "date-to-market-price-to-up-to-1y-realized-price-ratio-1y-sma-momentum-oscillator" | "date-to-up-to-1y-40p-price-paid" | "date-to-up-to-2y-sell-side-risk-ratio" | "date-to-year-2020-value-created" | "date-to-up-to-6m-realized-price" | "date-to-from-10y-realized-loss" | "date-to-sth-15p-price-paid" | "date-to-whale-spent-output-profit-ratio" | "date-to-market-price-to-active-price-ratio-99p" | "date-to-market-price-to-cointime-price-ratio-1w-sma" | "date-to-shrimp-spent-output-profit-ratio" | "date-to-megalodon-60p-price-paid" | "date-to-from-3y-to-5y-realized-cap-1m-net-change" | "date-to-up-to-1w-95p-price-paid" | "date-to-market-price-to-from-3y-to-5y-realized-price-ratio-0-1p" | "date-to-p2wsh-spent-output-profit-ratio" | "date-to-market-price-to-up-to-2y-realized-price-ratio-1p" | "date-to-plankton-55p-price-paid" | "date-to-plankton-halved-supply" | "date-to-up-to-7y-input-volume" | "date-to-p2pk-supply-in-loss-to-circulating-supply-ratio" | "date-to-block-size-1d-90p" | "date-to-market-price-to-megalodon-realized-price-ratio-1p" | "date-to-p2wsh-value-destroyed" | "date-to-up-to-3m-05p-price-paid" | "date-to-up-to-3m-supply-in-loss-to-circulating-supply-ratio" | "date-to-year-2021-negative-realized-loss" | "date-to-shrimp-cumulative-net-realized-profit-and-loss-1m-net-change" | "date-to-up-to-3m-realized-price-99-5p" | "date-to-year-2021-cumulative-realized-loss" | "date-to-from-2y-to-3y-supply" | "date-to-up-to-3m-realized-profit" | "date-to-up-to-7y-realized-profit" | "date-to-year-2011-75p-price-paid" | "date-to-liquid-cumulative-net-realized-profit-and-loss-1m-net-change" | "date-to-up-to-3y-value-created" | "date-to-lth-median-price-paid" | "date-to-year-2009-05p-price-paid" | "date-to-from-1y-halved-supply" | "date-to-from-1d-to-1w-90p-price-paid" | "date-to-from-2y-to-3y-negative-unrealized-loss" | "date-to-market-price-to-shark-realized-price-ratio-1y-sma-momentum-oscillator" | "date-to-p2sh-cumulative-realized-profit" | "date-to-up-to-1m-realized-loss" | "date-to-up-to-1w-45p-price-paid" | "date-to-up-to-2m-realized-price-99p" | "date-to-year-2017-realized-loss" | "date-to-up-to-15y-75p-price-paid" | "date-to-from-2y-25p-price-paid" | "date-to-up-to-5y-20p-price-paid" | "date-to-year-2013-realized-price-99-9p" | "date-to-up-to-2m-realized-loss" | "date-to-from-2y-to-3y-value-destroyed" | "date-to-hash-rate-2m-sma" | "date-to-p2pk-negative-realized-loss" | "date-to-transaction-count" | "date-to-up-to-1d-negative-realized-loss" | "date-to-year-2011-realized-cap-1m-net-change" | "date-to-year-2013-40p-price-paid" | "date-to-from-1y-utxo-count" | "date-to-up-to-7y-supply-in-loss-to-circulating-supply-ratio" | "date-to-year-2014-supply-in-profit-to-circulating-supply-ratio" | "date-to-market-price-to-year-2021-realized-price-ratio-1m-sma" | "date-to-up-to-2m-35p-price-paid" | "date-to-year-2020-30p-price-paid" | "date-to-from-1y-to-2y-supply-in-profit-to-circulating-supply-ratio" | "date-to-market-price-to-liquid-realized-price-ratio-0-1p" | "date-to-market-price-to-crab-realized-price-ratio-99-9p" | "date-to-up-to-10y-halved-supply-to-circulating-supply-ratio" | "date-to-market-price-to-year-2018-realized-price-ratio-99p" | "date-to-p2wsh-40p-price-paid" | "date-to-market-price-to-year-2016-realized-price-ratio-1y-sma" | "date-to-from-1d-to-1w-net-unrealized-profit-and-loss-to-market-cap-ratio" | "date-to-p2wsh-input-volume" | "date-to-up-to-1m-supply-in-profit" | "date-to-year-2009-spent-output-profit-ratio" | "date-to-up-to-1d-realized-cap-1m-net-change" | "date-to-plankton-10p-price-paid" | "date-to-up-to-5m-realized-price-99-9p" | "date-to-shark-unrealized-profit" | "date-to-from-4y-65p-price-paid" | "date-to-p2tr-supply-in-profit-to-circulating-supply-ratio" | "date-to-fish-55p-price-paid" | "date-to-market-price-to-up-to-3m-realized-price-ratio-1w-sma" | "date-to-market-price-to-up-to-2m-realized-price-ratio-0-5p" | "date-to-market-price-to-year-2017-realized-price-ratio-99-5p" | "date-to-p2pk-supply-to-circulating-supply-ratio" | "date-to-up-to-1m-value-created" | "date-to-megalodon-35p-price-paid" | "date-to-up-to-3m-15p-price-paid" | "date-to-market-price-to-year-2019-realized-price-ratio-1w-sma" | "date-to-from-1y-to-2y-supply" | "date-to-up-to-4m-95p-price-paid" | "date-to-market-price-to-p2tr-realized-price-ratio-0-5p" | "date-to-year-2010-median-price-paid" | "date-to-market-price-to-humpback-realized-price-ratio-0-1p" | "date-to-up-to-10y-95p-price-paid" | "date-to-p2wsh-realized-price-99-5p" | "date-to-up-to-3y-80p-price-paid" | "date-to-year-2012-realized-price-99-9p" | "date-to-year-2016-10p-price-paid" | "date-to-year-2021-supply-in-loss-to-own-supply-ratio" | "date-to-year-2021-utxo-count" | "date-to-market-price-to-from-3m-to-6m-realized-price-ratio-99p" | "date-to-year-2010-supply-in-profit-to-own-supply-ratio" | "date-to-year-2011-input-volume" | "date-to-year-2011-cumulative-net-realized-profit-and-loss-1m-net-change" | "date-to-market-price-to-from-6m-to-1y-realized-price-ratio-0-1p" | "date-to-up-to-5y-supply-in-profit" | "date-to-from-1d-to-1w-input-volume" | "date-to-up-to-1d-halved-supply-to-circulating-supply-ratio" | "date-to-from-1y-to-2y-05p-price-paid" | "date-to-plankton-supply-in-profit-to-own-supply-ratio" | "date-to-crab-85p-price-paid" | "date-to-year-2021-unrealized-loss" | "date-to-from-2y-to-3y-supply-in-loss" | "date-to-megalodon-spent-output-profit-ratio" | "date-to-hash-price" | "date-to-market-price-to-year-2021-realized-price-ratio-1p" | "date-to-lth-unrealized-loss" | "date-to-p2tr-sell-side-risk-ratio" | "date-to-humpback-10p-price-paid" | "date-to-plankton-realized-loss" | "date-to-up-to-3y-realized-price-99-9p" | "date-to-price-34d-sma-99-5p" | "date-to-up-to-4m-utxo-count" | "date-to-up-to-5y-15p-price-paid" | "date-to-lth-supply-in-loss-to-circulating-supply-ratio" | "date-to-market-price-to-up-to-4m-realized-price-ratio-0-1p" | "date-to-year-2009-95p-price-paid" | "date-to-from-15y-halved-supply" | "date-to-from-1y-to-2y-realized-price-0-5p" | "date-to-market-price-to-price-1w-sma-ratio-1y-sma-momentum-oscillator" | "date-to-p2wsh-30p-price-paid" | "date-to-year-2014-85p-price-paid" | "date-to-market-price-to-p2pkh-realized-price-ratio-1w-sma" | "date-to-year-2023-input-count" | "date-to-from-10y-to-15y-10p-price-paid" | "date-to-year-2010-80p-price-paid" | "date-to-crab-75p-price-paid" | "date-to-from-1y-to-2y-45p-price-paid" | "date-to-shrimp-negative-realized-loss" | "date-to-from-7y-to-10y-halved-supply-to-circulating-supply-ratio" | "date-to-year-2014-realized-price-99p" | "date-to-up-to-2m-55p-price-paid" | "date-to-year-2012-cumulative-realized-loss" | "date-to-year-2022-unrealized-loss" | "date-to-year-2022-halved-supply-to-circulating-supply-ratio" | "date-to-from-4y-45p-price-paid" | "date-to-highly-liquid-spent-output-profit-ratio" | "date-to-cointime-price-1p" | "date-to-year-2012-supply-in-loss-to-own-supply-ratio" | "date-to-up-to-3m-realized-cap" | "date-to-year-2017-30p-price-paid" | "date-to-year-2020-20p-price-paid" | "date-to-humpback-unrealized-profit" | "date-to-market-price-to-from-3m-to-6m-realized-price-ratio-99-5p" | "date-to-p2pkh-realized-price" | "date-to-up-to-5m-75p-price-paid" | "date-to-illiquid-realized-price-0-5p" | "date-to-from-1m-to-3m-cumulative-realized-profit" | "date-to-megalodon-supply-in-loss-to-own-supply-ratio" | "date-to-plankton-negative-unrealized-loss" | "date-to-from-1m-to-3m-90p-price-paid" | "date-to-p2wsh-realized-profit" | "date-to-from-1y-realized-loss" | "date-to-year-2010-realized-loss" | "date-to-year-2019-25p-price-paid" | "date-to-from-2y-negative-realized-loss" | "date-to-year-2022-05p-price-paid" | "date-to-market-price-to-p2sh-realized-price-ratio-99-5p" | "date-to-market-price-to-p2pk-realized-price-ratio-99-5p" | "date-to-market-price-to-from-3y-to-5y-realized-price-ratio-99-5p" | "date-to-market-price-to-price-89d-sma-ratio" | "date-to-market-price-to-p2pk-realized-price-ratio-1y-sma" | "date-to-market-price-to-up-to-15y-realized-price-ratio-1p" | "date-to-whale-cumulative-net-realized-profit-and-loss-1m-net-change" | "date-to-market-price-to-up-to-1d-realized-price-ratio-1y-sma-momentum-oscillator" | "date-to-p2tr-60p-price-paid" | "date-to-supply-in-profit-to-circulating-supply-ratio" | "date-to-p2tr-supply" | "date-to-up-to-4m-cumulative-realized-loss" | "date-to-crab-25p-price-paid" | "date-to-year-2023-value-created" | "date-to-from-5y-to-7y-cumulative-realized-profit" | "date-to-year-2011-25p-price-paid" | "date-to-year-2022-spent-output-profit-ratio" | "date-to-up-to-5y-halved-supply" | "date-to-year-2017-halved-supply" | "date-to-market-price-to-up-to-5y-realized-price-ratio-1w-sma" | "date-to-year-2020-realized-price-99-9p" | "date-to-market-price-to-from-10y-realized-price-ratio-1m-sma" | "date-to-from-15y-40p-price-paid" | "date-to-from-1m-to-3m-input-volume" | "date-to-market-price-to-from-1w-to-1m-realized-price-ratio-1y-sma" | "date-to-market-price-to-up-to-10y-realized-price-ratio-1m-sma" | "date-to-p2tr-20p-price-paid" | "date-to-p2wpkh-realized-price-99p" | "date-to-up-to-10y-realized-price-99-5p" | "date-to-up-to-1m-realized-price-99-5p" | "date-to-year-2009-10p-price-paid" | "date-to-market-price-to-up-to-5m-realized-price-ratio-0-5p" | "date-to-from-1y-95p-price-paid" | "date-to-market-price-to-price-1w-sma-ratio-0-5p" | "date-to-market-price-to-year-2010-realized-price-ratio-1m-sma" | "date-to-up-to-10y-cumulative-net-realized-profit-and-loss-1m-net-change" | "date-to-year-2009-70p-price-paid" | "date-to-fish-address-count" | "date-to-plankton-value-created" | "date-to-up-to-1w-halved-supply-to-circulating-supply-ratio" | "date-to-year-2020-cumulative-realized-loss" | "date-to-year-2012-55p-price-paid" | "date-to-up-to-15y-realized-price-99-5p" | "date-to-from-15y-25p-price-paid" | "date-to-lth-realized-price-99-9p" | "date-to-year-2009-cumulative-realized-loss" | "date-to-from-15y-supply-in-loss-to-own-supply-ratio" | "date-to-market-price-to-from-1y-realized-price-ratio-99-5p" | "date-to-market-price-to-year-2009-realized-price-ratio-99p" | "date-to-year-2015-35p-price-paid" | "date-to-year-2023-40p-price-paid" | "date-to-up-to-2y-05p-price-paid" | "date-to-up-to-3y-negative-realized-loss" | "date-to-block-size-1d-average" | "date-to-illiquid-realized-price-99-5p" | "date-to-market-price-to-whale-realized-price-ratio-0-5p" | "date-to-market-price-to-illiquid-realized-price-ratio-99-5p" | "date-to-p2pkh-30p-price-paid" | "date-to-up-to-15y-realized-price-99-9p" | "date-to-from-3y-to-5y-cumulative-realized-profit" | "date-to-market-price-to-price-8d-sma-ratio-1y-sma-momentum-oscillator" | "date-to-up-to-3m-input-count" | "date-to-sth-80p-price-paid" | "date-to-megalodon-realized-price-99-9p" | "date-to-plankton-address-count" | "date-to-from-4y-25p-price-paid" | "date-to-from-10y-realized-price-0-5p" | "date-to-up-to-3y-55p-price-paid" | "date-to-price-34d-sma-0-1p" | "date-to-market-price-to-up-to-6m-realized-price-ratio-99-5p" | "date-to-from-6m-to-1y-cumulative-realized-loss" | "date-to-sth-75p-price-paid" | "date-to-up-to-5y-realized-price-99-9p" | "date-to-year-2012-60p-price-paid" | "date-to-up-to-1d-realized-price-99p" | "date-to-from-2y-to-3y-05p-price-paid" | "date-to-year-2014-supply-in-profit" | "date-to-market-price-to-year-2011-realized-price-ratio-99p" | "date-to-up-to-5m-45p-price-paid" | "date-to-whale-10p-price-paid" | "date-to-market-price-to-year-2020-realized-price-ratio-1y-sma" | "date-to-sth-spent-output-profit-ratio" | "date-to-up-to-1y-cumulative-net-realized-profit-and-loss" | "date-to-from-1y-input-volume" | "date-to-market-price-to-vaulted-price-ratio-1y-sma-momentum-oscillator" | "date-to-year-2013-sell-side-risk-ratio" | "date-to-year-2016-45p-price-paid" | "date-to-price-8d-sma-1p" | "date-to-up-to-4m-supply-in-loss-to-circulating-supply-ratio" | "date-to-market-price-to-shark-realized-price-ratio-99-5p" | "date-to-market-price-to-up-to-2y-realized-price-ratio-1y-sma" | "date-to-sth-halved-supply" | "date-to-up-to-1d-70p-price-paid" | "date-to-market-price-to-year-2023-realized-price-ratio-1y-sma" | "date-to-year-2009-85p-price-paid" | "date-to-from-1d-to-1w-supply-in-profit" | "date-to-up-to-1w-80p-price-paid" | "date-to-up-to-1m-25p-price-paid" | "date-to-from-3m-to-6m-35p-price-paid" | "date-to-year-2010-sell-side-risk-ratio" | "date-to-year-2013-negative-realized-loss" | "date-to-year-2014-90p-price-paid" | "date-to-year-2015-net-unrealized-profit-and-loss-to-market-cap-ratio" | "date-to-humpback-realized-value" | "date-to-from-1m-to-3m-halved-supply" | "date-to-market-price-to-price-1y-sma-ratio-99-9p" | "date-to-illiquid-value-destroyed" | "date-to-up-to-3y-net-realized-profit-and-loss" | "date-to-from-15y-net-realized-profit-and-loss-to-market-cap-ratio" | "date-to-whale-20p-price-paid" | "date-to-market-price-to-from-10y-to-15y-realized-price-ratio-0-5p" | "date-to-market-price-to-p2wsh-realized-price-ratio-99-9p" | "date-to-year-2014-30p-price-paid" | "date-to-year-2024-supply-in-profit-to-circulating-supply-ratio" | "date-to-from-4y-realized-price-99p" | "date-to-up-to-3y-negative-unrealized-loss" | "date-to-from-5y-to-7y-95p-price-paid" | "date-to-year-2016-30p-price-paid" | "date-to-up-to-1d-realized-price-1p" | "date-to-market-price-to-from-7y-to-10y-realized-price-ratio-1y-sma" | "date-to-active-cap" | "date-to-market-price-to-year-2014-realized-price-ratio-0-1p" | "date-to-difficulty" | "date-to-market-price-to-price-1w-sma-ratio" | "date-to-price-89d-sma" | "date-to-up-to-2m-60p-price-paid" | "date-to-block-size-1d-25p" | "date-to-up-to-10y-realized-price-0-5p" | "date-to-year-2009-30p-price-paid" | "date-to-year-2010-realized-price-99p" | "date-to-from-15y-90p-price-paid" | "date-to-year-2022-cumulative-realized-loss" | "date-to-year-2014-realized-price-99-9p" | "date-to-year-2013-45p-price-paid" | "date-to-year-2023-95p-price-paid" | "date-to-from-1m-to-3m-80p-price-paid" | "date-to-sth-60p-price-paid" | "date-to-up-to-1d-cumulative-net-realized-profit-and-loss" | "date-to-humpback-input-volume" | "date-to-year-2011-median-price-paid" | "date-to-year-2021-realized-price-0-1p" | "date-to-up-to-1m-net-realized-profit-and-loss-to-market-cap-ratio" | "date-to-blocks-mined-1m-sum" | "date-to-up-to-5m-55p-price-paid" | "date-to-highly-liquid-cumulative-realized-loss" | "date-to-market-price-to-shrimp-realized-price-ratio-1y-sma" | "date-to-p2tr-negative-unrealized-loss" | "date-to-year-2009-supply-to-circulating-supply-ratio" | "date-to-plankton-input-count" | "date-to-year-2010-input-volume" | "date-to-year-2011-05p-price-paid" | "date-to-year-2014-net-unrealized-profit-and-loss" | "date-to-from-3y-to-5y-realized-price-1p" | "date-to-from-1y-input-count" | "date-to-up-to-3y-40p-price-paid" | "date-to-block-size-1d-sum" | "date-to-market-price-to-lth-realized-price-ratio-99p" | "date-to-market-price-to-p2wpkh-realized-price-ratio-1p" | "date-to-p2sh-realized-price-0-5p" | "date-to-market-price-to-from-1w-to-1m-realized-price-ratio" | "date-to-price-13d-sma-1p" | "date-to-shark-75p-price-paid" | "date-to-market-price-to-p2pkh-realized-price-ratio-99-9p" | "date-to-year-2011-spent-output-profit-ratio" | "date-to-illiquid-value-created" | "date-to-year-2022-45p-price-paid" | "date-to-lth-realized-price" | "date-to-up-to-6m-supply-in-loss-to-own-supply-ratio" | "date-to-market-price-to-price-8d-sma-ratio-99p" | "date-to-p2pk-unrealized-loss" | "date-to-year-2015-realized-price-1p" | "date-to-year-2024-value-created" | "date-to-megalodon-address-count" | "date-to-from-10y-to-15y-realized-price-1p" | "date-to-from-2y-30p-price-paid" | "date-to-market-price-to-liquid-realized-price-ratio" | "date-to-highly-liquid-realized-price-99-9p" | "date-to-market-price-to-price-2y-sma-ratio-99-5p" | "date-to-market-price-to-vaulted-price-ratio" | "date-to-lth-supply" | "date-to-market-price-to-up-to-1y-realized-price-ratio-1y-sma" | "date-to-megalodon-supply" | "date-to-p2wpkh-supply" | "date-to-plankton-input-volume" | "date-to-up-to-1w-55p-price-paid" | "date-to-liquid-address-count" | "date-to-market-price-to-from-1w-to-1m-realized-price-ratio-99p" | "date-to-from-1m-to-3m-spent-output-profit-ratio" | "date-to-price-1m-sma-1p" | "date-to-plankton-65p-price-paid" | "date-to-up-to-15y-realized-profit" | "date-to-market-price-to-year-2014-realized-price-ratio-99-5p" | "date-to-year-2009-60p-price-paid" | "date-to-up-to-5m-realized-price-0-5p" | "date-to-year-2017-supply-to-circulating-supply-ratio" | "date-to-year-2024-60p-price-paid" | "date-to-year-2015-input-volume" | "date-to-market-price-to-from-2y-to-3y-realized-price-ratio-99p" | "date-to-up-to-1w-supply" | "date-to-year-2011-unrealized-loss" | "date-to-blocks-mined-1w-sma" | "date-to-up-to-1m-60p-price-paid" | "date-to-year-2022-negative-unrealized-loss" | "date-to-from-1d-to-1w-cumulative-realized-loss" | "date-to-crab-utxo-count" | "date-to-market-price-to-from-10y-to-15y-realized-price-ratio-99p" | "date-to-cumulative-net-realized-profit-and-loss-1m-net-change" | "date-to-fish-70p-price-paid" | "date-to-up-to-1m-halved-supply" | "date-to-up-to-3m-80p-price-paid" | "date-to-market-price-to-year-2022-realized-price-ratio-0-5p" | "date-to-year-2021-input-count" | "date-to-up-to-3y-supply-in-loss-to-own-supply-ratio" | "date-to-block-vbytes-1d-10p" | "date-to-from-1w-to-1m-supply-to-circulating-supply-ratio" | "date-to-up-to-15y-55p-price-paid" | "date-to-up-to-15y-median-price-paid" | "date-to-illiquid-supply-in-loss-to-circulating-supply-ratio" | "date-to-market-price-to-from-1y-to-2y-realized-price-ratio-1p" | "date-to-humpback-realized-price-0-5p" | "date-to-up-to-1d-55p-price-paid" | "date-to-from-6m-to-1y-15p-price-paid" | "date-to-market-price-to-price-89d-sma-ratio-1w-sma" | "date-to-up-to-1d-realized-price-99-5p" | "date-to-shark-supply-to-circulating-supply-ratio" | "date-to-up-to-4m-median-price-paid" | "date-to-up-to-5y-realized-value" | "date-to-price-144d-sma-1p" | "date-to-up-to-15y-supply-in-loss-to-own-supply-ratio" | "date-to-illiquid-realized-price" | "date-to-year-2009-40p-price-paid" | "date-to-up-to-4m-15p-price-paid" | "date-to-year-2016-supply-in-loss-to-circulating-supply-ratio" | "date-to-year-2010-realized-price-1p" | "date-to-year-2018-realized-price-99p" | "date-to-year-2024-cumulative-realized-profit" | "date-to-market-price-to-from-10y-realized-price-ratio-1y-sma" | "date-to-up-to-1w-realized-cap-1m-net-change" | "date-to-market-price-to-up-to-2y-realized-price-ratio-99-5p" | "date-to-from-10y-35p-price-paid" | "date-to-market-price-to-shark-realized-price-ratio-1m-sma" | "date-to-market-price-to-price-1w-sma-ratio-1p" | "date-to-market-price-to-price-55d-sma-ratio-1m-sma" | "date-to-year-2013-unrealized-profit" | "date-to-p2wsh-05p-price-paid" | "date-to-year-2020-supply-to-circulating-supply-ratio" | "date-to-from-4y-cumulative-net-realized-profit-and-loss-1m-net-change" | "date-to-from-3m-to-6m-85p-price-paid" | "date-to-up-to-5m-realized-profit" | "date-to-year-2015-realized-price-99-5p" | "date-to-from-15y-85p-price-paid" | "date-to-up-to-1m-halved-supply-to-circulating-supply-ratio" | "date-to-up-to-2y-net-unrealized-profit-and-loss-to-market-cap-ratio" | "date-to-year-2019-halved-supply-to-circulating-supply-ratio" | "date-to-market-price-to-from-1y-to-2y-realized-price-ratio-99p" | "date-to-p2sh-supply-in-loss-to-own-supply-ratio" | "date-to-shark-utxo-count" | "date-to-market-price-to-year-2013-realized-price-ratio" | "date-to-market-price-to-sth-realized-price-ratio-0-1p" | "date-to-shrimp-supply-in-profit-to-circulating-supply-ratio" | "date-to-from-1y-80p-price-paid" | "date-to-from-1d-to-1w-35p-price-paid" | "date-to-illiquid-realized-value" | "date-to-liquid-halved-supply-to-circulating-supply-ratio" | "date-to-market-price-to-year-2019-realized-price-ratio-99p" | "date-to-sth-supply-in-profit-to-circulating-supply-ratio" | "date-to-up-to-2y-supply-in-loss" | "date-to-vaulted-supply-net-change" | "date-to-year-2011-10p-price-paid" | "date-to-year-2019-supply-in-profit" | "date-to-up-to-15y-40p-price-paid" | "date-to-market-price-to-p2pk-realized-price-ratio-0-5p" | "date-to-up-to-5y-sell-side-risk-ratio" | "date-to-from-1w-to-1m-net-unrealized-profit-and-loss" | "date-to-year-2010-60p-price-paid" | "date-to-year-2009-realized-price-99-9p" | "date-to-year-2015-cumulative-net-realized-profit-and-loss" | "date-to-market-price-to-price-8d-sma-ratio-99-9p" | "date-to-year-2011-realized-price" | "date-to-liquid-unrealized-profit" | "date-to-market-price-to-up-to-10y-realized-price-ratio-99p" | "date-to-price-1w-sma-99p" | "date-to-from-2y-to-3y-net-realized-profit-and-loss-to-market-cap-ratio" | "date-to-megalodon-value-destroyed" | "date-to-from-1w-to-1m-median-price-paid" | "date-to-market-price-to-up-to-3m-realized-price-ratio-1y-sma" | "date-to-blocks-mined" | "date-to-from-1w-to-1m-45p-price-paid" | "date-to-p2wpkh-supply-in-loss" | "date-to-10p-price-paid" | "date-to-market-price-to-year-2010-realized-price-ratio-1p" | "date-to-from-10y-to-15y-median-price-paid" | "date-to-up-to-1m-supply-in-loss-to-circulating-supply-ratio" | "date-to-shrimp-05p-price-paid" | "date-to-market-price-to-year-2011-realized-price-ratio-1p" | "date-to-year-2015-realized-value" | "date-to-year-2020-unrealized-profit" | "date-to-shrimp-net-unrealized-profit-and-loss" | "date-to-up-to-1w-negative-unrealized-loss" | "date-to-from-1w-to-1m-55p-price-paid" | "date-to-shark-sell-side-risk-ratio" | "date-to-shark-supply" | "date-to-up-to-10y-realized-price-1p" | "date-to-year-2011-40p-price-paid" | "date-to-year-2017-75p-price-paid" | "date-to-year-2011-35p-price-paid" | "date-to-year-2023-negative-realized-loss" | "date-to-year-2024-35p-price-paid" | "date-to-shrimp-25p-price-paid" | "date-to-year-2022-40p-price-paid" | "date-to-market-price-to-plankton-realized-price-ratio-1m-sma" | "date-to-from-3m-to-6m-30p-price-paid" | "date-to-year-2013-supply-in-profit-to-own-supply-ratio" | "date-to-market-price-to-up-to-1w-realized-price-ratio-0-1p" | "date-to-year-2010-unrealized-loss" | "date-to-from-6m-to-1y-95p-price-paid" | "date-to-cointime-price-0-1p" | "date-to-up-to-5y-05p-price-paid" | "date-to-year-2015-supply-to-circulating-supply-ratio" | "date-to-market-price-to-price-4y-sma-ratio-0-5p" | "date-to-shark-supply-in-profit" | "date-to-year-2018-15p-price-paid" | "date-to-annualized-transaction-volume-in-dollars" | "date-to-market-price-to-up-to-5m-realized-price-ratio-99-9p" | "date-to-year-2018-halved-supply" | "date-to-from-10y-25p-price-paid" | "date-to-market-price-to-from-1m-to-3m-realized-price-ratio" | "date-to-market-price-to-true-market-mean-ratio-0-1p" | "date-to-market-price-to-year-2020-realized-price-ratio-1m-sma" | "date-to-lth-supply-in-loss" | "date-to-market-price-to-highly-liquid-realized-price-ratio-0-1p" | "date-to-market-price-to-price-4y-sma-ratio-1m-sma" | "date-to-up-to-3m-realized-price-99p" | "date-to-from-1y-65p-price-paid" | "date-to-from-3m-to-6m-realized-price" | "date-to-active-price" | "date-to-from-5y-to-7y-value-created" | "date-to-p2tr-realized-cap-1m-net-change" | "date-to-whale-75p-price-paid" | "date-to-year-2014-net-realized-profit-and-loss" | "date-to-illiquid-realized-cap-1m-net-change" | "date-to-year-2009-realized-price-0-1p" | "date-to-from-2y-to-3y-utxo-count" | "date-to-illiquid-45p-price-paid" | "date-to-year-2014-net-unrealized-profit-and-loss-to-market-cap-ratio" | "date-to-year-2017-input-count" | "date-to-year-2012-30p-price-paid" | "date-to-p2wpkh-unrealized-loss" | "date-to-80p-price-paid" | "date-to-shark-realized-cap" | "date-to-market-price-to-from-1w-to-1m-realized-price-ratio-0-1p" | "date-to-year-2014-realized-profit" | "date-to-year-2012-supply-in-loss" | "date-to-from-10y-input-volume" | "date-to-from-10y-to-15y-cumulative-realized-profit" | "date-to-from-7y-to-10y-25p-price-paid" | "date-to-p2tr-45p-price-paid" | "date-to-market-price-to-p2pkh-realized-price-ratio-1y-sma-momentum-oscillator" | "date-to-from-1y-median-price-paid" | "date-to-shark-supply-in-loss-to-circulating-supply-ratio" | "date-to-market-price-to-p2pk-realized-price-ratio-1p" | "date-to-up-to-1d-supply-in-loss" | "date-to-whale-utxo-count" | "date-to-year-2019-supply-in-loss-to-circulating-supply-ratio" | "date-to-market-price-to-from-10y-to-15y-realized-price-ratio-1w-sma" | "date-to-year-2013-realized-price-0-5p" | "date-to-from-5y-to-7y-negative-unrealized-loss" | "date-to-up-to-1d-net-unrealized-profit-and-loss" | "date-to-up-to-10y-net-unrealized-profit-and-loss-to-market-cap-ratio" | "date-to-up-to-5m-70p-price-paid" | "date-to-up-to-3m-median-price-paid" | "date-to-market-price-to-year-2019-realized-price-ratio-1p" | "date-to-up-to-1d-realized-price-0-1p" | "date-to-year-2009-sell-side-risk-ratio" | "date-to-from-2y-to-3y-55p-price-paid" | "date-to-market-price-to-from-2y-realized-price-ratio-1w-sma" | "date-to-p2wpkh-median-price-paid" | "date-to-up-to-15y-15p-price-paid" | "date-to-market-price-to-year-2023-realized-price-ratio-99-9p" | "date-to-highly-liquid-realized-cap-1m-net-change" | "date-to-year-2023-realized-value" | "date-to-market-price-to-megalodon-realized-price-ratio-1w-sma" | "date-to-up-to-15y-supply-to-circulating-supply-ratio" | "date-to-crab-cumulative-net-realized-profit-and-loss" | "date-to-up-to-3m-95p-price-paid" | "date-to-up-to-4m-45p-price-paid" | "date-to-year-2022-supply-in-profit-to-circulating-supply-ratio" | "date-to-active-supply-3m-net-change" | "date-to-up-to-1d-realized-value" | "date-to-whale-input-count" | "date-to-up-to-1w-realized-cap" | "date-to-up-to-2y-65p-price-paid" | "date-to-market-price-to-from-7y-to-10y-realized-price-ratio-1m-sma" | "date-to-up-to-1w-85p-price-paid" | "date-to-up-to-3m-60p-price-paid" | "date-to-year-2010-supply-to-circulating-supply-ratio" | "date-to-from-6m-to-1y-halved-supply" | "date-to-p2sh-realized-price-99-9p" | "date-to-year-2013-85p-price-paid" | "date-to-year-2013-realized-price-99-5p" | "date-to-price-200w-sma-0-1p" | "date-to-market-price-to-price-34d-sma-ratio-1y-sma-momentum-oscillator" | "date-to-from-5y-to-7y-realized-price" | "date-to-coinbase-1y-sum" | "date-to-from-1d-to-1w-sell-side-risk-ratio" | "date-to-from-1y-supply-to-circulating-supply-ratio" | "date-to-year-2015-sell-side-risk-ratio" | "date-to-market-price-to-price-200w-sma-ratio" | "date-to-from-1y-to-2y-75p-price-paid" | "date-to-market-price-to-up-to-5m-realized-price-ratio-99p" | "date-to-up-to-1y-net-realized-profit-and-loss-to-market-cap-ratio" | "date-to-sth-40p-price-paid" | "date-to-up-to-7y-45p-price-paid" | "date-to-from-1w-to-1m-halved-supply-to-circulating-supply-ratio" | "date-to-up-to-5y-input-count" | "date-to-market-price-to-price-1m-sma-ratio-99p" | "date-to-from-3m-to-6m-net-unrealized-profit-and-loss" | "date-to-p2tr-cumulative-net-realized-profit-and-loss-1m-net-change" | "date-to-fish-realized-value" | "date-to-from-2y-45p-price-paid" | "date-to-from-7y-to-10y-45p-price-paid" | "date-to-p2wpkh-realized-cap-1m-net-change" | "date-to-shrimp-80p-price-paid" | "date-to-from-7y-to-10y-supply-in-loss-to-circulating-supply-ratio" | "date-to-up-to-4m-value-destroyed" | "date-to-market-price-to-p2tr-realized-price-ratio-1p" | "date-to-up-to-6m-cumulative-net-realized-profit-and-loss" | "date-to-year-2014-45p-price-paid" | "date-to-year-2019-input-volume" | "date-to-from-1y-realized-price" | "date-to-fish-65p-price-paid" | "date-to-p2pkh-80p-price-paid" | "date-to-from-2y-to-3y-spent-output-profit-ratio" | "date-to-from-1m-to-3m-30p-price-paid" | "date-to-crab-negative-unrealized-loss" | "date-to-liquid-realized-loss" | "date-to-up-to-7y-net-unrealized-profit-and-loss" | "date-to-year-2010-realized-cap" | "date-to-liquid-20p-price-paid" | "date-to-plankton-unrealized-loss" | "date-to-up-to-1d-supply-in-loss-to-own-supply-ratio" | "date-to-year-2015-unrealized-loss" | "date-to-up-to-2y-realized-price-0-5p" | "date-to-year-2009-cumulative-net-realized-profit-and-loss-1m-net-change" | "date-to-shark-90p-price-paid" | "date-to-from-1y-to-2y-supply-to-circulating-supply-ratio" | "date-to-from-1d-to-1w-10p-price-paid" | "date-to-market-price-to-from-1y-to-2y-realized-price-ratio" | "date-to-year-2019-realized-price-1p" | "date-to-p2tr-net-realized-profit-and-loss-to-market-cap-ratio" | "date-to-fish-supply-in-profit-to-circulating-supply-ratio" | "date-to-from-2y-to-3y-unrealized-loss" | "date-to-market-price-to-price-55d-sma-ratio-99-9p" | "date-to-from-5y-to-7y-45p-price-paid" | "date-to-from-1m-to-3m-70p-price-paid" | "date-to-market-price-to-up-to-1d-realized-price-ratio-1p" | "date-to-p2pkh-25p-price-paid" | "date-to-liquid-supply-in-loss" | "date-to-from-3y-to-5y-realized-value" | "date-to-humpback-cumulative-net-realized-profit-and-loss" | "date-to-price-144d-sma-0-5p" | "date-to-p2pk-input-count" | "date-to-year-2024-realized-value" | "date-to-p2pkh-supply-in-profit-to-circulating-supply-ratio" | "date-to-market-price-to-price-2y-sma-ratio-0-5p" | "date-to-market-price-to-up-to-2y-realized-price-ratio-99-9p" | "date-to-from-2y-20p-price-paid" | "date-to-market-price-to-up-to-10y-realized-price-ratio-1w-sma" | "date-to-market-price-to-year-2010-realized-price-ratio-0-5p" | "date-to-market-price-to-up-to-2m-realized-price-ratio-1w-sma" | "date-to-market-price-to-lth-realized-price-ratio-1p" | "date-to-market-price-to-year-2012-realized-price-ratio-1p" | "date-to-producerness" | "date-to-up-to-3m-supply-in-loss" | "date-to-up-to-7y-realized-price-1p" | "date-to-year-2017-value-created" | "date-to-year-2018-supply-in-profit-to-own-supply-ratio" | "date-to-up-to-5m-net-realized-profit-and-loss-to-market-cap-ratio" | "date-to-market-price-to-year-2020-realized-price-ratio-0-5p" | "date-to-year-2020-net-unrealized-profit-and-loss-to-market-cap-ratio" | "date-to-from-4y-realized-price-0-1p" | "date-to-market-price-to-p2wpkh-realized-price-ratio-1m-sma" | "date-to-market-price-to-up-to-6m-realized-price-ratio-0-1p" | "date-to-price-8d-sma-99p" | "date-to-up-to-1y-halved-supply" | "date-to-fish-median-price-paid" | "date-to-from-1y-supply-in-loss-to-own-supply-ratio" | "date-to-up-to-15y-net-realized-profit-and-loss-to-market-cap-ratio" | "date-to-from-1w-to-1m-realized-price" | "date-to-up-to-1d-80p-price-paid" | "date-to-p2tr-median-price-paid" | "date-to-year-2014-spent-output-profit-ratio" | "date-to-market-price-to-year-2013-realized-price-ratio-1p" | "date-to-humpback-value-destroyed" | "date-to-year-2017-40p-price-paid" | "date-to-from-15y-cumulative-realized-loss" | "date-to-market-price-to-from-15y-realized-price-ratio-1y-sma-momentum-oscillator" | "date-to-cumulative-net-realized-profit-and-loss" | "date-to-market-price-to-year-2012-realized-price-ratio-99p" | "date-to-up-to-1y-20p-price-paid" | "date-to-year-2019-realized-price" | "date-to-up-to-2m-input-volume" | "date-to-humpback-supply-in-loss-to-own-supply-ratio" | "date-to-up-to-15y-supply-in-profit" | "date-to-up-to-6m-net-unrealized-profit-and-loss-to-market-cap-ratio" | "date-to-highly-liquid-address-count" | "date-to-liquid-25p-price-paid" | "date-to-block-interval-1d-max" | "date-to-market-price-to-whale-realized-price-ratio-1y-sma" | "date-to-market-price-to-price-144d-sma-ratio-99-5p" | "date-to-from-1m-to-3m-unrealized-loss" | "date-to-from-2y-supply-in-loss-to-circulating-supply-ratio" | "date-to-from-10y-to-15y-60p-price-paid" | "date-to-p2pk-65p-price-paid" | "date-to-sth-25p-price-paid" | "date-to-from-1y-unrealized-loss" | "date-to-from-1d-to-1w-supply-in-loss" | "date-to-up-to-3m-unrealized-loss" | "date-to-market-price-to-price-13d-sma-ratio-1y-sma" | "date-to-shark-cumulative-realized-loss" | "date-to-yearly-inflation-rate" | "date-to-lth-cumulative-realized-profit" | "date-to-market-price-to-year-2023-realized-price-ratio-0-1p" | "date-to-up-to-1m-cumulative-net-realized-profit-and-loss-1m-net-change" | "date-to-up-to-3m-cumulative-net-realized-profit-and-loss-1m-net-change" | "date-to-up-to-5y-value-created" | "date-to-from-15y-net-unrealized-profit-and-loss-to-market-cap-ratio" | "date-to-market-price-to-price-4y-sma-ratio-99-9p" | "date-to-year-2012-realized-profit" | "date-to-from-2y-unrealized-profit" | "date-to-illiquid-realized-price-1p" | "date-to-p2wpkh-10p-price-paid" | "date-to-year-2009-value-created" | "date-to-market-price-to-price-1y-sma-ratio-1m-sma" | "date-to-p2wpkh-supply-in-profit" | "date-to-year-2010-net-unrealized-profit-and-loss" | "date-to-market-price-to-lth-realized-price-ratio-1y-sma-momentum-oscillator" | "date-to-from-6m-to-1y-supply-in-loss-to-own-supply-ratio" | "date-to-megalodon-unrealized-loss" | "date-to-up-to-10y-90p-price-paid" | "date-to-from-3y-to-5y-negative-unrealized-loss" | "date-to-market-price-to-price-4y-sma-ratio-1w-sma" | "date-to-true-market-deviation" | "date-to-up-to-6m-75p-price-paid" | "date-to-shark-value-destroyed" | "date-to-from-6m-to-1y-supply-in-loss" | "date-to-market-price-to-price-13d-sma-ratio-99p" | "date-to-market-price-to-year-2017-realized-price-ratio-1y-sma" | "date-to-from-1y-to-2y-85p-price-paid" | "date-to-market-price-to-true-market-mean-ratio-1m-sma" | "date-to-price-13d-sma-0-1p" | "date-to-up-to-6m-input-volume" | "date-to-year-2014-median-price-paid" | "date-to-crab-supply-in-loss" | "date-to-year-2018-negative-realized-loss" | "date-to-from-10y-to-15y-realized-price-99-9p" | "date-to-p2sh-halved-supply-to-circulating-supply-ratio" | "date-to-shrimp-realized-price-1p" | "date-to-up-to-1y-median-price-paid" | "date-to-up-to-5y-spent-output-profit-ratio" | "date-to-year-2018-realized-price-0-5p" | "date-to-p2wsh-value-created" | "date-to-p2wpkh-negative-realized-loss" | "date-to-from-1w-to-1m-spent-output-profit-ratio" | "date-to-p2pk-40p-price-paid" | "date-to-from-1y-supply-in-profit-to-circulating-supply-ratio" | "date-to-market-price-to-from-1d-to-1w-realized-price-ratio-1y-sma-momentum-oscillator" | "date-to-market-price-to-price-2y-sma-ratio-1p" | "date-to-shrimp-95p-price-paid" | "date-to-year-2018-halved-supply-to-circulating-supply-ratio" | "date-to-year-2022-input-volume" | "date-to-year-2019-net-realized-profit-and-loss" | "date-to-year-2020-realized-price-0-5p" | "date-to-35p-price-paid" | "date-to-from-3y-to-5y-realized-loss" | "date-to-lth-utxo-count" | "date-to-block-size-1d-10p" | "date-to-market-price-to-year-2023-realized-price-ratio-1m-sma" | "date-to-market-price-to-illiquid-realized-price-ratio-0-5p" | "date-to-shrimp-realized-profit" | "date-to-from-6m-to-1y-cumulative-realized-profit" | "date-to-up-to-4m-input-count" | "date-to-whale-realized-loss" | "date-to-from-2y-65p-price-paid" | "date-to-year-2019-65p-price-paid" | "date-to-from-4y-realized-cap" | "date-to-market-price-to-up-to-10y-realized-price-ratio-0-5p" | "date-to-year-2024-net-realized-profit-and-loss-to-market-cap-ratio" | "date-to-illiquid-85p-price-paid" | "date-to-from-5y-to-7y-realized-price-99p" | "date-to-market-price-to-year-2015-realized-price-ratio-0-5p" | "date-to-p2tr-15p-price-paid" | "date-to-year-2016-supply-in-profit" | "date-to-from-1y-cumulative-net-realized-profit-and-loss-1m-net-change" | "date-to-from-3m-to-6m-90p-price-paid" | "date-to-up-to-5y-supply" | "date-to-year-2024-realized-loss" | "date-to-up-to-10y-value-destroyed" | "date-to-humpback-80p-price-paid" | "date-to-market-price-to-from-7y-to-10y-realized-price-ratio-1p" | "date-to-market-price-to-year-2022-realized-price-ratio-99-9p" | "date-to-realized-price-99p" | "date-to-market-price-to-up-to-3m-realized-price-ratio-99-9p" | "date-to-up-to-4m-20p-price-paid" | "date-to-from-5y-to-7y-halved-supply-to-circulating-supply-ratio" | "date-to-up-to-2y-negative-realized-loss" | "date-to-up-to-7y-supply-in-profit-to-own-supply-ratio" | "date-to-year-2022-sell-side-risk-ratio" | "date-to-up-to-5m-supply-in-profit-to-circulating-supply-ratio" | "date-to-sell-side-risk-ratio" | "date-to-market-price-to-liquid-realized-price-ratio-1m-sma" | "date-to-p2wpkh-05p-price-paid" | "date-to-supply-in-profit-to-own-supply-ratio" | "date-to-sth-65p-price-paid" | "date-to-from-10y-unrealized-loss" | "date-to-fees-1y-sum" | "date-to-market-price-to-year-2017-realized-price-ratio-99p" | "date-to-from-6m-to-1y-value-created" | "date-to-p2pk-95p-price-paid" | "date-to-from-2y-unrealized-loss" | "date-to-p2pkh-realized-profit" | "date-to-p2sh-45p-price-paid" | "date-to-up-to-1m-supply-in-loss-to-own-supply-ratio" | "date-to-p2pkh-10p-price-paid" | "date-to-from-1m-to-3m-realized-price-99p" | "date-to-up-to-5m-realized-price-99p" | "date-to-from-1w-to-1m-realized-price-99p" | "date-to-from-15y-35p-price-paid" | "date-to-market-price-to-price-34d-sma-ratio-1y-sma" | "date-to-year-2014-realized-cap-1m-net-change" | "date-to-year-2020-realized-price-99-5p" | "date-to-from-4y-supply-in-loss" | "date-to-from-3m-to-6m-cumulative-realized-loss" | "date-to-year-2009-45p-price-paid" | "date-to-year-2022-median-price-paid" | "date-to-year-2023-supply-to-circulating-supply-ratio" | "date-to-from-2y-to-3y-40p-price-paid" | "date-to-humpback-address-count" | "date-to-up-to-15y-halved-supply" | "date-to-market-price-to-price-4y-sma-ratio-0-1p" | "date-to-megalodon-net-realized-profit-and-loss-to-market-cap-ratio" | "date-to-market-price-to-humpback-realized-price-ratio-1y-sma-momentum-oscillator" | "date-to-up-to-5m-cumulative-net-realized-profit-and-loss-1m-net-change" | "date-to-from-1y-to-2y-10p-price-paid" | "date-to-year-2017-10p-price-paid" | "date-to-from-5y-to-7y-10p-price-paid" | "date-to-fish-value-destroyed" | "date-to-p2sh-input-volume" | "date-to-sth-net-realized-profit-and-loss-to-market-cap-ratio" | "date-to-from-1y-to-2y-net-realized-profit-and-loss" | "date-to-year-2010-realized-profit" | "date-to-year-2011-80p-price-paid" | "date-to-from-5y-to-7y-cumulative-realized-loss" | "date-to-market-price-to-from-1y-realized-price-ratio-99p" | "date-to-up-to-1d-15p-price-paid" | "date-to-p2pkh-realized-price-99-9p" | "date-to-price-144d-sma-99-9p" | "date-to-up-to-1d-value-destroyed" | "date-to-up-to-5m-utxo-count" | "date-to-market-price-to-p2pkh-realized-price-ratio-1y-sma" | "date-to-whale-halved-supply" | "date-to-from-15y-realized-price-99-9p" | "date-to-market-price-to-illiquid-realized-price-ratio-1p" | "date-to-shark-25p-price-paid" | "date-to-up-to-15y-cumulative-realized-profit" | "date-to-up-to-3y-65p-price-paid" | "date-to-crab-unrealized-profit" | "date-to-from-2y-to-3y-realized-loss" | "date-to-megalodon-15p-price-paid" | "date-to-year-2014-value-created" | "date-to-year-2015-supply-in-loss-to-own-supply-ratio" | "date-to-from-10y-supply-in-profit" | "date-to-thermo-cap" | "date-to-year-2019-realized-price-99p" | "date-to-p2pk-cumulative-net-realized-profit-and-loss-1m-net-change" | "date-to-up-to-7y-25p-price-paid" | "date-to-market-price-to-p2tr-realized-price-ratio-99p" | "date-to-year-2020-unrealized-loss" | "date-to-from-1d-to-1w-supply-in-profit-to-own-supply-ratio" | "date-to-p2wsh-halved-supply" | "date-to-p2sh-sell-side-risk-ratio" | "date-to-up-to-2y-supply-in-loss-to-own-supply-ratio" | "date-to-plankton-realized-price-1p" | "date-to-year-2019-80p-price-paid" | "date-to-illiquid-address-count" | "date-to-from-2y-sell-side-risk-ratio" | "date-to-liquid-supply-in-profit" | "date-to-shrimp-75p-price-paid" | "date-to-up-to-2m-net-realized-profit-and-loss" | "date-to-year-2020-80p-price-paid" | "date-to-market-price-to-price-2y-sma-ratio-1w-sma" | "date-to-market-price-to-vaulted-price-ratio-1w-sma" | "date-to-p2wsh-20p-price-paid" | "date-to-up-to-1m-negative-realized-loss" | "date-to-up-to-2m-85p-price-paid" | "date-to-from-2y-to-3y-unrealized-profit" | "date-to-market-price-to-up-to-5y-realized-price-ratio" | "date-to-up-to-3m-realized-price" | "date-to-up-to-5y-cumulative-realized-profit" | "date-to-year-2018-70p-price-paid" | "date-to-shark-realized-price-99-5p" | "date-to-highly-liquid-10p-price-paid" | "date-to-year-2024-75p-price-paid" | "date-to-from-4y-unrealized-profit" | "date-to-up-to-3m-45p-price-paid" | "date-to-p2tr-supply-to-circulating-supply-ratio" | "date-to-year-2015-negative-realized-loss" | "date-to-humpback-realized-cap" | "date-to-market-price-to-year-2017-realized-price-ratio" | "date-to-p2tr-85p-price-paid" | "date-to-0" | "date-to-year-2018-80p-price-paid" | "date-to-from-1m-to-3m-net-unrealized-profit-and-loss" | "date-to-up-to-2y-75p-price-paid" | "date-to-up-to-7y-40p-price-paid" | "date-to-up-to-1m-cumulative-realized-loss" | "date-to-year-2020-10p-price-paid" | "date-to-from-2y-to-3y-realized-price-1p" | "date-to-year-2016-value-created" | "date-to-up-to-1y-net-unrealized-profit-and-loss" | "date-to-up-to-1m-30p-price-paid" | "date-to-up-to-3y-cumulative-realized-profit" | "date-to-year-2021-cumulative-net-realized-profit-and-loss-1m-net-change" | "date-to-up-to-5y-median-price-paid" | "date-to-year-2010-supply-in-profit" | "date-to-year-2023-realized-price-0-5p" | "date-to-p2wsh-net-realized-profit-and-loss-to-market-cap-ratio" | "date-to-highly-liquid-negative-realized-loss" | "date-to-p2pk-halved-supply-to-circulating-supply-ratio" | "date-to-crab-20p-price-paid" | "date-to-highly-liquid-realized-price-99-5p" | "date-to-p2pkh-realized-price-99p" | "date-to-market-price-to-from-3y-to-5y-realized-price-ratio-1m-sma" | "date-to-from-1m-to-3m-10p-price-paid" | "date-to-megalodon-90p-price-paid" | "date-to-plankton-40p-price-paid" | "date-to-year-2024-cumulative-realized-loss" | "date-to-price-6y-total-return" | "date-to-up-to-5y-75p-price-paid" | "date-to-highly-liquid-cumulative-net-realized-profit-and-loss-1m-net-change" | "date-to-shark-realized-price-99-9p" | "date-to-from-4y-realized-price-99-9p" | "date-to-year-2022-realized-price-1p" | "date-to-lth-cumulative-realized-loss" | "date-to-market-price-to-from-7y-to-10y-realized-price-ratio" | "date-to-from-15y-55p-price-paid" | "date-to-p2tr-realized-price-0-1p" | "date-to-from-2y-to-3y-30p-price-paid" | "date-to-whale-negative-realized-loss" | "date-to-year-2016-realized-price" | "date-to-value-created" | "date-to-market-price-to-whale-realized-price-ratio-1y-sma-momentum-oscillator" | "date-to-from-3y-to-5y-spent-output-profit-ratio" | "date-to-price-1w-sma-1p" | "date-to-year-2012-40p-price-paid" | "date-to-from-6m-to-1y-cumulative-net-realized-profit-and-loss" | "date-to-liquid-unrealized-loss" | "date-to-p2wpkh-cumulative-realized-profit" | "date-to-market-price-to-highly-liquid-realized-price-ratio-99p" | "date-to-price-89d-sma-0-5p" | "date-to-from-6m-to-1y-halved-supply-to-circulating-supply-ratio" | "date-to-up-to-2m-cumulative-net-realized-profit-and-loss" | "date-to-year-2023-65p-price-paid" | "date-to-year-2010-net-realized-profit-and-loss" | "date-to-market-price-to-from-2y-realized-price-ratio-0-5p" | "date-to-year-2009-halved-supply" | "date-to-from-2y-70p-price-paid" | "date-to-market-price-to-from-3y-to-5y-realized-price-ratio-1y-sma" | "date-to-market-price-to-lth-realized-price-ratio-0-1p" | "date-to-from-5y-to-7y-35p-price-paid" | "date-to-blocks-mined-1y-sum" | "date-to-from-1y-halved-supply-to-circulating-supply-ratio" | "date-to-p2pkh-95p-price-paid" | "date-to-market-price-to-price-1w-sma-ratio-99-5p" | "date-to-up-to-10y-negative-unrealized-loss" | "date-to-market-price-to-humpback-realized-price-ratio-1w-sma" | "date-to-up-to-1w-cumulative-realized-profit" | "date-to-up-to-3m-cumulative-realized-profit" | "date-to-year-2016-05p-price-paid" | "date-to-from-10y-negative-realized-loss" | "date-to-year-2015-55p-price-paid" | "date-to-from-10y-to-15y-70p-price-paid" | "date-to-humpback-70p-price-paid" | "date-to-year-2017-unrealized-profit" | "date-to-from-1d-to-1w-negative-unrealized-loss" | "date-to-up-to-10y-spent-output-profit-ratio" | "date-to-up-to-1y-45p-price-paid" | "date-to-shrimp-cumulative-net-realized-profit-and-loss" | "date-to-from-10y-15p-price-paid" | "date-to-plankton-spent-output-profit-ratio" | "date-to-shrimp-input-volume" | "date-to-from-3m-to-6m-input-count" | "date-to-year-2018-supply-in-loss" | "date-to-year-2022-realized-cap-1m-net-change" | "date-to-from-10y-to-15y-supply-in-profit-to-circulating-supply-ratio" | "date-to-from-5y-to-7y-25p-price-paid" | "date-to-up-to-6m-55p-price-paid" | "date-to-from-10y-to-15y-realized-cap-1m-net-change" | "date-to-year-2023-supply-in-loss-to-circulating-supply-ratio" | "date-to-from-2y-to-3y-supply-in-profit-to-own-supply-ratio" | "date-to-lth-80p-price-paid" | "date-to-market-price-to-year-2021-realized-price-ratio-0-5p" | "date-to-p2pk-15p-price-paid" | "date-to-market-price-to-price-1w-sma-ratio-0-1p" | "date-to-year-2012-20p-price-paid" | "date-to-market-price-to-from-2y-realized-price-ratio-1y-sma" | "date-to-market-price-to-from-1m-to-3m-realized-price-ratio-1p" | "date-to-year-2022-30p-price-paid" | "date-to-up-to-4m-60p-price-paid" | "date-to-from-7y-to-10y-utxo-count" | "date-to-illiquid-70p-price-paid" | "date-to-from-3y-to-5y-30p-price-paid" | "date-to-from-10y-cumulative-net-realized-profit-and-loss" | "date-to-p2pkh-65p-price-paid" | "date-to-sth-unrealized-loss" | "date-to-up-to-1w-supply-in-profit-to-own-supply-ratio" | "date-to-year-2020-cumulative-net-realized-profit-and-loss" | "date-to-from-1w-to-1m-realized-value" | "date-to-from-1w-to-1m-20p-price-paid" | "date-to-year-2010-realized-price-99-5p" | "date-to-year-2024-unrealized-profit" | "date-to-liveliness-net-change-2w-median" | "date-to-lth-45p-price-paid" | "date-to-from-5y-to-7y-net-realized-profit-and-loss-to-market-cap-ratio" | "date-to-year-2009-realized-cap-1m-net-change" | "date-to-year-2015-realized-price" | "date-to-p2wpkh-25p-price-paid" | "date-to-market-price-to-price-13d-sma-ratio" | "date-to-fish-value-created" | "date-to-p2pkh-negative-unrealized-loss" | "date-to-year-2013-80p-price-paid" | "date-to-humpback-supply-in-profit-to-own-supply-ratio" | "date-to-market-price-to-crab-realized-price-ratio-99-5p" | "date-to-block-weight-1d-median" | "date-to-year-2017-supply-in-loss-to-own-supply-ratio" | "date-to-up-to-5m-90p-price-paid" | "date-to-up-to-3m-cumulative-net-realized-profit-and-loss" | "date-to-crab-supply-in-profit" | "date-to-from-2y-90p-price-paid" | "date-to-up-to-15y-unrealized-profit" | "date-to-from-5y-to-7y-65p-price-paid" | "date-to-up-to-1m-supply" | "date-to-from-1w-to-1m-cumulative-realized-loss" | "date-to-from-1y-to-2y-realized-price" | "date-to-highly-liquid-realized-price-0-5p" | "date-to-illiquid-15p-price-paid" | "date-to-market-price-to-from-1w-to-1m-realized-price-ratio-1w-sma" | "date-to-market-price-to-year-2014-realized-price-ratio-99p" | "date-to-market-price-to-year-2024-realized-price-ratio-99p" | "date-to-up-to-7y-90p-price-paid" | "date-to-year-2021-realized-profit" | "date-to-from-3m-to-6m-60p-price-paid" | "date-to-up-to-7y-70p-price-paid" | "date-to-from-2y-supply" | "date-to-year-2013-value-destroyed" | "date-to-year-2019-55p-price-paid" | "date-to-year-2024-95p-price-paid" | "date-to-p2pk-halved-supply" | "date-to-from-15y-cumulative-net-realized-profit-and-loss" | "date-to-from-2y-to-3y-realized-cap-1m-net-change" | "date-to-from-5y-to-7y-realized-cap-1m-net-change" | "date-to-market-price-to-year-2023-realized-price-ratio-99p" | "date-to-up-to-10y-65p-price-paid" | "date-to-from-2y-realized-price" | "date-to-up-to-10y-cumulative-realized-profit" | "date-to-lth-unrealized-profit" | "date-to-highly-liquid-halved-supply-to-circulating-supply-ratio" | "date-to-up-to-10y-realized-profit" | "date-to-from-7y-to-10y-05p-price-paid" | "date-to-up-to-5y-realized-price-99-5p" | "date-to-whale-realized-price-0-5p" | "date-to-transaction-volume-1w-sma" | "date-to-year-2013-utxo-count" | "date-to-year-2023-value-destroyed" | "date-to-from-2y-to-3y-45p-price-paid" | "date-to-up-to-6m-60p-price-paid" | "date-to-humpback-input-count" | "date-to-market-price-to-year-2011-realized-price-ratio-1y-sma-momentum-oscillator" | "date-to-hash-rate-1m-sma" | "date-to-from-5y-to-7y-60p-price-paid" | "date-to-shrimp-supply-in-loss-to-circulating-supply-ratio" | "date-to-market-price-to-from-1m-to-3m-realized-price-ratio-1y-sma-momentum-oscillator" | "date-to-shark-realized-loss" | "date-to-market-price-to-up-to-1y-realized-price-ratio-99-9p" | "date-to-up-to-7y-realized-cap" | "date-to-active-price-99-9p" | "date-to-from-2y-utxo-count" | "date-to-up-to-10y-15p-price-paid" | "date-to-from-10y-to-15y-30p-price-paid" | "date-to-market-price-to-up-to-3m-realized-price-ratio-1p" | "date-to-year-2010-75p-price-paid" | "date-to-year-2013-20p-price-paid" | "date-to-empty-addresses" | "date-to-from-2y-cumulative-net-realized-profit-and-loss-1m-net-change" | "date-to-market-price-to-lth-realized-price-ratio-1w-sma" | "date-to-up-to-1y-10p-price-paid" | "date-to-market-price-to-liquid-realized-price-ratio-1y-sma" | "date-to-from-1d-to-1w-net-unrealized-profit-and-loss" | "date-to-up-to-10y-20p-price-paid" | "date-to-up-to-15y-negative-realized-loss" | "date-to-from-1y-realized-value" | "date-to-market-price-to-realized-price-ratio-99p" | "date-to-up-to-1y-supply-in-profit" | "date-to-from-5y-to-7y-85p-price-paid" | "date-to-from-2y-negative-unrealized-loss" | "date-to-from-2y-halved-supply-to-circulating-supply-ratio" | "date-to-market-price-to-up-to-7y-realized-price-ratio" | "date-to-plankton-realized-price-0-5p" | "date-to-up-to-3m-supply-to-circulating-supply-ratio" | "date-to-market-price-to-from-1d-to-1w-realized-price-ratio-1p" | "date-to-up-to-6m-85p-price-paid" | "date-to-year-2014-realized-price-1p" | "date-to-illiquid-net-realized-profit-and-loss-to-market-cap-ratio" | "date-to-year-2020-net-unrealized-profit-and-loss" | "date-to-up-to-4m-spent-output-profit-ratio" | "date-to-humpback-55p-price-paid" | "date-to-coinblocks-destroyed" | "date-to-from-5y-to-7y-supply-in-profit" | "date-to-from-2y-to-3y-median-price-paid" | "date-to-true-market-mean-0-5p" | "date-to-year-2013-negative-unrealized-loss" | "date-to-year-2016-supply-in-loss" | "date-to-year-2019-realized-value" | "date-to-year-2022-realized-value" | "date-to-humpback-realized-price-0-1p" | "date-to-market-price-to-up-to-5m-realized-price-ratio-1p" | "date-to-from-2y-80p-price-paid" | "date-to-market-price-to-up-to-3m-realized-price-ratio-0-5p" | "date-to-from-1w-to-1m-realized-price-1p" | "date-to-from-3y-to-5y-15p-price-paid" | "date-to-market-price-to-vaulted-price-ratio-1y-sma" | "date-to-crab-70p-price-paid" | "date-to-year-2023-30p-price-paid" | "date-to-year-2024-net-realized-profit-and-loss" | "date-to-from-5y-to-7y-supply-in-loss-to-own-supply-ratio" | "date-to-up-to-5m-65p-price-paid" | "date-to-year-2010-spent-output-profit-ratio" | "date-to-p2wsh-net-realized-profit-and-loss" | "date-to-up-to-1d-85p-price-paid" | "date-to-up-to-6m-realized-price-99-5p" | "date-to-up-to-3m-sell-side-risk-ratio" | "date-to-whale-unrealized-loss" | "date-to-whale-value-destroyed" | "date-to-from-1y-to-2y-supply-in-profit-to-own-supply-ratio" | "date-to-year-2014-75p-price-paid" | "date-to-sth-realized-price-99p" | "date-to-year-2020-cumulative-net-realized-profit-and-loss-1m-net-change" | "date-to-40p-price-paid" | "date-to-megalodon-supply-in-profit-to-own-supply-ratio" | "date-to-market-price-to-year-2019-realized-price-ratio-1y-sma" | "date-to-highly-liquid-halved-supply" | "date-to-from-5y-to-7y-median-price-paid" | "date-to-up-to-1y-85p-price-paid" | "date-to-year-2024-65p-price-paid" | "date-to-megalodon-unrealized-profit" | "date-to-up-to-3m-halved-supply" | "date-to-25p-price-paid" | "date-to-year-2019-70p-price-paid" | "date-to-year-2022-realized-price-0-5p" | "date-to-year-2024-supply-in-profit-to-own-supply-ratio" | "date-to-plankton-supply-to-circulating-supply-ratio" | "date-to-p2pkh-90p-price-paid" | "date-to-market-price-to-from-4y-realized-price-ratio-0-5p" | "date-to-p2pkh-spent-output-profit-ratio" | "date-to-market-price-to-from-15y-realized-price-ratio-99p" | "date-to-from-10y-to-15y-halved-supply-to-circulating-supply-ratio" | "date-to-from-1y-25p-price-paid" | "date-to-whale-supply" | "date-to-year-2024-sell-side-risk-ratio" | "date-to-up-to-3m-90p-price-paid" | "date-to-year-2011-negative-realized-loss" | "date-to-market-price-to-from-2y-to-3y-realized-price-ratio-1p" | "date-to-year-2018-net-realized-profit-and-loss" | "date-to-from-1y-realized-price-99-9p" | "date-to-p2tr-80p-price-paid" | "date-to-realized-cap-1m-net-change" | "date-to-p2pk-05p-price-paid" | "date-to-subsidy-in-dollars-1y-sum" | "date-to-from-3y-to-5y-unrealized-loss" | "date-to-year-2016-cumulative-net-realized-profit-and-loss-1m-net-change" | "date-to-market-price-to-price-1m-sma-ratio-1y-sma" | "date-to-year-2022-supply-in-profit" | "date-to-from-10y-60p-price-paid" | "date-to-last-subsidy-in-dollars" | "date-to-from-3m-to-6m-median-price-paid" | "date-to-market-price-to-p2pkh-realized-price-ratio-0-1p" | "date-to-up-to-1y-cumulative-realized-loss" | "date-to-from-3y-to-5y-realized-price-0-5p" | "date-to-lth-value-destroyed" | "date-to-whale-realized-price-0-1p" | "date-to-year-2011-realized-price-99-9p" | "date-to-fish-realized-price" | "date-to-from-3y-to-5y-cumulative-net-realized-profit-and-loss" | "date-to-market-price-to-shark-realized-price-ratio-1w-sma" | "date-to-market-price-to-price-4y-sma-ratio-99-5p" | "date-to-fish-supply-in-loss-to-circulating-supply-ratio" | "date-to-cumulative-coinblocks-created" | "date-to-up-to-6m-realized-cap" | "date-to-up-to-5y-unrealized-profit" | "date-to-highly-liquid-supply-in-profit-to-own-supply-ratio" | "date-to-market-price-to-fish-realized-price-ratio-1m-sma" | "date-to-market-price-to-year-2016-realized-price-ratio-1m-sma" | "date-to-megalodon-halved-supply" | "date-to-p2pkh-net-unrealized-profit-and-loss" | "date-to-up-to-4m-65p-price-paid" | "date-to-from-5y-to-7y-value-destroyed" | "date-to-up-to-4m-realized-cap-1m-net-change" | "date-to-from-1m-to-3m-realized-value" | "date-to-p2tr-realized-profit" | "date-to-market-price-to-true-market-mean-ratio" | "date-to-up-to-1d-90p-price-paid" | "date-to-up-to-1m-cumulative-realized-profit" | "date-to-market-price-to-highly-liquid-realized-price-ratio-99-5p" | "date-to-year-2021-net-unrealized-profit-and-loss-to-market-cap-ratio" | "date-to-price-1y-sma-99-9p" | "date-to-up-to-3y-90p-price-paid" | "date-to-from-2y-to-3y-supply-in-profit" | "date-to-lth-realized-price-1p" | "date-to-up-to-1d-realized-price-0-5p" | "date-to-whale-85p-price-paid" | "date-to-p2pkh-value-destroyed" | "date-to-year-2016-cumulative-realized-loss" | "date-to-market-price-to-year-2023-realized-price-ratio-0-5p" | "date-to-lth-40p-price-paid" | "date-to-up-to-2m-net-unrealized-profit-and-loss-to-market-cap-ratio" | "date-to-from-10y-to-15y-sell-side-risk-ratio" | "date-to-from-2y-realized-value" | "date-to-up-to-6m-input-count" | "date-to-year-2023-10p-price-paid" | "date-to-realized-profit" | "date-to-market-price-to-from-1y-to-2y-realized-price-ratio-1m-sma" | "date-to-market-price-to-from-5y-to-7y-realized-price-ratio-1m-sma" | "date-to-from-1w-to-1m-net-unrealized-profit-and-loss-to-market-cap-ratio" | "date-to-market-price-to-year-2009-realized-price-ratio-0-1p" | "date-to-up-to-1y-realized-loss" | "date-to-year-2018-supply-in-profit" | "date-to-crab-value-created" | "date-to-year-2021-supply-in-profit-to-own-supply-ratio" | "date-to-p2sh-median-price-paid" | "date-to-up-to-2m-90p-price-paid" | "date-to-up-to-5y-supply-in-loss" | "date-to-year-2009-realized-profit" | "date-to-year-2014-05p-price-paid" | "date-to-from-2y-supply-in-loss" | "date-to-up-to-4m-negative-realized-loss" | "date-to-45p-price-paid" | "date-to-market-price-to-year-2010-realized-price-ratio-0-1p" | "date-to-megalodon-halved-supply-to-circulating-supply-ratio" | "date-to-up-to-1d-realized-cap" | "date-to-market-price-to-year-2009-realized-price-ratio-1w-sma" | "date-to-year-2017-net-unrealized-profit-and-loss-to-market-cap-ratio" | "date-to-from-4y-realized-price-0-5p" | "date-to-market-price-to-from-3y-to-5y-realized-price-ratio" | "date-to-up-to-5y-net-unrealized-profit-and-loss" | "date-to-market-price-to-year-2009-realized-price-ratio-99-9p" | "date-to-up-to-1y-unrealized-loss" | "date-to-up-to-7y-85p-price-paid" | "date-to-p2wpkh-supply-in-profit-to-own-supply-ratio" | "date-to-market-price-to-true-market-mean-ratio-1w-sma" | "date-to-from-2y-to-3y-85p-price-paid" | "date-to-market-price-to-up-to-4m-realized-price-ratio-99-9p" | "date-to-up-to-7y-supply-to-circulating-supply-ratio" | "date-to-highly-liquid-sell-side-risk-ratio" | "date-to-realized-price-99-9p" | "date-to-market-price-to-from-4y-realized-price-ratio-99-5p" | "date-to-up-to-2y-55p-price-paid" | "date-to-crab-supply-in-profit-to-circulating-supply-ratio" | "date-to-market-price-to-year-2022-realized-price-ratio-1w-sma" | "date-to-whale-30p-price-paid" | "date-to-whale-cumulative-realized-profit" | "date-to-lth-05p-price-paid" | "date-to-from-1m-to-3m-20p-price-paid" | "date-to-from-1y-to-2y-supply-in-profit" | "date-to-market-price-to-sth-realized-price-ratio" | "date-to-lth-supply-to-circulating-supply-ratio" | "date-to-year-2010-25p-price-paid" | "date-to-price-89d-sma-99p" | "date-to-year-2023-45p-price-paid" | "date-to-transaction-volume-in-dollars-1w-sma" | "date-to-year-2019-supply" | "date-to-year-2012-unrealized-loss" | "date-to-up-to-1w-35p-price-paid" | "date-to-year-2020-utxo-count" | "date-to-year-2014-supply" | "date-to-year-2020-95p-price-paid" | "date-to-liveliness-net-change" | "date-to-market-price-to-whale-realized-price-ratio" | "date-to-p2wpkh-net-unrealized-profit-and-loss" | "date-to-up-to-6m-05p-price-paid" | "date-to-year-2011-unrealized-profit" | "date-to-year-2023-cumulative-net-realized-profit-and-loss-1m-net-change" | "date-to-year-2024-70p-price-paid" | "date-to-year-2015-realized-cap-1m-net-change" | "date-to-block-size-1d-max" | "date-to-crab-supply-in-profit-to-own-supply-ratio" | "date-to-p2wpkh-realized-price-99-9p" | "date-to-sth-30p-price-paid" | "date-to-market-price-to-illiquid-realized-price-ratio-1m-sma" | "date-to-up-to-1m-85p-price-paid" | "date-to-year-2017-80p-price-paid" | "date-to-fish-utxo-count" | "date-to-100" | "date-to-market-price-to-up-to-1w-realized-price-ratio" | "date-to-market-price-to-up-to-3y-realized-price-ratio-1y-sma-momentum-oscillator" | "date-to-year-2018-sell-side-risk-ratio" | "date-to-year-2020-75p-price-paid" | "date-to-up-to-1d-value-created" | "date-to-year-2017-25p-price-paid" | "date-to-megalodon-net-unrealized-profit-and-loss-to-market-cap-ratio" | "date-to-from-3y-to-5y-05p-price-paid" | "date-to-p2pkh-supply-in-profit-to-own-supply-ratio" | "date-to-from-3m-to-6m-input-volume" | "date-to-from-3m-to-6m-supply-to-circulating-supply-ratio" | "date-to-fish-cumulative-net-realized-profit-and-loss" | "date-to-market-price-to-year-2018-realized-price-ratio-99-5p" | "date-to-up-to-1m-realized-cap" | "date-to-up-to-2y-realized-profit" | "date-to-year-2016-negative-unrealized-loss" | "date-to-price-34d-sma-0-5p" | "date-to-liquid-cumulative-realized-loss" | "date-to-illiquid-cumulative-realized-loss" | "date-to-year-2016-realized-price-0-5p" | "date-to-year-2020-realized-value" | "date-to-from-3y-to-5y-supply-in-profit-to-own-supply-ratio" | "date-to-illiquid-90p-price-paid" | "date-to-market-price-to-shark-realized-price-ratio-0-1p" | "date-to-from-2y-to-3y-realized-cap" | "date-to-from-10y-to-15y-90p-price-paid" | "date-to-from-5y-to-7y-75p-price-paid" | "date-to-coindays-destroyed" | "date-to-market-price-to-fish-realized-price-ratio-99p" | "date-to-up-to-2y-supply-in-profit-to-own-supply-ratio" | "date-to-from-1y-90p-price-paid" | "date-to-from-1w-to-1m-cumulative-net-realized-profit-and-loss" | "date-to-up-to-6m-realized-price-99-9p" | "date-to-year-2012-cumulative-realized-profit" | "date-to-from-2y-supply-in-loss-to-own-supply-ratio" | "date-to-market-price-to-illiquid-realized-price-ratio-1y-sma-momentum-oscillator" | "date-to-market-price-to-cointime-price-ratio-1p" | "date-to-market-price-to-up-to-2m-realized-price-ratio-1y-sma" | "date-to-market-price-to-year-2011-realized-price-ratio-99-9p" | "date-to-shrimp-cumulative-realized-profit" | "date-to-highly-liquid-30p-price-paid" | "date-to-market-price-to-year-2019-realized-price-ratio-99-5p" | "date-to-plankton-net-unrealized-profit-and-loss-to-market-cap-ratio" | "date-to-up-to-10y-supply-to-circulating-supply-ratio" | "date-to-up-to-1d-net-unrealized-profit-and-loss-to-market-cap-ratio" | "date-to-up-to-7y-supply-in-profit" | "date-to-market-price-to-from-5y-to-7y-realized-price-ratio-99-5p" | "date-to-cumulative-coinblocks-stored" | "date-to-p2pk-realized-price-0-5p" | "date-to-price-200w-sma-1p" | "date-to-market-price-to-year-2012-realized-price-ratio-1w-sma" | "date-to-shrimp-realized-price-99-9p" | "date-to-crab-10p-price-paid" | "date-to-from-1w-to-1m-40p-price-paid" | "date-to-megalodon-realized-loss" | "date-to-from-7y-to-10y-realized-cap" | "date-to-from-3y-to-5y-realized-price-99-5p" | "date-to-highly-liquid-40p-price-paid" | "date-to-up-to-15y-cumulative-realized-loss" | "date-to-up-to-6m-net-unrealized-profit-and-loss" | "date-to-year-2011-utxo-count" | "date-to-up-to-1y-utxo-count" | "date-to-from-6m-to-1y-65p-price-paid" | "date-to-from-1d-to-1w-realized-price-0-5p" | "date-to-from-3y-to-5y-input-volume" | "date-to-humpback-60p-price-paid" | "date-to-p2wpkh-input-volume" | "date-to-megalodon-45p-price-paid" | "date-to-block-interval-1d-average" | "date-to-up-to-1w-halved-supply" | "date-to-year-2014-realized-value" | "date-to-market-price-to-humpback-realized-price-ratio-99p" | "date-to-lth-95p-price-paid" | "date-to-shark-realized-price-1p" | "date-to-year-2020-negative-unrealized-loss" | "date-to-from-6m-to-1y-realized-value" | "date-to-market-price-to-up-to-6m-realized-price-ratio-99-9p" | "date-to-year-2024-supply" | "date-to-year-2012-75p-price-paid" | "date-to-year-2021-05p-price-paid" | "date-to-from-7y-to-10y-85p-price-paid" | "date-to-year-2014-utxo-count" | "date-to-year-2022-25p-price-paid" | "date-to-megalodon-supply-to-circulating-supply-ratio" | "date-to-year-2020-sell-side-risk-ratio" | "date-to-from-10y-realized-cap" | "date-to-year-2020-55p-price-paid" | "date-to-from-6m-to-1y-net-realized-profit-and-loss" | "date-to-from-4y-negative-realized-loss" | "date-to-market-price-to-from-6m-to-1y-realized-price-ratio-99-5p" | "date-to-p2sh-net-unrealized-profit-and-loss-to-market-cap-ratio" | "date-to-shrimp-halved-supply" | "date-to-up-to-5m-cumulative-net-realized-profit-and-loss" | "date-to-year-2012-realized-price-0-5p" | "date-to-market-price-to-up-to-2m-realized-price-ratio-1p" | "date-to-market-price-to-year-2011-realized-price-ratio-1y-sma" | "date-to-from-2y-to-3y-realized-price-99p" | "date-to-p2pk-supply-in-loss-to-own-supply-ratio" | "date-to-year-2019-supply-in-profit-to-circulating-supply-ratio" | "date-to-from-10y-40p-price-paid" | "date-to-market-price-to-year-2012-realized-price-ratio-1y-sma" | "date-to-p2tr-40p-price-paid" | "date-to-year-2021-realized-price-1p" | "date-to-year-2015-70p-price-paid" | "date-to-from-2y-to-3y-25p-price-paid" | "date-to-market-price-to-year-2018-realized-price-ratio-99-9p" | "date-to-market-price-to-up-to-1m-realized-price-ratio-1p" | "date-to-p2wsh-supply-to-circulating-supply-ratio" | "date-to-up-to-7y-95p-price-paid" | "date-to-year-2014-value-destroyed" | "date-to-market-price-to-up-to-1m-realized-price-ratio-1m-sma" | "date-to-market-price-to-up-to-5y-realized-price-ratio-99-5p" | "date-to-p2tr-spent-output-profit-ratio" | "date-to-p2sh-negative-unrealized-loss" | "date-to-from-10y-to-15y-15p-price-paid" | "date-to-up-to-2y-20p-price-paid" | "date-to-up-to-15y-supply-in-loss" | "date-to-market-price-to-up-to-1y-realized-price-ratio" | "date-to-market-price-to-year-2024-realized-price-ratio-1m-sma" | "date-to-from-1y-to-2y-utxo-count" | "date-to-price-34d-sma-1p" | "date-to-up-to-1y-supply" | "date-to-crab-cumulative-net-realized-profit-and-loss-1m-net-change" | "date-to-from-3y-to-5y-40p-price-paid" | "date-to-up-to-3y-realized-price-99p" | "date-to-p2tr-95p-price-paid" | "date-to-up-to-15y-realized-cap" | "date-to-up-to-6m-10p-price-paid" | "date-to-from-10y-to-15y-value-created" | "date-to-year-2012-realized-cap" | "date-to-year-2023-75p-price-paid" | "date-to-shrimp-10p-price-paid" | "date-to-up-to-7y-realized-cap-1m-net-change" | "date-to-up-to-4m-net-unrealized-profit-and-loss-to-market-cap-ratio" | "date-to-year-2013-95p-price-paid" | "date-to-market-price-to-price-55d-sma-ratio-0-5p" | "date-to-market-price-to-price-1m-sma-ratio-1p" | "date-to-from-7y-to-10y-net-unrealized-profit-and-loss" | "date-to-coinblocks-created" | "date-to-from-2y-to-3y-negative-realized-loss" | "date-to-up-to-10y-55p-price-paid" | "date-to-p2pkh-15p-price-paid" | "date-to-cointime-price-0-5p" | "date-to-liquid-80p-price-paid" | "date-to-year-2011-supply-in-profit-to-circulating-supply-ratio" | "date-to-year-2015-80p-price-paid" | "date-to-from-10y-realized-cap-1m-net-change" | "date-to-year-2024-net-unrealized-profit-and-loss" | "date-to-up-to-15y-85p-price-paid" | "date-to-market-price-to-cointime-price-ratio-0-1p" | "date-to-from-1w-to-1m-15p-price-paid" | "date-to-p2wpkh-35p-price-paid" | "date-to-from-4y-60p-price-paid" | "date-to-shark-realized-cap-1m-net-change" | "date-to-up-to-3m-realized-price-0-1p" | "date-to-up-to-7y-80p-price-paid" | "date-to-market-price-to-crab-realized-price-ratio-1y-sma" | "date-to-p2wpkh-45p-price-paid" | "date-to-vaulted-supply" | "date-to-up-to-5y-10p-price-paid" | "date-to-65p-price-paid" | "date-to-market-price-to-year-2010-realized-price-ratio-1w-sma" | "date-to-from-3y-to-5y-35p-price-paid" | "date-to-market-price-to-true-market-mean-ratio-1y-sma-momentum-oscillator" | "date-to-from-2y-to-3y-input-count" | "date-to-p2sh-70p-price-paid" | "date-to-true-market-mean-99p" | "date-to-supply-in-loss-to-own-supply-ratio" | "date-to-from-1m-to-3m-unrealized-profit" | "date-to-up-to-5m-supply" | "date-to-year-2015-45p-price-paid" | "date-to-market-price-to-from-10y-to-15y-realized-price-ratio-99-9p" | "date-to-market-price-to-price-200w-sma-ratio-99-5p" | "date-to-shark-40p-price-paid" | "date-to-market-price-to-humpback-realized-price-ratio-99-5p" | "date-to-market-price-to-from-10y-to-15y-realized-price-ratio-0-1p" | "date-to-up-to-5y-55p-price-paid" | "date-to-70p-price-paid" | "date-to-year-2013-supply" | "date-to-year-2019-sell-side-risk-ratio" | "date-to-shrimp-median-price-paid" | "date-to-market-price-to-from-3y-to-5y-realized-price-ratio-99-9p" | "date-to-year-2020-supply-in-loss" | "date-to-crab-supply" | "date-to-from-1w-to-1m-realized-price-0-1p" | "date-to-from-2y-value-destroyed" | "date-to-up-to-3m-net-unrealized-profit-and-loss" | "date-to-sth-05p-price-paid" | "date-to-from-4y-realized-profit" | "date-to-plankton-net-unrealized-profit-and-loss" | "date-to-year-2021-supply" | "date-to-liquid-input-volume" | "date-to-from-6m-to-1y-supply-in-loss-to-circulating-supply-ratio" | "date-to-from-10y-to-15y-net-unrealized-profit-and-loss" | "date-to-from-1m-to-3m-realized-price-0-1p" | "date-to-coinblocks-stored" | "date-to-cointime-cap" | "date-to-shrimp-negative-unrealized-loss" | "date-to-humpback-supply-in-profit" | "date-to-market-price-to-year-2018-realized-price-ratio-1w-sma" | "date-to-up-to-2m-utxo-count" | "date-to-transaction-volume" | "date-to-year-2009-negative-realized-loss" | "date-to-from-2y-net-unrealized-profit-and-loss-to-market-cap-ratio" | "date-to-year-2014-realized-loss" | "date-to-from-2y-to-3y-cumulative-realized-profit" | "date-to-market-price-to-up-to-1w-realized-price-ratio-1y-sma-momentum-oscillator" | "date-to-plankton-supply-in-loss-to-circulating-supply-ratio" | "date-to-year-2012-realized-cap-1m-net-change" | "date-to-year-2018-10p-price-paid" | "date-to-year-2011-sell-side-risk-ratio" | "date-to-market-price-to-up-to-5y-realized-price-ratio-0-5p" | "date-to-year-2016-utxo-count" | "date-to-from-15y-realized-price-1p" | "date-to-up-to-2m-realized-price-99-5p" | "date-to-whale-halved-supply-to-circulating-supply-ratio" | "date-to-year-2024-supply-in-loss" | "date-to-p2pk-realized-price-99-5p" | "date-to-market-price-to-from-2y-to-3y-realized-price-ratio-0-1p" | "date-to-from-3m-to-6m-realized-cap" | "date-to-year-2014-15p-price-paid" | "date-to-market-price-to-crab-realized-price-ratio-99p" | "date-to-shark-net-unrealized-profit-and-loss" | "date-to-20p-price-paid" | "date-to-shark-cumulative-net-realized-profit-and-loss-1m-net-change" | "date-to-market-price-to-up-to-1d-realized-price-ratio-1y-sma" | "date-to-from-6m-to-1y-realized-price-1p" | "date-to-up-to-1d-halved-supply" | "date-to-year-2015-supply" | "date-to-up-to-2m-30p-price-paid" | "date-to-year-2024-05p-price-paid" | "date-to-fees" | "date-to-market-price-to-year-2023-realized-price-ratio-1w-sma" | "date-to-year-2016-realized-cap" | "date-to-fees-in-dollars" | "date-to-market-price-to-highly-liquid-realized-price-ratio-99-9p" | "date-to-price-55d-sma-99-5p" | "date-to-illiquid-net-unrealized-profit-and-loss" | "date-to-up-to-1w-realized-price-0-1p" | "date-to-market-price-to-from-1y-realized-price-ratio-0-5p" | "date-to-from-3m-to-6m-70p-price-paid" | "date-to-sth-utxo-count" | "date-to-up-to-1m-15p-price-paid" | "date-to-up-to-2y-15p-price-paid" | "date-to-up-to-3y-85p-price-paid" | "date-to-up-to-5m-supply-to-circulating-supply-ratio" | "date-to-p2pkh-median-price-paid" | "date-to-from-15y-75p-price-paid" | "date-to-up-to-2y-median-price-paid" | "date-to-up-to-2y-realized-price-99-5p" | "date-to-megalodon-25p-price-paid" | "date-to-year-2009-median-price-paid" | "date-to-from-1y-55p-price-paid" | "date-to-from-1w-to-1m-net-realized-profit-and-loss-to-market-cap-ratio" | "date-to-market-price-to-highly-liquid-realized-price-ratio-1w-sma" | "date-to-market-price-to-year-2016-realized-price-ratio-1y-sma-momentum-oscillator" | "date-to-fish-supply-in-profit-to-own-supply-ratio" | "date-to-megalodon-05p-price-paid" | "date-to-up-to-5m-realized-cap-1m-net-change" | "date-to-year-2012-net-realized-profit-and-loss-to-market-cap-ratio" | "date-to-up-to-1y-90p-price-paid" | "date-to-up-to-6m-cumulative-realized-profit" | "date-to-humpback-halved-supply-to-circulating-supply-ratio" | "date-to-market-price-to-year-2014-realized-price-ratio-1p" | "date-to-plankton-negative-realized-loss" | "date-to-year-2024-realized-price-99-9p" | "date-to-market-price-to-from-10y-realized-price-ratio-99-9p" | "date-to-up-to-6m-halved-supply-to-circulating-supply-ratio" | "date-to-market-price-to-price-2y-sma-ratio-99-9p" | "date-to-from-1y-unrealized-profit" | "date-to-from-2y-to-3y-10p-price-paid" | "date-to-from-6m-to-1y-sell-side-risk-ratio" | "date-to-market-price-to-price-13d-sma-ratio-99-5p" | "date-to-market-price-to-price-55d-sma-ratio-1p" | "date-to-p2wpkh-realized-profit" | "date-to-shark-supply-in-profit-to-own-supply-ratio" | "date-to-from-5y-to-7y-supply-in-profit-to-circulating-supply-ratio" | "date-to-market-price-to-from-3y-to-5y-realized-price-ratio-1y-sma-momentum-oscillator" | "date-to-p2pk-value-destroyed" | "date-to-humpback-spent-output-profit-ratio" | "date-to-year-2012-realized-price-1p" | "date-to-cointime-price-99-5p" | "date-to-plankton-cumulative-net-realized-profit-and-loss-1m-net-change" | "date-to-year-2011-realized-cap" | "date-to-from-1y-realized-profit" | "date-to-market-price-to-p2wpkh-realized-price-ratio-1y-sma-momentum-oscillator" | "date-to-from-4y-supply-in-profit-to-circulating-supply-ratio" | "date-to-market-price-to-humpback-realized-price-ratio-0-5p" | "date-to-from-15y-realized-price" | "date-to-illiquid-05p-price-paid" | "date-to-market-price-to-year-2015-realized-price-ratio-1y-sma-momentum-oscillator" | "date-to-p2pkh-55p-price-paid" | "date-to-up-to-5y-65p-price-paid" | "date-to-illiquid-unrealized-loss" | "date-to-up-to-1w-negative-realized-loss" | "date-to-year-2014-cumulative-realized-loss" | "date-to-p2tr-realized-price" | "date-to-shark-realized-price-0-1p" | "date-to-year-2011-halved-supply-to-circulating-supply-ratio" | "date-to-fish-supply-in-loss-to-own-supply-ratio" | "date-to-from-10y-10p-price-paid" | "date-to-year-2023-net-realized-profit-and-loss" | "date-to-from-1d-to-1w-unrealized-loss" | "date-to-market-cap" | "date-to-up-to-1w-realized-price-99p" | "date-to-up-to-2m-negative-unrealized-loss" | "date-to-shark-15p-price-paid" | "date-to-from-4y-40p-price-paid" | "date-to-plankton-realized-price-99p" | "date-to-humpback-value-created" | "date-to-from-1w-to-1m-realized-price-99-9p" | "date-to-up-to-6m-spent-output-profit-ratio" | "date-to-market-price-to-from-1y-realized-price-ratio-1p" | "date-to-up-to-4m-40p-price-paid" | "date-to-market-price-to-up-to-5y-realized-price-ratio-1y-sma-momentum-oscillator" | "date-to-up-to-10y-supply" | "date-to-from-10y-to-15y-spent-output-profit-ratio" | "date-to-p2pkh-halved-supply" | "date-to-sth-45p-price-paid" | "date-to-market-price-to-year-2020-realized-price-ratio-1w-sma" | "date-to-p2wsh-realized-value" | "date-to-market-price-to-up-to-5y-realized-price-ratio-1m-sma" | "date-to-from-1y-sell-side-risk-ratio" | "date-to-market-price-to-from-6m-to-1y-realized-price-ratio-1p" | "date-to-from-1y-realized-price-0-5p" | "date-to-market-price-to-year-2021-realized-price-ratio-99-9p" | "date-to-highly-liquid-realized-price-1p" | "date-to-market-price-to-price-55d-sma-ratio-1y-sma" | "date-to-sth-net-unrealized-profit-and-loss-to-market-cap-ratio" | "date-to-year-2017-15p-price-paid" | "date-to-year-2022-realized-price-99-5p" | "date-to-highly-liquid-25p-price-paid" | "date-to-year-2019-45p-price-paid" | "date-to-up-to-7y-net-unrealized-profit-and-loss-to-market-cap-ratio" | "date-to-liquid-60p-price-paid" | "date-to-from-15y-realized-profit" | "date-to-from-5y-to-7y-realized-value" | "date-to-price-1m-sma-0-5p" | "date-to-from-2y-35p-price-paid" | "date-to-up-to-4m-55p-price-paid" | "date-to-market-price-to-up-to-3y-realized-price-ratio-1p" | "date-to-illiquid-75p-price-paid" | "date-to-p2wsh-negative-unrealized-loss" | "date-to-up-to-3m-10p-price-paid" | "date-to-from-7y-to-10y-90p-price-paid" | "date-to-year-2009-negative-unrealized-loss" | "date-to-highly-liquid-supply-in-profit" | "date-to-realized-price-0-5p" | "date-to-up-to-4m-90p-price-paid" | "date-to-market-price-to-plankton-realized-price-ratio-99-9p" | "date-to-up-to-5y-85p-price-paid" | "date-to-total-cointime-value-stored" | "date-to-market-price-to-year-2015-realized-price-ratio" | "date-to-market-price-to-from-1w-to-1m-realized-price-ratio-0-5p" | "date-to-year-2021-unrealized-profit" | "date-to-market-price-to-from-1w-to-1m-realized-price-ratio-99-5p" | "date-to-up-to-10y-75p-price-paid" | "date-to-highly-liquid-negative-unrealized-loss" | "date-to-year-2015-halved-supply-to-circulating-supply-ratio" | "date-to-from-2y-to-3y-70p-price-paid" | "date-to-p2pkh-input-volume" | "date-to-up-to-3y-net-realized-profit-and-loss-to-market-cap-ratio" | "date-to-market-price-to-from-5y-to-7y-realized-price-ratio-99p" | "date-to-year-2011-supply-in-loss-to-circulating-supply-ratio" | "date-to-from-1y-supply-in-profit" | "date-to-year-2010-realized-value" | "date-to-year-2016-realized-price-0-1p" | "date-to-year-2016-input-count" | "date-to-market-price-to-fish-realized-price-ratio-1w-sma" | "date-to-from-2y-input-volume" | "date-to-shrimp-realized-price-99p" | "date-to-up-to-2y-cumulative-realized-profit" | "date-to-up-to-3m-halved-supply-to-circulating-supply-ratio" | "date-to-year-2009-supply-in-profit-to-circulating-supply-ratio" | "date-to-illiquid-supply-in-profit" | "date-to-from-1w-to-1m-negative-realized-loss" | "date-to-liquid-realized-price-1p" | "date-to-market-price-to-from-2y-to-3y-realized-price-ratio-1w-sma" | "date-to-market-price-to-p2tr-realized-price-ratio-1w-sma" | "date-to-plankton-realized-price-99-5p" | "date-to-up-to-5y-95p-price-paid" | "date-to-year-2024-realized-price-99-5p" | "date-to-p2wsh-45p-price-paid" | "date-to-market-price-to-crab-realized-price-ratio-1m-sma" | "date-to-market-price-to-p2wpkh-realized-price-ratio-99-9p" | "date-to-p2sh-supply-in-profit" | "date-to-year-2011-90p-price-paid" | "date-to-from-6m-to-1y-supply-to-circulating-supply-ratio" | "date-to-year-2018-unrealized-profit" | "date-to-lth-10p-price-paid" | "date-to-year-2023-sell-side-risk-ratio" | "date-to-humpback-35p-price-paid" | "date-to-from-5y-to-7y-spent-output-profit-ratio" | "date-to-market-price-to-up-to-6m-realized-price-ratio-1y-sma-momentum-oscillator" | "date-to-price-4y-sma-0-1p" | "date-to-sth-median-price-paid" | "date-to-year-2017-supply-in-loss-to-circulating-supply-ratio" | "date-to-up-to-6m-supply-to-circulating-supply-ratio" | "date-to-year-2010-65p-price-paid" | "date-to-market-price-to-fish-realized-price-ratio-1p" | "date-to-price-4y-sma-99-9p" | "date-to-true-market-mean-99-9p" | "date-to-up-to-3m-supply-in-profit-to-circulating-supply-ratio" | "date-to-up-to-6m-supply-in-profit-to-circulating-supply-ratio" | "date-to-year-2014-input-volume" | "date-to-from-1y-to-2y-55p-price-paid" | "date-to-year-2019-realized-profit" | "date-to-up-to-1w-input-count" | "date-to-year-2015-halved-supply" | "date-to-market-price-to-year-2022-realized-price-ratio-99-5p" | "date-to-from-10y-to-15y-65p-price-paid" | "date-to-from-3m-to-6m-realized-price-99-5p" | "date-to-year-2016-80p-price-paid" | "date-to-liquid-value-created" | "date-to-market-price-to-from-1w-to-1m-realized-price-ratio-1y-sma-momentum-oscillator" | "date-to-illiquid-input-count" | "date-to-year-2023-supply-in-profit-to-own-supply-ratio" | "date-to-up-to-4m-realized-price-0-5p" | "date-to-year-2009-20p-price-paid" | "date-to-from-3y-to-5y-halved-supply-to-circulating-supply-ratio" | "date-to-p2pkh-realized-price-1p" | "date-to-year-2024-10p-price-paid" | "date-to-up-to-1d-supply" | "date-to-up-to-7y-30p-price-paid" | "date-to-crab-input-count" | "date-to-up-to-1d-spent-output-profit-ratio" | "date-to-from-1y-negative-realized-loss" | "date-to-from-1m-to-3m-supply-in-profit-to-own-supply-ratio" | "date-to-market-price-to-price-34d-sma-ratio-1w-sma" | "date-to-p2wpkh-15p-price-paid" | "date-to-market-price-to-from-2y-to-3y-realized-price-ratio-99-9p" | "date-to-p2wsh-unrealized-loss" | "date-to-market-price-to-year-2017-realized-price-ratio-0-1p" | "date-to-up-to-15y-10p-price-paid" | "date-to-year-2022-net-realized-profit-and-loss" | "date-to-shrimp-15p-price-paid" | "date-to-p2pkh-supply-in-loss-to-circulating-supply-ratio" | "date-to-market-price-to-price-1y-sma-ratio-99-5p" | "date-to-up-to-15y-sell-side-risk-ratio" | "date-to-from-1w-to-1m-net-realized-profit-and-loss" | "date-to-from-3m-to-6m-supply-in-loss-to-own-supply-ratio" | "date-to-from-1y-60p-price-paid" | "date-to-market-price-to-up-to-4m-realized-price-ratio-99p" | "date-to-shrimp-realized-price-0-1p" | "date-to-year-2009-net-realized-profit-and-loss" | "date-to-sth-negative-unrealized-loss" | "date-to-fish-realized-price-0-5p" | "date-to-p2wpkh-utxo-count" | "date-to-year-2018-20p-price-paid" | "date-to-market-price-to-price-4y-sma-ratio" | "date-to-fish-15p-price-paid" | "date-to-liquid-net-unrealized-profit-and-loss" | "date-to-year-2010-supply" | "date-to-year-2020-supply-in-loss-to-own-supply-ratio" | "date-to-up-to-4m-realized-price-99p" | "date-to-true-market-mean-99-5p" | "date-to-up-to-1m-input-count" | "date-to-from-10y-to-15y-85p-price-paid" | "date-to-market-price-to-year-2020-realized-price-ratio-1p" | "date-to-from-3m-to-6m-realized-loss" | "date-to-shrimp-55p-price-paid" | "date-to-subsidy-1y-sum" | "date-to-from-1y-to-2y-realized-price-0-1p" | "date-to-liquid-05p-price-paid" | "date-to-market-price-to-up-to-1y-realized-price-ratio-99-5p" | "date-to-year-2016-realized-profit" | "date-to-year-2022-20p-price-paid" | "date-to-p2tr-realized-cap" | "date-to-market-price-to-up-to-1w-realized-price-ratio-1w-sma" | "date-to-from-7y-to-10y-realized-price-0-5p" | "date-to-up-to-10y-input-count" | "date-to-up-to-1w-supply-to-circulating-supply-ratio" | "date-to-market-price-to-p2pkh-realized-price-ratio-1p" | "date-to-p2pk-realized-price-99p" | "date-to-up-to-5m-value-created" | "date-to-year-2018-60p-price-paid" | "date-to-from-4y-85p-price-paid" | "date-to-year-2015-95p-price-paid" | "date-to-year-2019-05p-price-paid" | "date-to-spent-output-profit-ratio" | "date-to-from-7y-to-10y-20p-price-paid" | "date-to-up-to-15y-realized-cap-1m-net-change" | "date-to-from-1d-to-1w-30p-price-paid" | "date-to-year-2017-realized-price" | "date-to-up-to-15y-supply-in-profit-to-own-supply-ratio" | "date-to-from-2y-85p-price-paid" | "date-to-up-to-1d-input-count" | "date-to-year-2010-40p-price-paid" | "date-to-p2wpkh-realized-loss" | "date-to-from-2y-to-3y-realized-profit" | "date-to-p2pk-net-unrealized-profit-and-loss-to-market-cap-ratio" | "date-to-price-55d-sma-99-9p" | "date-to-year-2024-halved-supply-to-circulating-supply-ratio" | "date-to-close" | "date-to-up-to-15y-net-realized-profit-and-loss" | "date-to-year-2013-75p-price-paid" | "date-to-whale-65p-price-paid" | "date-to-up-to-2m-net-realized-profit-and-loss-to-market-cap-ratio" | "date-to-up-to-1y-55p-price-paid" | "date-to-market-price-to-up-to-4m-realized-price-ratio-1y-sma" | "date-to-year-2012-25p-price-paid" | "date-to-market-price-to-whale-realized-price-ratio-99-9p" | "date-to-year-2013-input-count" | "date-to-year-2021-realized-loss" | "date-to-market-price-to-from-1w-to-1m-realized-price-ratio-99-9p" | "date-to-from-2y-to-3y-supply-in-profit-to-circulating-supply-ratio" | "date-to-highly-liquid-utxo-count" | "date-to-p2wsh-65p-price-paid" | "date-to-market-price-to-p2pk-realized-price-ratio-1y-sma-momentum-oscillator" | "date-to-market-price-to-price-21d-sma-ratio-1m-sma" | "date-to-market-price-to-price-1w-sma-ratio-1w-sma" | "date-to-p2pk-net-unrealized-profit-and-loss" | "date-to-year-2020-realized-cap" | "date-to-up-to-15y-30p-price-paid" | "date-to-year-2020-85p-price-paid" | "date-to-plankton-net-realized-profit-and-loss-to-market-cap-ratio" | "date-to-year-2024-supply-in-loss-to-own-supply-ratio" | "date-to-from-6m-to-1y-realized-cap" | "date-to-from-2y-to-3y-net-unrealized-profit-and-loss" | "date-to-from-1w-to-1m-value-created" | "date-to-p2pk-unrealized-profit" | "date-to-from-10y-realized-price-99p" | "date-to-year-2022-10p-price-paid" | "date-to-lth-cumulative-net-realized-profit-and-loss" | "date-to-up-to-3m-input-volume" | "date-to-from-5y-to-7y-realized-price-99-9p" | "date-to-liquid-negative-realized-loss" | "date-to-p2pkh-utxo-count" | "date-to-from-4y-unrealized-loss" | "date-to-p2wpkh-30p-price-paid" | "date-to-p2sh-75p-price-paid" | "date-to-market-price-to-price-13d-sma-ratio-99-9p" | "date-to-from-10y-to-15y-25p-price-paid" | "date-to-market-price-to-p2wpkh-realized-price-ratio-0-1p" | "date-to-market-price-to-year-2016-realized-price-ratio-0-1p" | "date-to-market-price-to-year-2023-realized-price-ratio-1p" | "date-to-up-to-1m-realized-price-0-5p" | "date-to-transaction-velocity" | "date-to-up-to-1y-net-realized-profit-and-loss" | "date-to-from-15y-value-destroyed" | "date-to-from-1w-to-1m-negative-unrealized-loss" | "date-to-up-to-15y-25p-price-paid" | "date-to-up-to-1d-supply-in-loss-to-circulating-supply-ratio" | "date-to-year-2015-supply-in-loss" | "date-to-up-to-4m-negative-unrealized-loss" | "date-to-up-to-7y-value-created" | "date-to-up-to-3y-supply" | "date-to-from-3y-to-5y-supply-in-loss" | "date-to-up-to-2y-value-created" | "date-to-up-to-6m-value-destroyed" | "date-to-up-to-2y-30p-price-paid" | "date-to-year-2013-05p-price-paid" | "date-to-p2pkh-realized-price-99-5p" | "date-to-year-2020-net-realized-profit-and-loss-to-market-cap-ratio" | "date-to-from-10y-input-count" | "date-to-shark-cumulative-realized-profit" | "date-to-up-to-10y-05p-price-paid" | "date-to-from-3m-to-6m-80p-price-paid" | "date-to-year-2023-realized-price-0-1p" | "date-to-market-price-to-illiquid-realized-price-ratio-1y-sma" | "date-to-market-price-to-year-2016-realized-price-ratio-0-5p" | "date-to-up-to-2y-halved-supply-to-circulating-supply-ratio" | "date-to-up-to-2y-supply-in-profit" | "date-to-market-price-to-from-3m-to-6m-realized-price-ratio-1y-sma-momentum-oscillator" | "date-to-market-price-to-from-1w-to-1m-realized-price-ratio-1m-sma" | "date-to-year-2011-supply-in-profit" | "date-to-year-2024-realized-price-0-5p" | "date-to-from-1y-realized-cap-1m-net-change" | "date-to-year-2018-supply-in-loss-to-own-supply-ratio" | "date-to-market-price-to-liquid-realized-price-ratio-1w-sma" | "date-to-year-2021-realized-price" | "date-to-market-price-to-price-1y-sma-ratio-99p" | "date-to-from-1m-to-3m-75p-price-paid" | "date-to-from-1d-to-1w-realized-cap" | "date-to-market-price-to-up-to-4m-realized-price-ratio-1y-sma-momentum-oscillator" | "date-to-up-to-2y-85p-price-paid" | "date-to-p2sh-80p-price-paid" | "date-to-year-2012-cumulative-net-realized-profit-and-loss" | "date-to-up-to-2m-15p-price-paid" | "date-to-shark-30p-price-paid" | "date-to-crab-realized-price-99-5p" | "date-to-p2wpkh-halved-supply" | "date-to-from-3m-to-6m-value-destroyed" | "date-to-up-to-3m-net-realized-profit-and-loss" | "date-to-market-price-to-plankton-realized-price-ratio-1w-sma" | "date-to-market-price-to-up-to-5m-realized-price-ratio-1y-sma" | "date-to-p2sh-supply-to-circulating-supply-ratio" | "date-to-year-2014-realized-price" | "date-to-price-1y-sma-0-5p" | "date-to-year-2021-70p-price-paid" | "date-to-up-to-5m-negative-realized-loss" | "date-to-illiquid-supply-in-loss-to-own-supply-ratio" | "date-to-from-5y-to-7y-realized-cap"; +export type DatePath = "date-to-year-2015-supply-to-circulating-supply-ratio" | "date-to-market-price-to-price-8d-sma-ratio-1p" | "date-to-year-2009-supply" | "date-to-year-2016-net-realized-profit-and-loss" | "date-to-market-price-to-year-2019-realized-price-ratio-99-9p" | "date-to-market-price-to-up-to-7y-realized-price-ratio-99p" | "date-to-up-to-5y-95p-price-paid" | "date-to-year-2024-spent-output-profit-ratio" | "date-to-up-to-1d-sell-side-risk-ratio" | "date-to-up-to-3y-realized-price-0-5p" | "date-to-year-2014-30p-price-paid" | "date-to-from-1y-15p-price-paid" | "date-to-cointime-price" | "date-to-p2tr-net-realized-profit-and-loss" | "date-to-from-6m-to-1y-unrealized-profit" | "date-to-plankton-realized-price" | "date-to-market-price-to-year-2012-realized-price-ratio-99-5p" | "date-to-up-to-15y-70p-price-paid" | "date-to-up-to-7y-25p-price-paid" | "date-to-from-5y-to-7y-05p-price-paid" | "date-to-up-to-10y-utxo-count" | "date-to-from-1y-cumulative-net-realized-profit-and-loss" | "date-to-sth-70p-price-paid" | "date-to-from-1m-to-3m-adjusted-value-created" | "date-to-from-5y-to-7y-adjusted-value-destroyed" | "date-to-price-34d-sma-0-5p" | "date-to-year-2020-supply-in-loss-to-own-supply-ratio" | "date-to-up-to-1d-input-count" | "date-to-year-2017-net-realized-profit-and-loss" | "date-to-market-price-to-p2pkh-realized-price-ratio-1w-sma" | "date-to-up-to-10y-supply-in-loss" | "date-to-year-2012-75p-price-paid" | "date-to-from-6m-to-1y-adjusted-spent-output-profit-ratio" | "date-to-up-to-3y-30p-price-paid" | "date-to-market-price-to-from-2y-to-3y-realized-price-ratio-1p" | "date-to-from-1w-to-1m-25p-price-paid" | "date-to-year-2013-net-unrealized-profit-and-loss-to-market-cap-ratio" | "date-to-cointime-price-0-1p" | "date-to-drawdown" | "date-to-from-2y-to-3y-realized-price-99p" | "date-to-market-price-to-price-1y-sma-ratio-1w-sma" | "date-to-market-price-to-up-to-5y-realized-price-ratio-99-5p" | "date-to-p2tr-70p-price-paid" | "date-to-from-1d-to-1w-55p-price-paid" | "date-to-year-2009-net-realized-profit-and-loss" | "date-to-sth-median-price-paid" | "date-to-from-1y-to-2y-supply-in-profit" | "date-to-market-price-to-year-2017-realized-price-ratio-1p" | "date-to-year-2012-input-count" | "date-to-year-2014-input-count" | "date-to-from-1y-to-2y-supply-in-profit-to-own-supply-ratio" | "date-to-p2tr-95p-price-paid" | "date-to-year-2014-negative-unrealized-loss" | "date-to-from-7y-to-10y-value-destroyed" | "date-to-market-price-to-year-2022-realized-price-ratio-1w-sma" | "date-to-sth-halved-supply-to-circulating-supply-ratio" | "date-to-from-7y-to-10y-realized-price-0-1p" | "date-to-fish-20p-price-paid" | "date-to-from-15y-cumulative-realized-profit" | "date-to-up-to-1d-net-unrealized-profit-and-loss-to-market-cap-ratio" | "date-to-from-15y-realized-price-1p" | "date-to-up-to-3y-net-realized-profit-and-loss-to-market-cap-ratio" | "date-to-from-2y-to-3y-80p-price-paid" | "date-to-market-price-to-p2tr-realized-price-ratio" | "date-to-up-to-7y-realized-price-99-5p" | "date-to-market-price-to-lth-realized-price-ratio-1y-sma" | "date-to-block-vbytes-1d-average" | "date-to-up-to-3y-90p-price-paid" | "date-to-p2tr-net-unrealized-profit-and-loss" | "date-to-market-price-to-price-200w-sma-ratio-1m-sma" | "date-to-from-15y-realized-price-99-9p" | "date-to-market-price-to-highly-liquid-realized-price-ratio-1w-sma" | "date-to-market-price-to-shrimp-realized-price-ratio-1p" | "date-to-price-1y-sma-1p" | "date-to-year-2015-realized-cap" | "date-to-year-2018-85p-price-paid" | "date-to-market-price-to-realized-price-ratio-1w-sma" | "date-to-year-2015-adjusted-value-destroyed" | "date-to-year-2022-adjusted-spent-output-profit-ratio" | "date-to-market-price-to-price-4y-sma-ratio-0-1p" | "date-to-active-price-0-5p" | "date-to-from-7y-to-10y-realized-cap-1m-net-change" | "date-to-year-2024-input-count" | "date-to-year-2024-realized-price-0-5p" | "date-to-year-2023-median-price-paid" | "date-to-p2sh-cumulative-net-realized-profit-and-loss-1m-net-change" | "date-to-up-to-3m-input-volume" | "date-to-from-1m-to-3m-adjusted-value-destroyed" | "date-to-up-to-5y-negative-realized-loss" | "date-to-from-1d-to-1w-cumulative-realized-profit" | "date-to-from-10y-to-15y-realized-price-1p" | "date-to-megalodon-median-price-paid" | "date-to-from-5y-to-7y-65p-price-paid" | "date-to-market-price-to-price-8d-sma-ratio-1m-sma" | "date-to-p2pkh-negative-realized-loss" | "date-to-market-price-to-price-1y-sma-ratio-1m-sma" | "date-to-market-price-to-true-market-mean-ratio-1m-sma" | "date-to-humpback-realized-price-0-5p" | "date-to-market-price-to-up-to-7y-realized-price-ratio-99-9p" | "date-to-from-6m-to-1y-20p-price-paid" | "date-to-from-4y-supply-in-profit-to-own-supply-ratio" | "date-to-p2wsh-realized-cap-1m-net-change" | "date-to-whale-supply-in-loss-to-own-supply-ratio" | "date-to-market-price-to-megalodon-realized-price-ratio-1p" | "date-to-from-2y-to-3y-realized-price-99-5p" | "date-to-from-10y-to-15y-cumulative-realized-profit" | "date-to-market-price-to-megalodon-realized-price-ratio-1y-sma" | "date-to-from-10y-realized-price-1p" | "date-to-market-price-to-up-to-1y-realized-price-ratio-1p" | "date-to-up-to-4m-realized-price-0-1p" | "date-to-year-2013-35p-price-paid" | "date-to-year-2020-80p-price-paid" | "date-to-year-2010-supply-in-loss-to-circulating-supply-ratio" | "date-to-liquid-supply-in-profit" | "date-to-from-3y-to-5y-net-unrealized-profit-and-loss" | "date-to-from-1y-to-2y-supply-in-loss" | "date-to-up-to-1y-adjusted-value-destroyed" | "date-to-year-2014-65p-price-paid" | "date-to-up-to-1w-net-realized-profit-and-loss-to-market-cap-ratio" | "date-to-shrimp-supply-in-loss-to-own-supply-ratio" | "date-to-p2wsh-realized-value" | "date-to-market-price-to-shark-realized-price-ratio-99p" | "date-to-from-1y-input-volume" | "date-to-price-89d-sma-1p" | "date-to-up-to-1y-net-unrealized-profit-and-loss" | "date-to-year-2010-value-destroyed" | "date-to-plankton-net-unrealized-profit-and-loss" | "date-to-up-to-5y-cumulative-realized-profit" | "date-to-year-2014-unrealized-profit" | "date-to-year-2022-realized-value" | "date-to-from-10y-to-15y-realized-cap-1m-net-change" | "date-to-crab-net-unrealized-profit-and-loss-to-market-cap-ratio" | "date-to-from-2y-to-3y-70p-price-paid" | "date-to-from-15y-65p-price-paid" | "date-to-up-to-15y-realized-price-99-9p" | "date-to-liquid-supply-in-profit-to-circulating-supply-ratio" | "date-to-market-price-to-up-to-1d-realized-price-ratio-1p" | "date-to-from-15y-halved-supply-to-circulating-supply-ratio" | "date-to-illiquid-45p-price-paid" | "date-to-from-6m-to-1y-halved-supply" | "date-to-from-1y-20p-price-paid" | "date-to-from-3m-to-6m-input-volume" | "date-to-market-price-to-up-to-1d-realized-price-ratio-99-5p" | "date-to-market-price-to-vaulted-price-ratio-1y-sma-momentum-oscillator" | "date-to-market-price-to-from-4y-realized-price-ratio-1m-sma" | "date-to-p2wsh-supply-in-profit-to-own-supply-ratio" | "date-to-up-to-1d-supply-in-loss-to-circulating-supply-ratio" | "date-to-from-15y-negative-unrealized-loss" | "date-to-up-to-2y-input-volume" | "date-to-year-2017-supply-in-loss-to-own-supply-ratio" | "date-to-year-2012-10p-price-paid" | "date-to-year-2018-05p-price-paid" | "date-to-plankton-realized-value" | "date-to-illiquid-cumulative-net-realized-profit-and-loss" | "date-to-up-to-7y-supply-in-profit-to-circulating-supply-ratio" | "date-to-market-price-to-megalodon-realized-price-ratio" | "date-to-year-2014-10p-price-paid" | "date-to-year-2020-25p-price-paid" | "date-to-p2wpkh-realized-price" | "date-to-year-2018-realized-cap" | "date-to-from-6m-to-1y-net-realized-profit-and-loss-to-market-cap-ratio" | "date-to-year-2011-spent-output-profit-ratio" | "date-to-crab-20p-price-paid" | "date-to-from-2y-to-3y-supply-to-circulating-supply-ratio" | "date-to-market-price-to-up-to-2m-realized-price-ratio-0-1p" | "date-to-from-3m-to-6m-realized-cap" | "date-to-year-2015-input-count" | "date-to-market-price-to-cointime-price-ratio-1p" | "date-to-market-price-to-price-21d-sma-ratio-99p" | "date-to-up-to-1d-supply-in-loss-to-own-supply-ratio" | "date-to-up-to-1w-supply-in-loss" | "date-to-year-2011-halved-supply-to-circulating-supply-ratio" | "date-to-market-price-to-up-to-6m-realized-price-ratio-1w-sma" | "date-to-year-2009-15p-price-paid" | "date-to-p2pkh-80p-price-paid" | "date-to-market-price-to-megalodon-realized-price-ratio-0-1p" | "date-to-plankton-75p-price-paid" | "date-to-up-to-10y-realized-price-99-9p" | "date-to-liquid-sell-side-risk-ratio" | "date-to-p2sh-cumulative-net-realized-profit-and-loss" | "date-to-from-10y-to-15y-85p-price-paid" | "date-to-from-1m-to-3m-halved-supply" | "date-to-from-15y-70p-price-paid" | "date-to-p2wsh-value-destroyed" | "date-to-up-to-5m-65p-price-paid" | "date-to-90p-price-paid" | "date-to-from-2y-75p-price-paid" | "date-to-market-price-to-sth-realized-price-ratio-1m-sma" | "date-to-up-to-5y-20p-price-paid" | "date-to-year-2020-sell-side-risk-ratio" | "date-to-year-2021-15p-price-paid" | "date-to-price-2y-sma-99p" | "date-to-market-price-to-p2tr-realized-price-ratio-1y-sma-momentum-oscillator" | "date-to-up-to-1m-90p-price-paid" | "date-to-up-to-4m-realized-price-1p" | "date-to-year-2024-halved-supply" | "date-to-p2pk-25p-price-paid" | "date-to-market-price-to-price-1m-sma-ratio-1w-sma" | "date-to-p2wsh-net-realized-profit-and-loss-to-market-cap-ratio" | "date-to-from-2y-to-3y-cumulative-net-realized-profit-and-loss-1m-net-change" | "date-to-market-price-to-year-2010-realized-price-ratio" | "date-to-year-2017-60p-price-paid" | "date-to-from-1w-to-1m-median-price-paid" | "date-to-from-3y-to-5y-10p-price-paid" | "date-to-fish-realized-cap" | "date-to-from-7y-to-10y-input-count" | "date-to-sth-halved-supply" | "date-to-up-to-2y-realized-cap" | "date-to-year-2023-90p-price-paid" | "date-to-market-price-to-up-to-1y-realized-price-ratio-99p" | "date-to-year-2022-supply-in-loss" | "date-to-p2wpkh-10p-price-paid" | "date-to-up-to-1d-15p-price-paid" | "date-to-up-to-5m-utxo-count" | "date-to-crab-85p-price-paid" | "date-to-year-2013-supply" | "date-to-up-to-4m-utxo-count" | "date-to-from-1y-net-realized-profit-and-loss-to-market-cap-ratio" | "date-to-from-1y-to-2y-supply-in-loss-to-circulating-supply-ratio" | "date-to-market-price-to-from-1w-to-1m-realized-price-ratio-1y-sma" | "date-to-shrimp-90p-price-paid" | "date-to-from-1d-to-1w-net-realized-profit-and-loss-to-market-cap-ratio" | "date-to-p2tr-input-count" | "date-to-up-to-5m-realized-cap-1m-net-change" | "date-to-market-price-to-price-21d-sma-ratio" | "date-to-from-7y-to-10y-55p-price-paid" | "date-to-p2pkh-60p-price-paid" | "date-to-up-to-3y-realized-cap" | "date-to-p2sh-unrealized-profit" | "date-to-block-vbytes-1d-min" | "date-to-market-price-to-price-1w-sma-ratio-1y-sma" | "date-to-lth-value-destroyed" | "date-to-fish-supply-to-circulating-supply-ratio" | "date-to-market-price-to-liquid-realized-price-ratio-1p" | "date-to-up-to-1m-realized-price-0-1p" | "date-to-year-2022-supply-in-profit-to-circulating-supply-ratio" | "date-to-from-1d-to-1w-20p-price-paid" | "date-to-up-to-2m-realized-price-99-9p" | "date-to-year-2018-realized-price-0-1p" | "date-to-up-to-1w-input-volume" | "date-to-from-2y-supply-to-circulating-supply-ratio" | "date-to-highly-liquid-40p-price-paid" | "date-to-year-2011-25p-price-paid" | "date-to-from-2y-to-3y-30p-price-paid" | "date-to-year-2024-40p-price-paid" | "date-to-up-to-3y-adjusted-value-destroyed" | "date-to-market-price-to-year-2019-realized-price-ratio-0-1p" | "date-to-p2pk-85p-price-paid" | "date-to-year-2015-supply-in-profit-to-circulating-supply-ratio" | "date-to-up-to-3m-supply-in-loss-to-circulating-supply-ratio" | "date-to-p2sh-negative-unrealized-loss" | "date-to-up-to-6m-90p-price-paid" | "date-to-up-to-1d-supply" | "date-to-from-4y-supply-in-loss-to-own-supply-ratio" | "date-to-p2pk-30p-price-paid" | "date-to-up-to-5m-10p-price-paid" | "date-to-year-2009-value-destroyed" | "date-to-year-2012-60p-price-paid" | "date-to-shark-negative-realized-loss" | "date-to-year-2015-supply-in-loss-to-own-supply-ratio" | "date-to-from-10y-90p-price-paid" | "date-to-from-3y-to-5y-adjusted-value-created" | "date-to-year-2015-45p-price-paid" | "date-to-up-to-1d-unrealized-profit" | "date-to-year-2015-net-unrealized-profit-and-loss-to-market-cap-ratio" | "date-to-sth-cumulative-net-realized-profit-and-loss" | "date-to-up-to-15y-negative-realized-loss" | "date-to-year-2017-cumulative-realized-loss" | "date-to-year-2020-supply-in-profit" | "date-to-from-1y-30p-price-paid" | "date-to-year-2018-supply-in-profit-to-circulating-supply-ratio" | "date-to-up-to-7y-supply-in-profit" | "date-to-year-2014-20p-price-paid" | "date-to-from-1m-to-3m-realized-value" | "date-to-fish-65p-price-paid" | "date-to-p2wsh-supply-to-circulating-supply-ratio" | "date-to-from-3m-to-6m-15p-price-paid" | "date-to-shark-realized-price-1p" | "date-to-market-price-to-from-2y-realized-price-ratio-1w-sma" | "date-to-up-to-2y-unrealized-profit" | "date-to-p2pkh-10p-price-paid" | "date-to-up-to-5y-sell-side-risk-ratio" | "date-to-year-2016-net-unrealized-profit-and-loss" | "date-to-year-2018-35p-price-paid" | "date-to-year-2019-cumulative-net-realized-profit-and-loss-1m-net-change" | "date-to-market-price-to-from-2y-realized-price-ratio-99p" | "date-to-year-2020-60p-price-paid" | "date-to-year-2020-90p-price-paid" | "date-to-up-to-1w-realized-price-1p" | "date-to-year-2024-realized-price-99-5p" | "date-to-market-price-to-p2pk-realized-price-ratio-0-5p" | "date-to-from-15y-utxo-count" | "date-to-market-price-to-p2pkh-realized-price-ratio-1y-sma-momentum-oscillator" | "date-to-p2wsh-realized-profit" | "date-to-from-1d-to-1w-sell-side-risk-ratio" | "date-to-price-55d-sma-99-9p" | "date-to-up-to-1w-20p-price-paid" | "date-to-from-2y-to-3y-realized-price-99-9p" | "date-to-from-5y-to-7y-supply" | "date-to-from-10y-cumulative-realized-profit" | "date-to-from-7y-to-10y-negative-realized-loss" | "date-to-p2tr-25p-price-paid" | "date-to-liquid-realized-cap" | "date-to-market-price-to-year-2020-realized-price-ratio-1p" | "date-to-up-to-5y-realized-price" | "date-to-year-2016-supply-in-loss-to-own-supply-ratio" | "date-to-year-2023-spent-output-profit-ratio" | "date-to-from-2y-cumulative-realized-profit" | "date-to-shrimp-input-count" | "date-to-year-2021-05p-price-paid" | "date-to-whale-input-volume" | "date-to-market-price-to-up-to-2m-realized-price-ratio-1y-sma-momentum-oscillator" | "date-to-from-1w-to-1m-realized-price-99p" | "date-to-humpback-adjusted-spent-output-profit-ratio" | "date-to-from-7y-to-10y-realized-loss" | "date-to-market-price-to-up-to-1w-realized-price-ratio-0-1p" | "date-to-year-2014-median-price-paid" | "date-to-up-to-1w-70p-price-paid" | "date-to-from-1d-to-1w-supply-in-loss-to-circulating-supply-ratio" | "date-to-market-price-to-active-price-ratio-99-9p" | "date-to-sth-realized-price-0-1p" | "date-to-up-to-3y-unrealized-loss" | "date-to-year-2013-60p-price-paid" | "date-to-market-price-to-from-1y-to-2y-realized-price-ratio-99p" | "date-to-market-price-to-year-2015-realized-price-ratio-0-1p" | "date-to-from-7y-to-10y-85p-price-paid" | "date-to-market-price-to-year-2018-realized-price-ratio-1w-sma" | "date-to-from-3y-to-5y-median-price-paid" | "date-to-market-price-to-year-2019-realized-price-ratio-1y-sma" | "date-to-p2wsh-input-count" | "date-to-year-2020-unrealized-profit" | "date-to-from-1d-to-1w-net-unrealized-profit-and-loss" | "date-to-from-1d-to-1w-negative-unrealized-loss" | "date-to-highly-liquid-realized-cap" | "date-to-up-to-7y-input-count" | "date-to-price-89d-sma" | "date-to-from-2y-to-3y-realized-value" | "date-to-p2pk-negative-realized-loss" | "date-to-year-2020-input-count" | "date-to-humpback-55p-price-paid" | "date-to-p2sh-15p-price-paid" | "date-to-p2tr-net-realized-profit-and-loss-to-market-cap-ratio" | "date-to-last-subsidy" | "date-to-market-price-to-fish-realized-price-ratio-1p" | "date-to-up-to-1w-supply-in-loss-to-own-supply-ratio" | "date-to-illiquid-realized-price-0-1p" | "date-to-sth-value-destroyed" | "date-to-market-price-to-year-2012-realized-price-ratio-0-5p" | "date-to-year-2021-realized-price-1p" | "date-to-highly-liquid-supply-in-profit-to-own-supply-ratio" | "date-to-up-to-1w-net-unrealized-profit-and-loss-to-market-cap-ratio" | "date-to-lth-negative-realized-loss" | "date-to-shark-95p-price-paid" | "date-to-market-price-to-vaulted-price-ratio-1p" | "date-to-from-5y-to-7y-realized-price-0-5p" | "date-to-up-to-1w-40p-price-paid" | "date-to-year-2015-cumulative-net-realized-profit-and-loss" | "date-to-year-2019-supply-in-profit" | "date-to-from-2y-15p-price-paid" | "date-to-p2wsh-realized-price-0-1p" | "date-to-up-to-1w-95p-price-paid" | "date-to-year-2020-realized-price-99-5p" | "date-to-p2wsh-15p-price-paid" | "date-to-shrimp-unrealized-profit" | "date-to-up-to-1y-net-realized-profit-and-loss" | "date-to-up-to-2m-input-count" | "date-to-up-to-3y-15p-price-paid" | "date-to-up-to-5m-halved-supply" | "date-to-from-2y-to-3y-value-created" | "date-to-market-price-to-true-market-mean-ratio-1y-sma-momentum-oscillator" | "date-to-year-2019-55p-price-paid" | "date-to-year-2021-cumulative-realized-profit" | "date-to-from-5y-to-7y-input-volume" | "date-to-megalodon-75p-price-paid" | "date-to-year-2011-75p-price-paid" | "date-to-market-price-to-year-2024-realized-price-ratio-0-1p" | "date-to-price-13d-sma-1p" | "date-to-up-to-7y-net-realized-profit-and-loss-to-market-cap-ratio" | "date-to-whale-unrealized-loss" | "date-to-market-price-to-up-to-6m-realized-price-ratio-0-5p" | "date-to-year-2011-10p-price-paid" | "date-to-from-1m-to-3m-supply-in-loss" | "date-to-p2pkh-realized-cap-1m-net-change" | "date-to-from-1y-supply-in-profit" | "date-to-p2pkh-supply-in-loss" | "date-to-whale-realized-cap-1m-net-change" | "date-to-year-2012-25p-price-paid" | "date-to-sth-30p-price-paid" | "date-to-from-2y-realized-cap-1m-net-change" | "date-to-from-4y-net-realized-profit-and-loss" | "date-to-up-to-1m-sell-side-risk-ratio" | "date-to-from-4y-negative-unrealized-loss" | "date-to-year-2021-realized-profit" | "date-to-market-price-to-up-to-3m-realized-price-ratio-1y-sma-momentum-oscillator" | "date-to-up-to-2m-realized-price-99p" | "date-to-shrimp-halved-supply" | "date-to-year-2016-60p-price-paid" | "date-to-up-to-10y-10p-price-paid" | "date-to-from-7y-to-10y-40p-price-paid" | "date-to-from-3y-to-5y-realized-cap-1m-net-change" | "date-to-from-10y-40p-price-paid" | "date-to-p2tr-45p-price-paid" | "date-to-p2tr-median-price-paid" | "date-to-market-price-to-from-2y-realized-price-ratio-99-5p" | "date-to-illiquid-realized-cap-1m-net-change" | "date-to-year-2013-adjusted-spent-output-profit-ratio" | "date-to-price-2y-sma-1p" | "date-to-from-1w-to-1m-85p-price-paid" | "date-to-hash-rate-2m-sma" | "date-to-highly-liquid-adjusted-value-created" | "date-to-up-to-2y-realized-cap-1m-net-change" | "date-to-up-to-6m-net-unrealized-profit-and-loss" | "date-to-year-2016-cumulative-net-realized-profit-and-loss-1m-net-change" | "date-to-40p-price-paid" | "date-to-from-1m-to-3m-realized-price-99-5p" | "date-to-from-1d-to-1w-90p-price-paid" | "date-to-from-3y-to-5y-unrealized-profit" | "date-to-up-to-15y-halved-supply" | "date-to-up-to-1w-supply-in-profit" | "date-to-megalodon-cumulative-net-realized-profit-and-loss" | "date-to-from-4y-input-count" | "date-to-year-2021-adjusted-value-destroyed" | "date-to-year-2020-55p-price-paid" | "date-to-market-price-to-sth-realized-price-ratio-1y-sma-momentum-oscillator" | "date-to-up-to-3y-median-price-paid" | "date-to-market-price-to-p2sh-realized-price-ratio-0-5p" | "date-to-market-price-to-cointime-price-ratio-0-1p" | "date-to-up-to-2y-supply-in-profit" | "date-to-from-1y-to-2y-20p-price-paid" | "date-to-whale-supply-in-loss" | "date-to-p2wpkh-realized-price-0-1p" | "date-to-humpback-65p-price-paid" | "date-to-55p-price-paid" | "date-to-year-2021-70p-price-paid" | "date-to-up-to-5y-80p-price-paid" | "date-to-p2wsh-30p-price-paid" | "date-to-liquid-negative-unrealized-loss" | "date-to-from-1y-supply-in-loss-to-own-supply-ratio" | "date-to-transaction-volume" | "date-to-up-to-15y-input-volume" | "date-to-year-2014-realized-value" | "date-to-year-2020-supply-in-loss-to-circulating-supply-ratio" | "date-to-up-to-1y-realized-value" | "date-to-crab-10p-price-paid" | "date-to-fish-input-count" | "date-to-p2wpkh-realized-profit" | "date-to-block-vbytes-1d-25p" | "date-to-up-to-1d-realized-price-99-9p" | "date-to-up-to-1m-cumulative-realized-profit" | "date-to-shrimp-25p-price-paid" | "date-to-up-to-5m-95p-price-paid" | "date-to-year-2011-realized-price-0-1p" | "date-to-year-2023-25p-price-paid" | "date-to-year-2022-45p-price-paid" | "date-to-up-to-15y-supply-in-profit" | "date-to-lth-realized-value" | "date-to-up-to-3m-cumulative-realized-profit" | "date-to-from-1y-75p-price-paid" | "date-to-market-price-to-from-1y-to-2y-realized-price-ratio-99-9p" | "date-to-up-to-5m-supply" | "date-to-market-price-to-crab-realized-price-ratio-0-5p" | "date-to-year-2013-realized-loss" | "date-to-year-2020-adjusted-value-destroyed" | "date-to-illiquid-unrealized-loss" | "date-to-year-2010-realized-price-0-5p" | "date-to-market-price-to-price-89d-sma-ratio" | "date-to-year-2022-10p-price-paid" | "date-to-up-to-2m-realized-cap-1m-net-change" | "date-to-from-1d-to-1w-supply-in-profit" | "date-to-from-7y-to-10y-10p-price-paid" | "date-to-megalodon-spent-output-profit-ratio" | "date-to-year-2016-30p-price-paid" | "date-to-year-2010-cumulative-realized-loss" | "date-to-sth-05p-price-paid" | "date-to-market-price-to-from-1y-to-2y-realized-price-ratio" | "date-to-p2wpkh-90p-price-paid" | "date-to-year-2024-95p-price-paid" | "date-to-humpback-supply-in-profit-to-own-supply-ratio" | "date-to-megalodon-30p-price-paid" | "date-to-up-to-1m-realized-profit" | "date-to-up-to-3m-net-unrealized-profit-and-loss" | "date-to-year-2021-supply-in-loss-to-own-supply-ratio" | "date-to-from-3y-to-5y-realized-price" | "date-to-market-price-to-from-1d-to-1w-realized-price-ratio-1w-sma" | "date-to-from-4y-median-price-paid" | "date-to-market-price-to-liquid-realized-price-ratio-1y-sma" | "date-to-p2pk-supply-in-profit-to-own-supply-ratio" | "date-to-up-to-1d-05p-price-paid" | "date-to-year-2013-net-realized-profit-and-loss-to-market-cap-ratio" | "date-to-year-2016-realized-price-99p" | "date-to-year-2021-cumulative-realized-loss" | "date-to-year-2023-realized-value" | "date-to-lth-supply-in-profit-to-own-supply-ratio" | "date-to-year-2009-40p-price-paid" | "date-to-year-2009-spent-output-profit-ratio" | "date-to-year-2018-70p-price-paid" | "date-to-sth-90p-price-paid" | "date-to-market-price-to-year-2016-realized-price-ratio" | "date-to-from-1y-55p-price-paid" | "date-to-from-2y-25p-price-paid" | "date-to-from-1w-to-1m-sell-side-risk-ratio" | "date-to-coinbase-in-dollars-1y-sma" | "date-to-from-6m-to-1y-input-volume" | "date-to-market-price-to-up-to-1m-realized-price-ratio-0-5p" | "date-to-up-to-4m-75p-price-paid" | "date-to-up-to-2y-realized-value" | "date-to-market-price-to-from-2y-realized-price-ratio-0-1p" | "date-to-year-2014-05p-price-paid" | "date-to-year-2021-supply" | "date-to-year-2016-80p-price-paid" | "date-to-year-2015-70p-price-paid" | "date-to-from-3m-to-6m-60p-price-paid" | "date-to-p2pkh-25p-price-paid" | "date-to-year-2020-value-created" | "date-to-shark-unrealized-loss" | "date-to-up-to-3y-realized-price-99-5p" | "date-to-up-to-3m-60p-price-paid" | "date-to-illiquid-75p-price-paid" | "date-to-crab-negative-realized-loss" | "date-to-shrimp-realized-profit" | "date-to-liquid-cumulative-net-realized-profit-and-loss-1m-net-change" | "date-to-up-to-2y-95p-price-paid" | "date-to-up-to-4m-value-created" | "date-to-up-to-10y-supply-in-profit-to-own-supply-ratio" | "date-to-crab-negative-unrealized-loss" | "date-to-from-5y-to-7y-adjusted-spent-output-profit-ratio" | "date-to-shark-65p-price-paid" | "date-to-up-to-1y-85p-price-paid" | "date-to-megalodon-input-volume" | "date-to-from-7y-to-10y-45p-price-paid" | "date-to-year-2018-90p-price-paid" | "date-to-sth-realized-price" | "date-to-from-3y-to-5y-cumulative-realized-profit" | "date-to-block-size-1d-average" | "date-to-highly-liquid-10p-price-paid" | "date-to-from-15y-supply" | "date-to-from-2y-cumulative-realized-loss" | "date-to-sth-cumulative-net-realized-profit-and-loss-1m-net-change" | "date-to-up-to-2y-supply" | "date-to-up-to-1y-realized-price-1p" | "date-to-up-to-7y-75p-price-paid" | "date-to-from-4y-realized-cap-1m-net-change" | "date-to-year-2010-sell-side-risk-ratio" | "date-to-year-2018-halved-supply" | "date-to-up-to-7y-realized-price" | "date-to-market-price-to-up-to-1y-realized-price-ratio-0-5p" | "date-to-from-1y-05p-price-paid" | "date-to-p2sh-40p-price-paid" | "date-to-humpback-40p-price-paid" | "date-to-fish-cumulative-realized-loss" | "date-to-highly-liquid-realized-price-99p" | "date-to-year-2010-realized-profit" | "date-to-from-3m-to-6m-45p-price-paid" | "date-to-up-to-5m-45p-price-paid" | "date-to-up-to-3y-cumulative-realized-loss" | "date-to-year-2021-30p-price-paid" | "date-to-up-to-3y-unrealized-profit" | "date-to-year-2024-net-realized-profit-and-loss" | "date-to-market-price-to-year-2022-realized-price-ratio-1p" | "date-to-illiquid-80p-price-paid" | "date-to-market-price-to-from-5y-to-7y-realized-price-ratio-1m-sma" | "date-to-year-2024-supply-in-profit-to-own-supply-ratio" | "date-to-from-2y-to-3y-supply-in-loss-to-own-supply-ratio" | "date-to-year-2009-supply-to-circulating-supply-ratio" | "date-to-up-to-5y-45p-price-paid" | "date-to-from-10y-05p-price-paid" | "date-to-from-4y-05p-price-paid" | "date-to-lth-negative-unrealized-loss" | "date-to-up-to-3y-utxo-count" | "date-to-lth-35p-price-paid" | "date-to-year-2021-adjusted-spent-output-profit-ratio" | "date-to-year-2015-unrealized-loss" | "date-to-from-10y-to-15y-40p-price-paid" | "date-to-up-to-7y-40p-price-paid" | "date-to-market-price-to-fish-realized-price-ratio-99-5p" | "date-to-p2wsh-input-volume" | "date-to-up-to-5m-supply-in-profit" | "date-to-from-1y-70p-price-paid" | "date-to-year-2023-net-realized-profit-and-loss" | "date-to-market-price-to-shark-realized-price-ratio-1m-sma" | "date-to-up-to-6m-55p-price-paid" | "date-to-whale-25p-price-paid" | "date-to-highly-liquid-05p-price-paid" | "date-to-from-1d-to-1w-input-count" | "date-to-from-5y-to-7y-net-unrealized-profit-and-loss-to-market-cap-ratio" | "date-to-market-price-to-from-5y-to-7y-realized-price-ratio-99-9p" | "date-to-year-2011-supply-in-loss" | "date-to-year-2020-realized-price-99-9p" | "date-to-year-2012-supply-in-loss" | "date-to-blocks-mined-1w-sum" | "date-to-fees-in-dollars-1y-sum" | "date-to-from-7y-to-10y-70p-price-paid" | "date-to-market-price-to-p2pk-realized-price-ratio-1y-sma-momentum-oscillator" | "date-to-lth-80p-price-paid" | "date-to-last-height" | "date-to-up-to-3m-realized-price-99-9p" | "date-to-true-market-mean-99-5p" | "date-to-year-2012-halved-supply" | "date-to-year-2013-realized-price" | "date-to-year-2015-30p-price-paid" | "date-to-megalodon-realized-value" | "date-to-year-2011-95p-price-paid" | "date-to-year-2017-sell-side-risk-ratio" | "date-to-activity-to-vaultedness-ratio" | "date-to-up-to-2m-realized-price-1p" | "date-to-from-1y-adjusted-spent-output-profit-ratio" | "date-to-up-to-2y-cumulative-net-realized-profit-and-loss-1m-net-change" | "date-to-illiquid-cumulative-realized-loss" | "date-to-market-price-to-price-2y-sma-ratio-0-5p" | "date-to-market-price-to-from-1d-to-1w-realized-price-ratio-1m-sma" | "date-to-market-price-to-up-to-2m-realized-price-ratio-99-9p" | "date-to-from-2y-to-3y-realized-cap-1m-net-change" | "date-to-illiquid-halved-supply" | "date-to-from-7y-to-10y-cumulative-realized-loss" | "date-to-market-price-to-up-to-6m-realized-price-ratio-1y-sma-momentum-oscillator" | "date-to-up-to-1d-value-destroyed" | "date-to-from-1y-to-2y-45p-price-paid" | "date-to-market-price-to-sth-realized-price-ratio-1y-sma" | "date-to-up-to-2m-realized-price-99-5p" | "date-to-year-2009-realized-price" | "date-to-year-2020-supply-in-profit-to-own-supply-ratio" | "date-to-market-price-to-from-5y-to-7y-realized-price-ratio-1w-sma" | "date-to-market-price-to-up-to-4m-realized-price-ratio-1m-sma" | "date-to-up-to-10y-realized-loss" | "date-to-whale-realized-price-99p" | "date-to-from-5y-to-7y-10p-price-paid" | "date-to-lth-net-unrealized-profit-and-loss-to-market-cap-ratio" | "date-to-from-4y-adjusted-spent-output-profit-ratio" | "date-to-highly-liquid-spent-output-profit-ratio" | "date-to-up-to-1w-cumulative-net-realized-profit-and-loss-1m-net-change" | "date-to-liquid-80p-price-paid" | "date-to-crab-input-count" | "date-to-year-2009-realized-loss" | "date-to-whale-net-unrealized-profit-and-loss" | "date-to-empty-addresses" | "date-to-year-2017-95p-price-paid" | "date-to-sth-65p-price-paid" | "date-to-p2pkh-95p-price-paid" | "date-to-year-2021-net-unrealized-profit-and-loss-to-market-cap-ratio" | "date-to-market-price-to-from-1y-realized-price-ratio" | "date-to-from-2y-80p-price-paid" | "date-to-p2sh-realized-cap" | "date-to-price-13d-sma-99-5p" | "date-to-fish-85p-price-paid" | "date-to-up-to-3m-halved-supply" | "date-to-from-5y-to-7y-35p-price-paid" | "date-to-up-to-2m-10p-price-paid" | "date-to-year-2014-60p-price-paid" | "date-to-whale-supply-in-profit-to-own-supply-ratio" | "date-to-up-to-2y-median-price-paid" | "date-to-year-2014-input-volume" | "date-to-from-2y-supply-in-loss" | "date-to-from-3y-to-5y-95p-price-paid" | "date-to-up-to-2y-25p-price-paid" | "date-to-p2pkh-adjusted-spent-output-profit-ratio" | "date-to-up-to-5m-supply-in-profit-to-circulating-supply-ratio" | "date-to-price-8d-sma-0-1p" | "date-to-up-to-6m-realized-value" | "date-to-year-2010-realized-cap-1m-net-change" | "date-to-shrimp-05p-price-paid" | "date-to-year-2015-value-destroyed" | "date-to-year-2017-realized-price" | "date-to-vaulted-supply" | "date-to-year-2016-65p-price-paid" | "date-to-from-15y-35p-price-paid" | "date-to-market-price-to-p2wpkh-realized-price-ratio" | "date-to-year-2016-utxo-count" | "date-to-halved-supply-to-circulating-supply-ratio" | "date-to-up-to-10y-supply-in-loss-to-circulating-supply-ratio" | "date-to-year-2020-realized-cap-1m-net-change" | "date-to-all-time-high" | "date-to-humpback-75p-price-paid" | "date-to-market-price-to-price-2y-sma-ratio-1y-sma-momentum-oscillator" | "date-to-price-89d-sma-0-1p" | "date-to-year-2012-20p-price-paid" | "date-to-market-price-to-from-6m-to-1y-realized-price-ratio-1p" | "date-to-from-5y-to-7y-negative-realized-loss" | "date-to-realized-price-1p" | "date-to-from-4y-realized-price-99-5p" | "date-to-year-2024-35p-price-paid" | "date-to-crab-realized-price-0-1p" | "date-to-from-3m-to-6m-input-count" | "date-to-from-6m-to-1y-halved-supply-to-circulating-supply-ratio" | "date-to-market-price-to-from-10y-to-15y-realized-price-ratio-1y-sma" | "date-to-active-cap" | "date-to-shark-cumulative-net-realized-profit-and-loss" | "date-to-year-2011-55p-price-paid" | "date-to-year-2017-85p-price-paid" | "date-to-market-price-to-price-55d-sma-ratio-1y-sma-momentum-oscillator" | "date-to-year-2022-input-volume" | "date-to-year-2017-supply-in-loss" | "date-to-from-3y-to-5y-90p-price-paid" | "date-to-year-2015-realized-price-99p" | "date-to-market-price-to-price-1m-sma-ratio-1m-sma" | "date-to-market-price-to-up-to-1y-realized-price-ratio-99-5p" | "date-to-market-price-to-up-to-2m-realized-price-ratio-99-5p" | "date-to-producerness" | "date-to-year-2024-realized-price-0-1p" | "date-to-megalodon-realized-price-99-9p" | "date-to-from-4y-15p-price-paid" | "date-to-illiquid-supply" | "date-to-market-price-to-whale-realized-price-ratio-1m-sma" | "date-to-from-2y-adjusted-value-created" | "date-to-market-price-to-price-4y-sma-ratio-1m-sma" | "date-to-up-to-5y-net-realized-profit-and-loss-to-market-cap-ratio" | "date-to-year-2010-45p-price-paid" | "date-to-year-2013-30p-price-paid" | "date-to-highly-liquid-supply" | "date-to-market-price-to-fish-realized-price-ratio" | "date-to-plankton-cumulative-realized-loss" | "date-to-from-6m-to-1y-realized-cap" | "date-to-from-6m-to-1y-realized-price-99-9p" | "date-to-up-to-6m-negative-realized-loss" | "date-to-crab-utxo-count" | "date-to-market-price-to-from-1w-to-1m-realized-price-ratio-1w-sma" | "date-to-market-price-to-p2wsh-realized-price-ratio" | "date-to-market-price-to-price-34d-sma-ratio-1m-sma" | "date-to-p2sh-supply-in-profit-to-own-supply-ratio" | "date-to-up-to-3y-80p-price-paid" | "date-to-from-15y-realized-loss" | "date-to-p2pk-80p-price-paid" | "date-to-fish-median-price-paid" | "date-to-up-to-1d-supply-in-profit-to-own-supply-ratio" | "date-to-year-2019-cumulative-net-realized-profit-and-loss" | "date-to-from-1d-to-1w-70p-price-paid" | "date-to-up-to-3m-55p-price-paid" | "date-to-highly-liquid-20p-price-paid" | "date-to-year-2013-15p-price-paid" | "date-to-from-2y-unrealized-loss" | "date-to-from-6m-to-1y-45p-price-paid" | "date-to-up-to-6m-30p-price-paid" | "date-to-from-6m-to-1y-value-created" | "date-to-from-7y-to-10y-05p-price-paid" | "date-to-p2pk-realized-price-99-9p" | "date-to-year-2010-85p-price-paid" | "date-to-market-price-to-from-1m-to-3m-realized-price-ratio-0-5p" | "date-to-megalodon-realized-price" | "date-to-from-10y-to-15y-60p-price-paid" | "date-to-year-2024-65p-price-paid" | "date-to-p2wpkh-05p-price-paid" | "date-to-from-3y-to-5y-value-destroyed" | "date-to-year-2011-65p-price-paid" | "date-to-hash-price" | "date-to-market-price-to-price-34d-sma-ratio" | "date-to-up-to-1w-supply-in-loss-to-circulating-supply-ratio" | "date-to-year-2014-realized-profit" | "date-to-up-to-1m-net-unrealized-profit-and-loss" | "date-to-market-price-to-from-1y-realized-price-ratio-0-1p" | "date-to-lth-realized-price-99-5p" | "date-to-market-price-to-year-2011-realized-price-ratio-99p" | "date-to-market-price-to-from-2y-to-3y-realized-price-ratio-99-5p" | "date-to-market-price-to-from-7y-to-10y-realized-price-ratio-1y-sma" | "date-to-p2pk-supply" | "date-to-p2pkh-supply-to-circulating-supply-ratio" | "date-to-year-2023-cumulative-realized-loss" | "date-to-highly-liquid-85p-price-paid" | "date-to-up-to-7y-value-destroyed" | "date-to-up-to-15y-net-realized-profit-and-loss-to-market-cap-ratio" | "date-to-from-15y-adjusted-value-destroyed" | "date-to-year-2011-value-destroyed" | "date-to-85p-price-paid" | "date-to-year-2021-value-destroyed" | "date-to-year-2012-value-created" | "date-to-p2wsh-realized-price" | "date-to-liquid-realized-price-99p" | "date-to-crab-70p-price-paid" | "date-to-whale-45p-price-paid" | "date-to-humpback-realized-value" | "date-to-up-to-5m-realized-profit" | "date-to-year-2012-negative-realized-loss" | "date-to-p2wpkh-20p-price-paid" | "date-to-vaulted-price-99-5p" | "date-to-p2sh-realized-profit" | "date-to-from-1y-to-2y-negative-unrealized-loss" | "date-to-megalodon-net-realized-profit-and-loss-to-market-cap-ratio" | "date-to-up-to-1m-supply-in-profit" | "date-to-market-price-to-price-1w-sma-ratio" | "date-to-whale-realized-profit" | "date-to-thermo-cap" | "date-to-up-to-1y-cumulative-net-realized-profit-and-loss-1m-net-change" | "date-to-lth-net-unrealized-profit-and-loss" | "date-to-up-to-5m-30p-price-paid" | "date-to-year-2010-75p-price-paid" | "date-to-year-2009-realized-profit" | "date-to-year-2011-90p-price-paid" | "date-to-from-1d-to-1w-median-price-paid" | "date-to-from-3y-to-5y-realized-cap" | "date-to-humpback-90p-price-paid" | "date-to-shrimp-realized-price-1p" | "date-to-highly-liquid-negative-realized-loss" | "date-to-vaultedness" | "date-to-price-4y-compound-return" | "date-to-year-2016-10p-price-paid" | "date-to-illiquid-sell-side-risk-ratio" | "date-to-p2sh-85p-price-paid" | "date-to-sth-net-unrealized-profit-and-loss-to-market-cap-ratio" | "date-to-up-to-1w-supply-to-circulating-supply-ratio" | "date-to-humpback-realized-cap" | "date-to-year-2016-supply-in-loss-to-circulating-supply-ratio" | "date-to-crab-80p-price-paid" | "date-to-market-price-to-year-2016-realized-price-ratio-99-5p" | "date-to-year-2024-supply-to-circulating-supply-ratio" | "date-to-market-price-to-up-to-4m-realized-price-ratio-1p" | "date-to-from-10y-to-15y-realized-profit" | "date-to-market-price-to-from-6m-to-1y-realized-price-ratio-1y-sma" | "date-to-p2pkh-realized-cap" | "date-to-year-2013-realized-cap" | "date-to-year-2020-adjusted-spent-output-profit-ratio" | "date-to-year-2011-cumulative-realized-loss" | "date-to-from-3m-to-6m-85p-price-paid" | "date-to-humpback-15p-price-paid" | "date-to-market-price-to-active-price-ratio" | "date-to-price-1y-sma-0-5p" | "date-to-up-to-1w-realized-price" | "date-to-from-3m-to-6m-realized-price-99p" | "date-to-market-price-to-p2wsh-realized-price-ratio-1m-sma" | "date-to-market-price-to-up-to-2y-realized-price-ratio-1m-sma" | "date-to-p2pk-10p-price-paid" | "date-to-plankton-supply-in-profit-to-circulating-supply-ratio" | "date-to-up-to-2m-adjusted-value-destroyed" | "date-to-year-2016-45p-price-paid" | "date-to-year-2018-supply-in-loss" | "date-to-market-price-to-up-to-5y-realized-price-ratio-1y-sma" | "date-to-year-2020-realized-profit" | "date-to-year-2020-realized-price-0-1p" | "date-to-cointime-value-stored" | "date-to-crab-halved-supply" | "date-to-sth-supply-in-loss-to-own-supply-ratio" | "date-to-year-2020-utxo-count" | "date-to-market-price-to-sth-realized-price-ratio-99p" | "date-to-up-to-2y-45p-price-paid" | "date-to-year-2021-90p-price-paid" | "date-to-crab-90p-price-paid" | "date-to-last-coinbase-in-dollars" | "date-to-price-1y-total-return" | "date-to-up-to-10y-realized-price-1p" | "date-to-year-2011-supply-in-loss-to-circulating-supply-ratio" | "date-to-from-10y-spent-output-profit-ratio" | "date-to-up-to-7y-realized-cap" | "date-to-year-2011-realized-cap" | "date-to-illiquid-realized-price" | "date-to-p2tr-sell-side-risk-ratio" | "date-to-shark-value-created" | "date-to-up-to-3m-30p-price-paid" | "date-to-up-to-4m-85p-price-paid" | "date-to-year-2017-adjusted-value-destroyed" | "date-to-year-2013-20p-price-paid" | "date-to-year-2012-cumulative-realized-loss" | "date-to-year-2024-input-volume" | "date-to-humpback-net-realized-profit-and-loss-to-market-cap-ratio" | "date-to-from-1m-to-3m-cumulative-net-realized-profit-and-loss" | "date-to-from-1y-negative-realized-loss" | "date-to-up-to-7y-adjusted-value-created" | "date-to-year-2019-adjusted-value-created" | "date-to-year-2009-realized-price-99-9p" | "date-to-up-to-7y-60p-price-paid" | "date-to-price-144d-sma-0-5p" | "date-to-liquid-35p-price-paid" | "date-to-year-2018-realized-cap-1m-net-change" | "date-to-shark-net-unrealized-profit-and-loss-to-market-cap-ratio" | "date-to-lth-net-realized-profit-and-loss-to-market-cap-ratio" | "date-to-price-13d-sma" | "date-to-up-to-1m-supply-in-profit-to-own-supply-ratio" | "date-to-market-price-to-price-34d-sma-ratio-1p" | "date-to-from-15y-spent-output-profit-ratio" | "date-to-lth-net-realized-profit-and-loss" | "date-to-up-to-1y-utxo-count" | "date-to-humpback-address-count" | "date-to-from-1w-to-1m-supply-to-circulating-supply-ratio" | "date-to-p2wpkh-60p-price-paid" | "date-to-up-to-1m-cumulative-realized-loss" | "date-to-year-2010-supply-in-loss" | "date-to-market-price-to-from-1m-to-3m-realized-price-ratio-1y-sma" | "date-to-market-price-to-true-market-mean-ratio-99-9p" | "date-to-p2sh-sell-side-risk-ratio" | "date-to-shark-75p-price-paid" | "date-to-from-5y-to-7y-cumulative-net-realized-profit-and-loss" | "date-to-market-price-to-price-55d-sma-ratio-1w-sma" | "date-to-up-to-10y-40p-price-paid" | "date-to-from-1y-25p-price-paid" | "date-to-crab-30p-price-paid" | "date-to-year-2017-median-price-paid" | "date-to-from-7y-to-10y-95p-price-paid" | "date-to-from-1y-to-2y-adjusted-value-destroyed" | "date-to-market-cap" | "date-to-market-price-to-price-13d-sma-ratio-1y-sma" | "date-to-from-3m-to-6m-adjusted-value-created" | "date-to-shark-cumulative-realized-profit" | "date-to-up-to-7y-30p-price-paid" | "date-to-from-1y-to-2y-realized-price-99-5p" | "date-to-from-7y-to-10y-spent-output-profit-ratio" | "date-to-p2sh-80p-price-paid" | "date-to-sth-realized-cap" | "date-to-up-to-3m-85p-price-paid" | "date-to-market-price-to-from-1y-to-2y-realized-price-ratio-1y-sma" | "date-to-market-price-to-p2wpkh-realized-price-ratio-1y-sma" | "date-to-up-to-2m-adjusted-value-created" | "date-to-from-1y-cumulative-realized-profit" | "date-to-shrimp-35p-price-paid" | "date-to-up-to-3m-adjusted-value-destroyed" | "date-to-price-144d-sma-99p" | "date-to-up-to-3m-supply-in-profit-to-own-supply-ratio" | "date-to-market-price-to-lth-realized-price-ratio-0-5p" | "date-to-p2tr-realized-price-1p" | "date-to-whale-cumulative-realized-profit" | "date-to-year-2018-supply-in-profit-to-own-supply-ratio" | "date-to-year-2020-cumulative-realized-loss" | "date-to-lth-adjusted-value-destroyed" | "date-to-from-2y-to-3y-supply-in-loss" | "date-to-year-2021-cumulative-net-realized-profit-and-loss" | "date-to-year-2023-70p-price-paid" | "date-to-up-to-1y-supply-in-loss" | "date-to-market-price-to-price-34d-sma-ratio-1y-sma" | "date-to-up-to-5y-net-unrealized-profit-and-loss-to-market-cap-ratio" | "date-to-from-7y-to-10y-sell-side-risk-ratio" | "date-to-up-to-2m-halved-supply-to-circulating-supply-ratio" | "date-to-block-interval-1d-75p" | "date-to-market-price-to-crab-realized-price-ratio-99-5p" | "date-to-from-1y-to-2y-net-unrealized-profit-and-loss" | "date-to-p2tr-supply-in-loss-to-circulating-supply-ratio" | "date-to-humpback-80p-price-paid" | "date-to-year-2014-15p-price-paid" | "date-to-up-to-2m-unrealized-loss" | "date-to-30p-price-paid" | "date-to-true-market-mean-0-5p" | "date-to-from-6m-to-1y-supply-in-loss" | "date-to-from-10y-utxo-count" | "date-to-cumulative-coinbase-in-dollars" | "date-to-p2wpkh-net-realized-profit-and-loss-to-market-cap-ratio" | "date-to-market-price-to-up-to-3m-realized-price-ratio" | "date-to-price-2y-sma-99-9p" | "date-to-year-2019-supply-in-loss-to-circulating-supply-ratio" | "date-to-year-2019-value-destroyed" | "date-to-up-to-6m-value-destroyed" | "date-to-from-2y-negative-realized-loss" | "date-to-plankton-net-unrealized-profit-and-loss-to-market-cap-ratio" | "date-to-fish-realized-profit" | "date-to-year-2019-realized-cap-1m-net-change" | "date-to-up-to-1y-supply" | "date-to-from-1d-to-1w-80p-price-paid" | "date-to-from-1d-to-1w-supply-to-circulating-supply-ratio" | "date-to-market-price-to-up-to-10y-realized-price-ratio-0-1p" | "date-to-from-2y-to-3y-35p-price-paid" | "date-to-year-2012-halved-supply-to-circulating-supply-ratio" | "date-to-illiquid-95p-price-paid" | "date-to-megalodon-supply-to-circulating-supply-ratio" | "date-to-up-to-1d-cumulative-net-realized-profit-and-loss" | "date-to-plankton-input-count" | "date-to-up-to-5m-realized-value" | "date-to-year-2010-supply-in-loss-to-own-supply-ratio" | "date-to-up-to-3m-net-realized-profit-and-loss-to-market-cap-ratio" | "date-to-year-2016-05p-price-paid" | "date-to-coinblocks-created" | "date-to-year-2022-55p-price-paid" | "date-to-from-7y-to-10y-15p-price-paid" | "date-to-market-price-to-year-2014-realized-price-ratio-99p" | "date-to-from-6m-to-1y-supply" | "date-to-year-2010-utxo-count" | "date-to-p2sh-supply" | "date-to-year-2018-realized-value" | "date-to-price-2y-sma-99-5p" | "date-to-up-to-1d-net-realized-profit-and-loss-to-market-cap-ratio" | "date-to-up-to-7y-55p-price-paid" | "date-to-up-to-7y-negative-unrealized-loss" | "date-to-whale-adjusted-spent-output-profit-ratio" | "date-to-year-2012-cumulative-realized-profit" | "date-to-year-2016-cumulative-net-realized-profit-and-loss" | "date-to-from-5y-to-7y-supply-in-loss-to-own-supply-ratio" | "date-to-p2wpkh-15p-price-paid" | "date-to-p2wsh-unrealized-profit" | "date-to-year-2017-realized-price-99-5p" | "date-to-from-15y-85p-price-paid" | "date-to-shrimp-45p-price-paid" | "date-to-up-to-6m-70p-price-paid" | "date-to-p2tr-supply-in-profit-to-circulating-supply-ratio" | "date-to-market-price-to-from-2y-to-3y-realized-price-ratio-0-5p" | "date-to-price-34d-sma-99-9p" | "date-to-market-price-to-year-2010-realized-price-ratio-1w-sma" | "date-to-lth-realized-loss" | "date-to-market-price-to-p2sh-realized-price-ratio-99p" | "date-to-p2tr-cumulative-realized-loss" | "date-to-up-to-3m-25p-price-paid" | "date-to-year-2022-halved-supply" | "date-to-year-2009-supply-in-loss" | "date-to-from-3m-to-6m-realized-loss" | "date-to-from-5y-to-7y-realized-profit" | "date-to-up-to-1d-realized-price-99p" | "date-to-up-to-1y-realized-price-99-9p" | "date-to-from-10y-to-15y-supply-in-loss-to-circulating-supply-ratio" | "date-to-from-5y-to-7y-40p-price-paid" | "date-to-highly-liquid-net-realized-profit-and-loss-to-market-cap-ratio" | "date-to-up-to-1d-85p-price-paid" | "date-to-market-price-to-whale-realized-price-ratio-99p" | "date-to-lth-median-price-paid" | "date-to-p2sh-90p-price-paid" | "date-to-shrimp-cumulative-net-realized-profit-and-loss" | "date-to-from-1w-to-1m-net-realized-profit-and-loss" | "date-to-market-price-to-price-8d-sma-ratio" | "date-to-sth-60p-price-paid" | "date-to-up-to-1w-30p-price-paid" | "date-to-from-7y-to-10y-cumulative-net-realized-profit-and-loss" | "date-to-liveliness-net-change" | "date-to-year-2017-value-created" | "date-to-year-2011-halved-supply" | "date-to-from-4y-20p-price-paid" | "date-to-year-2016-supply-in-profit-to-own-supply-ratio" | "date-to-highly-liquid-value-destroyed" | "date-to-market-price-to-price-2y-sma-ratio" | "date-to-market-price-to-year-2023-realized-price-ratio-1p" | "date-to-price-4y-sma-99p" | "date-to-up-to-1d-value-created" | "date-to-up-to-1w-halved-supply" | "date-to-up-to-5m-adjusted-spent-output-profit-ratio" | "date-to-up-to-6m-spent-output-profit-ratio" | "date-to-sth-realized-cap-1m-net-change" | "date-to-up-to-5y-supply-in-profit-to-circulating-supply-ratio" | "date-to-whale-35p-price-paid" | "date-to-market-price-to-year-2015-realized-price-ratio-99-5p" | "date-to-from-6m-to-1y-75p-price-paid" | "date-to-market-price-to-up-to-1y-realized-price-ratio-1y-sma-momentum-oscillator" | "date-to-from-4y-net-unrealized-profit-and-loss" | "date-to-up-to-7y-supply" | "date-to-year-2009-net-unrealized-profit-and-loss-to-market-cap-ratio" | "date-to-from-10y-to-15y-value-created" | "date-to-from-4y-input-volume" | "date-to-price-8d-sma-99-9p" | "date-to-from-1y-to-2y-input-count" | "date-to-market-price-to-whale-realized-price-ratio-99-5p" | "date-to-market-price-to-p2wpkh-realized-price-ratio-0-1p" | "date-to-up-to-15y-15p-price-paid" | "date-to-up-to-1m-85p-price-paid" | "date-to-market-price-to-from-1d-to-1w-realized-price-ratio-0-5p" | "date-to-market-price-to-from-7y-to-10y-realized-price-ratio-0-5p" | "date-to-up-to-6m-supply-in-profit" | "date-to-year-2019-realized-cap" | "date-to-year-2020-net-unrealized-profit-and-loss-to-market-cap-ratio" | "date-to-market-price-to-from-2y-to-3y-realized-price-ratio" | "date-to-market-price-to-p2pk-realized-price-ratio-0-1p" | "date-to-market-price-to-highly-liquid-realized-price-ratio-99p" | "date-to-shrimp-halved-supply-to-circulating-supply-ratio" | "date-to-from-3y-to-5y-supply-in-profit" | "date-to-market-price-to-liquid-realized-price-ratio-99-9p" | "date-to-year-2024-realized-price-99p" | "date-to-from-6m-to-1y-realized-price-0-1p" | "date-to-humpback-negative-realized-loss" | "date-to-market-price-to-fish-realized-price-ratio-99p" | "date-to-market-price-to-lth-realized-price-ratio-0-1p" | "date-to-year-2011-cumulative-net-realized-profit-and-loss-1m-net-change" | "date-to-year-2023-realized-price-0-5p" | "date-to-market-price-to-year-2021-realized-price-ratio-99-9p" | "date-to-market-price-to-up-to-7y-realized-price-ratio-1p" | "date-to-up-to-2m-net-unrealized-profit-and-loss" | "date-to-from-1w-to-1m-45p-price-paid" | "date-to-from-6m-to-1y-15p-price-paid" | "date-to-up-to-1y-halved-supply" | "date-to-up-to-1m-cumulative-net-realized-profit-and-loss" | "date-to-up-to-4m-realized-price-99-9p" | "date-to-up-to-5m-35p-price-paid" | "date-to-market-price-to-up-to-10y-realized-price-ratio-1y-sma" | "date-to-up-to-10y-supply" | "date-to-up-to-1m-adjusted-value-destroyed" | "date-to-from-10y-to-15y-90p-price-paid" | "date-to-year-2024-unrealized-loss" | "date-to-sth-85p-price-paid" | "date-to-year-2022-realized-price-99-5p" | "date-to-from-2y-to-3y-unrealized-loss" | "date-to-market-price-to-active-price-ratio-1m-sma" | "date-to-market-price-to-up-to-4m-realized-price-ratio-1y-sma-momentum-oscillator" | "date-to-year-2009-cumulative-realized-profit" | "date-to-year-2011-85p-price-paid" | "date-to-up-to-4m-supply-in-loss-to-circulating-supply-ratio" | "date-to-from-3y-to-5y-net-realized-profit-and-loss" | "date-to-market-price-to-from-1w-to-1m-realized-price-ratio-99p" | "date-to-from-15y-input-count" | "date-to-up-to-6m-realized-profit" | "date-to-year-2010-80p-price-paid" | "date-to-year-2011-unrealized-loss" | "date-to-subsidy-1y-sum" | "date-to-last-fees-in-dollars" | "date-to-up-to-6m-05p-price-paid" | "date-to-fish-30p-price-paid" | "date-to-p2pkh-45p-price-paid" | "date-to-up-to-3y-input-volume" | "date-to-from-1y-unrealized-profit" | "date-to-from-3m-to-6m-cumulative-net-realized-profit-and-loss-1m-net-change" | "date-to-market-price-to-up-to-1d-realized-price-ratio-1y-sma" | "date-to-up-to-2m-net-unrealized-profit-and-loss-to-market-cap-ratio" | "date-to-up-to-4m-negative-realized-loss" | "date-to-from-2y-net-unrealized-profit-and-loss" | "date-to-from-1y-halved-supply" | "date-to-market-price-to-p2tr-realized-price-ratio-1w-sma" | "date-to-up-to-1y-realized-cap" | "date-to-market-price-to-from-3y-to-5y-realized-price-ratio-99-5p" | "date-to-from-10y-to-15y-realized-price-0-1p" | "date-to-from-1w-to-1m-realized-loss" | "date-to-from-10y-to-15y-realized-loss" | "date-to-market-price-to-plankton-realized-price-ratio" | "date-to-from-10y-to-15y-65p-price-paid" | "date-to-liquid-05p-price-paid" | "date-to-market-price-to-year-2021-realized-price-ratio-99p" | "date-to-up-to-1y-realized-cap-1m-net-change" | "date-to-year-2017-net-realized-profit-and-loss-to-market-cap-ratio" | "date-to-active-price" | "date-to-fish-utxo-count" | "date-to-from-1w-to-1m-realized-price-0-1p" | "date-to-market-price-to-whale-realized-price-ratio-1y-sma-momentum-oscillator" | "date-to-market-price-to-year-2022-realized-price-ratio-99p" | "date-to-cointime-value-destroyed" | "date-to-negative-unrealized-loss" | "date-to-year-2024-cumulative-net-realized-profit-and-loss" | "date-to-year-2024-value-created" | "date-to-from-5y-to-7y-cumulative-realized-profit" | "date-to-up-to-6m-75p-price-paid" | "date-to-from-1d-to-1w-supply" | "date-to-from-1y-to-2y-value-destroyed" | "date-to-from-1y-10p-price-paid" | "date-to-up-to-1y-cumulative-realized-loss" | "date-to-transactions-per-second-1m-sma" | "date-to-up-to-3y-supply-in-profit" | "date-to-from-3m-to-6m-65p-price-paid" | "date-to-market-price-to-year-2013-realized-price-ratio-1w-sma" | "date-to-from-1y-adjusted-value-destroyed" | "date-to-from-2y-sell-side-risk-ratio" | "date-to-from-7y-to-10y-median-price-paid" | "date-to-market-price-to-from-15y-realized-price-ratio-1y-sma" | "date-to-p2wsh-net-unrealized-profit-and-loss" | "date-to-from-5y-to-7y-supply-in-profit-to-own-supply-ratio" | "date-to-up-to-2m-realized-value" | "date-to-up-to-4m-15p-price-paid" | "date-to-humpback-utxo-count" | "date-to-year-2011-realized-price-99-9p" | "date-to-up-to-15y-supply-in-loss-to-circulating-supply-ratio" | "date-to-year-2013-65p-price-paid" | "date-to-fish-supply-in-loss" | "date-to-market-price-to-from-1d-to-1w-realized-price-ratio-1y-sma-momentum-oscillator" | "date-to-up-to-10y-60p-price-paid" | "date-to-up-to-1d-negative-unrealized-loss" | "date-to-year-2010-realized-value" | "date-to-up-to-5m-85p-price-paid" | "date-to-market-price-to-year-2020-realized-price-ratio-0-5p" | "date-to-market-price-to-year-2018-realized-price-ratio-1y-sma" | "date-to-adjusted-value-destroyed" | "date-to-crab-unrealized-loss" | "date-to-from-10y-to-15y-supply-to-circulating-supply-ratio" | "date-to-market-price-to-p2sh-realized-price-ratio-1w-sma" | "date-to-highly-liquid-35p-price-paid" | "date-to-from-3y-to-5y-15p-price-paid" | "date-to-liveliness-net-change-2w-median" | "date-to-fish-value-destroyed" | "date-to-up-to-15y-60p-price-paid" | "date-to-p2wpkh-95p-price-paid" | "date-to-market-price-to-vaulted-price-ratio-1y-sma" | "date-to-liquid-realized-price-99-5p" | "date-to-up-to-1d-input-volume" | "date-to-year-2017-40p-price-paid" | "date-to-p2sh-value-created" | "date-to-up-to-1d-25p-price-paid" | "date-to-up-to-3m-40p-price-paid" | "date-to-from-1w-to-1m-input-count" | "date-to-from-1m-to-3m-55p-price-paid" | "date-to-market-price-to-from-1m-to-3m-realized-price-ratio-0-1p" | "date-to-from-1m-to-3m-net-realized-profit-and-loss" | "date-to-highly-liquid-supply-in-profit" | "date-to-market-price-to-true-market-mean-ratio-1p" | "date-to-up-to-2m-cumulative-realized-loss" | "date-to-up-to-2m-supply" | "date-to-p2wpkh-adjusted-spent-output-profit-ratio" | "date-to-lth-realized-price-0-1p" | "date-to-up-to-6m-supply-in-loss" | "date-to-year-2011-cumulative-net-realized-profit-and-loss" | "date-to-from-1d-to-1w-halved-supply-to-circulating-supply-ratio" | "date-to-market-price-to-year-2011-realized-price-ratio" | "date-to-up-to-10y-90p-price-paid" | "date-to-up-to-5m-70p-price-paid" | "date-to-sth-25p-price-paid" | "date-to-shrimp-adjusted-value-destroyed" | "date-to-from-15y-80p-price-paid" | "date-to-sth-realized-price-99-5p" | "date-to-up-to-3m-realized-cap-1m-net-change" | "date-to-up-to-3y-realized-price-99p" | "date-to-supply" | "date-to-up-to-3y-supply-in-loss" | "date-to-year-2009-75p-price-paid" | "date-to-sth-sell-side-risk-ratio" | "date-to-liquid-40p-price-paid" | "date-to-year-2016-median-price-paid" | "date-to-year-2021-80p-price-paid" | "date-to-up-to-5m-input-volume" | "date-to-from-1w-to-1m-realized-profit" | "date-to-p2pk-supply-in-loss-to-own-supply-ratio" | "date-to-year-2021-negative-realized-loss" | "date-to-whale-70p-price-paid" | "date-to-market-price-to-from-6m-to-1y-realized-price-ratio-0-1p" | "date-to-year-2023-05p-price-paid" | "date-to-p2wpkh-halved-supply-to-circulating-supply-ratio" | "date-to-whale-net-unrealized-profit-and-loss-to-market-cap-ratio" | "date-to-from-5y-to-7y-realized-price-1p" | "date-to-up-to-1w-75p-price-paid" | "date-to-year-2015-realized-price-1p" | "date-to-from-6m-to-1y-input-count" | "date-to-market-price-to-up-to-1w-realized-price-ratio-99p" | "date-to-up-to-4m-realized-value" | "date-to-year-2018-realized-loss" | "date-to-up-to-15y-95p-price-paid" | "date-to-market-price-to-price-8d-sma-ratio-99-9p" | "date-to-market-price-to-from-1y-realized-price-ratio-0-5p" | "date-to-cointime-price-99-9p" | "date-to-market-price-to-price-144d-sma-ratio-1w-sma" | "date-to-up-to-10y-55p-price-paid" | "date-to-year-2014-halved-supply-to-circulating-supply-ratio" | "date-to-market-price-to-year-2016-realized-price-ratio-1y-sma" | "date-to-market-price-to-up-to-3m-realized-price-ratio-0-1p" | "date-to-market-price-to-year-2010-realized-price-ratio-1m-sma" | "date-to-up-to-7y-supply-to-circulating-supply-ratio" | "date-to-market-price-to-p2pk-realized-price-ratio-1w-sma" | "date-to-p2sh-net-realized-profit-and-loss" | "date-to-year-2011-realized-profit" | "date-to-up-to-10y-net-unrealized-profit-and-loss-to-market-cap-ratio" | "date-to-year-2015-15p-price-paid" | "date-to-year-2022-negative-realized-loss" | "date-to-crab-supply-in-loss-to-own-supply-ratio" | "date-to-market-price-to-p2pk-realized-price-ratio" | "date-to-market-price-to-year-2014-realized-price-ratio-1y-sma" | "date-to-from-4y-realized-profit" | "date-to-from-3m-to-6m-adjusted-value-destroyed" | "date-to-from-4y-40p-price-paid" | "date-to-yearly-inflation-rate" | "date-to-market-price-to-year-2014-realized-price-ratio-1w-sma" | "date-to-year-2015-adjusted-value-created" | "date-to-market-price-to-price-200w-sma-ratio-1p" | "date-to-plankton-supply-in-loss-to-circulating-supply-ratio" | "date-to-from-1w-to-1m-75p-price-paid" | "date-to-up-to-5y-realized-cap" | "date-to-year-2013-realized-profit" | "date-to-shark-supply-in-profit" | "date-to-year-2014-cumulative-realized-profit" | "date-to-year-2018-adjusted-value-created" | "date-to-market-price-to-price-55d-sma-ratio" | "date-to-up-to-1d-median-price-paid" | "date-to-active-supply-3m-net-change" | "date-to-liquid-realized-price" | "date-to-market-price-to-p2wsh-realized-price-ratio-1y-sma" | "date-to-market-price-to-year-2009-realized-price-ratio-1p" | "date-to-p2sh-realized-price-99p" | "date-to-up-to-1d-realized-value" | "date-to-from-1w-to-1m-supply-in-loss-to-circulating-supply-ratio" | "date-to-fish-net-unrealized-profit-and-loss-to-market-cap-ratio" | "date-to-up-to-2y-unrealized-loss" | "date-to-from-3m-to-6m-realized-price" | "date-to-p2tr-85p-price-paid" | "date-to-up-to-3m-realized-price-0-1p" | "date-to-year-2013-value-created" | "date-to-from-7y-to-10y-unrealized-loss" | "date-to-up-to-3y-25p-price-paid" | "date-to-up-to-3m-65p-price-paid" | "date-to-year-2013-halved-supply-to-circulating-supply-ratio" | "date-to-market-price-to-from-2y-realized-price-ratio-1p" | "date-to-market-price-to-up-to-1m-realized-price-ratio-1y-sma" | "date-to-megalodon-halved-supply-to-circulating-supply-ratio" | "date-to-market-price-to-up-to-4m-realized-price-ratio-99p" | "date-to-from-1d-to-1w-45p-price-paid" | "date-to-market-price-to-vaulted-price-ratio-1m-sma" | "date-to-year-2024-realized-price-1p" | "date-to-from-2y-to-3y-net-unrealized-profit-and-loss-to-market-cap-ratio" | "date-to-illiquid-cumulative-net-realized-profit-and-loss-1m-net-change" | "date-to-price-200w-sma-99p" | "date-to-year-2023-value-destroyed" | "date-to-up-to-2m-utxo-count" | "date-to-p2tr-adjusted-value-created" | "date-to-whale-65p-price-paid" | "date-to-year-2016-unrealized-profit" | "date-to-from-15y-supply-in-profit" | "date-to-market-price-to-from-3y-to-5y-realized-price-ratio" | "date-to-from-10y-to-15y-35p-price-paid" | "date-to-from-6m-to-1y-unrealized-loss" | "date-to-liquid-realized-price-1p" | "date-to-up-to-5m-15p-price-paid" | "date-to-p2sh-net-unrealized-profit-and-loss-to-market-cap-ratio" | "date-to-year-2012-85p-price-paid" | "date-to-year-2015-supply" | "date-to-from-5y-to-7y-halved-supply" | "date-to-up-to-1y-net-unrealized-profit-and-loss-to-market-cap-ratio" | "date-to-from-7y-to-10y-input-volume" | "date-to-market-price-to-year-2017-realized-price-ratio-99-9p" | "date-to-1" | "date-to-fish-realized-loss" | "date-to-market-price-to-price-34d-sma-ratio-0-1p" | "date-to-p2wpkh-realized-price-99-9p" | "date-to-up-to-2y-supply-in-loss" | "date-to-highly-liquid-adjusted-value-destroyed" | "date-to-cointime-price-99p" | "date-to-year-2012-utxo-count" | "date-to-from-6m-to-1y-90p-price-paid" | "date-to-market-price-to-year-2019-realized-price-ratio-1y-sma-momentum-oscillator" | "date-to-up-to-2y-realized-price-99p" | "date-to-from-2y-to-3y-median-price-paid" | "date-to-year-2009-20p-price-paid" | "date-to-p2tr-90p-price-paid" | "date-to-45p-price-paid" | "date-to-from-15y-95p-price-paid" | "date-to-market-price-to-megalodon-realized-price-ratio-1m-sma" | "date-to-market-price-to-highly-liquid-realized-price-ratio-99-5p" | "date-to-market-price-to-price-1w-sma-ratio-0-1p" | "date-to-year-2010-net-realized-profit-and-loss" | "date-to-year-2016-supply-in-profit-to-circulating-supply-ratio" | "date-to-year-2019-input-volume" | "date-to-shrimp-supply-to-circulating-supply-ratio" | "date-to-humpback-supply-in-loss" | "date-to-year-2012-05p-price-paid" | "date-to-year-2016-35p-price-paid" | "date-to-up-to-4m-input-volume" | "date-to-market-price-to-up-to-3y-realized-price-ratio-1w-sma" | "date-to-p2pk-realized-cap-1m-net-change" | "date-to-year-2019-10p-price-paid" | "date-to-up-to-5y-realized-price-99p" | "date-to-from-10y-to-15y-supply-in-profit" | "date-to-from-2y-to-3y-20p-price-paid" | "date-to-plankton-unrealized-profit" | "date-to-from-1y-unrealized-loss" | "date-to-market-price-to-sth-realized-price-ratio-0-1p" | "date-to-whale-realized-price-99-5p" | "date-to-spent-output-profit-ratio" | "date-to-from-10y-55p-price-paid" | "date-to-whale-negative-realized-loss" | "date-to-from-1y-to-2y-25p-price-paid" | "date-to-up-to-15y-supply" | "date-to-year-2014-realized-price-99-5p" | "date-to-year-2017-realized-cap" | "date-to-market-price-to-year-2013-realized-price-ratio-1y-sma-momentum-oscillator" | "date-to-up-to-5y-net-unrealized-profit-and-loss" | "date-to-from-1m-to-3m-net-unrealized-profit-and-loss" | "date-to-market-price-to-from-1d-to-1w-realized-price-ratio-99-5p" | "date-to-market-price-to-realized-price-ratio-0-5p" | "date-to-market-price-to-year-2018-realized-price-ratio-1m-sma" | "date-to-market-price-to-megalodon-realized-price-ratio-1w-sma" | "date-to-realized-price-99p" | "date-to-shark-net-realized-profit-and-loss" | "date-to-market-price-to-price-13d-sma-ratio-1p" | "date-to-up-to-5m-90p-price-paid" | "date-to-up-to-6m-realized-cap-1m-net-change" | "date-to-market-price-to-p2pkh-realized-price-ratio-0-1p" | "date-to-market-price-to-from-6m-to-1y-realized-price-ratio-99-9p" | "date-to-year-2015-20p-price-paid" | "date-to-from-1m-to-3m-30p-price-paid" | "date-to-market-price-to-p2pkh-realized-price-ratio-99-5p" | "date-to-market-price-to-price-1y-sma-ratio-1y-sma-momentum-oscillator" | "date-to-p2tr-net-unrealized-profit-and-loss-to-market-cap-ratio" | "date-to-up-to-2y-negative-unrealized-loss" | "date-to-from-7y-to-10y-supply-in-profit" | "date-to-year-2014-realized-price-99p" | "date-to-market-price-to-price-1m-sma-ratio-99-9p" | "date-to-from-10y-net-realized-profit-and-loss" | "date-to-year-2017-realized-cap-1m-net-change" | "date-to-block-weight-1d-10p" | "date-to-from-10y-to-15y-cumulative-net-realized-profit-and-loss-1m-net-change" | "date-to-up-to-3m-realized-profit" | "date-to-up-to-5y-negative-unrealized-loss" | "date-to-from-2y-95p-price-paid" | "date-to-year-2024-supply-in-loss-to-circulating-supply-ratio" | "date-to-from-3y-to-5y-supply-in-profit-to-own-supply-ratio" | "date-to-liquid-net-realized-profit-and-loss-to-market-cap-ratio" | "date-to-block-interval-1d-25p" | "date-to-market-price-to-price-200w-sma-ratio-99-9p" | "date-to-market-price-to-price-89d-sma-ratio-99-5p" | "date-to-p2wsh-25p-price-paid" | "date-to-market-price-to-from-4y-realized-price-ratio" | "date-to-market-price-to-p2wpkh-realized-price-ratio-99-9p" | "date-to-from-10y-to-15y-realized-price-99-5p" | "date-to-p2pkh-realized-price-99-9p" | "date-to-market-price-to-up-to-15y-realized-price-ratio-1y-sma-momentum-oscillator" | "date-to-year-2018-negative-unrealized-loss" | "date-to-market-price-to-crab-realized-price-ratio-0-1p" | "date-to-highly-liquid-value-created" | "date-to-market-price-to-from-15y-realized-price-ratio-1y-sma-momentum-oscillator" | "date-to-p2tr-realized-price-99p" | "date-to-year-2017-realized-price-0-5p" | "date-to-from-1w-to-1m-realized-price-99-5p" | "date-to-shark-spent-output-profit-ratio" | "date-to-up-to-2m-70p-price-paid" | "date-to-year-2014-40p-price-paid" | "date-to-megalodon-80p-price-paid" | "date-to-liquid-net-realized-profit-and-loss" | "date-to-market-price-to-year-2022-realized-price-ratio-99-9p" | "date-to-from-1y-to-2y-supply-to-circulating-supply-ratio" | "date-to-from-1d-to-1w-realized-cap" | "date-to-p2sh-realized-cap-1m-net-change" | "date-to-from-4y-adjusted-value-created" | "date-to-from-4y-realized-value" | "date-to-whale-supply-to-circulating-supply-ratio" | "date-to-year-2023-65p-price-paid" | "date-to-market-price-to-from-3y-to-5y-realized-price-ratio-1y-sma-momentum-oscillator" | "date-to-market-price-to-from-3y-to-5y-realized-price-ratio-1m-sma" | "date-to-market-price-to-p2pkh-realized-price-ratio-99-9p" | "date-to-market-price-to-up-to-3y-realized-price-ratio-1m-sma" | "date-to-market-price-to-price-21d-sma-ratio-0-1p" | "date-to-shrimp-65p-price-paid" | "date-to-year-2013-negative-unrealized-loss" | "date-to-year-2024-75p-price-paid" | "date-to-up-to-1d-65p-price-paid" | "date-to-from-15y-net-unrealized-profit-and-loss-to-market-cap-ratio" | "date-to-plankton-sell-side-risk-ratio" | "date-to-year-2017-realized-price-0-1p" | "date-to-market-price-to-highly-liquid-realized-price-ratio" | "date-to-liquid-median-price-paid" | "date-to-market-price-to-up-to-1m-realized-price-ratio-99-9p" | "date-to-shrimp-supply-in-loss" | "date-to-from-1y-to-2y-05p-price-paid" | "date-to-up-to-1m-15p-price-paid" | "date-to-up-to-1w-negative-realized-loss" | "date-to-year-2018-net-unrealized-profit-and-loss" | "date-to-year-2019-spent-output-profit-ratio" | "date-to-from-10y-to-15y-negative-unrealized-loss" | "date-to-up-to-2y-35p-price-paid" | "date-to-illiquid-supply-in-loss-to-own-supply-ratio" | "date-to-liquid-adjusted-value-destroyed" | "date-to-megalodon-85p-price-paid" | "date-to-up-to-6m-halved-supply-to-circulating-supply-ratio" | "date-to-market-price-to-up-to-15y-realized-price-ratio" | "date-to-plankton-15p-price-paid" | "date-to-from-10y-to-15y-net-unrealized-profit-and-loss-to-market-cap-ratio" | "date-to-market-price-to-humpback-realized-price-ratio-1w-sma" | "date-to-year-2016-adjusted-value-created" | "date-to-market-price-to-from-6m-to-1y-realized-price-ratio-1y-sma-momentum-oscillator" | "date-to-year-2017-spent-output-profit-ratio" | "date-to-year-2023-30p-price-paid" | "date-to-from-1m-to-3m-25p-price-paid" | "date-to-market-price-to-from-1y-to-2y-realized-price-ratio-99-5p" | "date-to-from-7y-to-10y-halved-supply" | "date-to-shark-30p-price-paid" | "date-to-up-to-15y-unrealized-loss" | "date-to-from-2y-to-3y-input-volume" | "date-to-whale-halved-supply" | "date-to-fish-input-volume" | "date-to-from-15y-90p-price-paid" | "date-to-up-to-3m-supply-in-loss" | "date-to-market-price-to-up-to-1w-realized-price-ratio-1w-sma" | "date-to-65p-price-paid" | "date-to-from-1w-to-1m-net-realized-profit-and-loss-to-market-cap-ratio" | "date-to-true-market-mean-0-1p" | "date-to-from-10y-60p-price-paid" | "date-to-humpback-unrealized-profit" | "date-to-market-price-to-up-to-15y-realized-price-ratio-99-9p" | "date-to-market-price-to-year-2014-realized-price-ratio-0-1p" | "date-to-market-price-to-up-to-3y-realized-price-ratio-0-1p" | "date-to-p2tr-80p-price-paid" | "date-to-fish-70p-price-paid" | "date-to-p2pkh-30p-price-paid" | "date-to-market-price-to-from-3m-to-6m-realized-price-ratio-1p" | "date-to-market-price-to-year-2020-realized-price-ratio-99-5p" | "date-to-cointime-adjusted-velocity" | "date-to-cointime-price-99-5p" | "date-to-plankton-realized-price-99p" | "date-to-up-to-10y-adjusted-value-destroyed" | "date-to-up-to-1w-realized-price-99p" | "date-to-p2pkh-realized-price-0-5p" | "date-to-up-to-7y-realized-price-1p" | "date-to-year-2010-realized-price-99-9p" | "date-to-year-2013-input-volume" | "date-to-year-2014-net-unrealized-profit-and-loss-to-market-cap-ratio" | "date-to-market-price-to-price-144d-sma-ratio-0-1p" | "date-to-year-2015-realized-price-0-1p" | "date-to-market-price-to-from-1y-realized-price-ratio-1y-sma-momentum-oscillator" | "date-to-up-to-10y-realized-price-99-5p" | "date-to-year-2019-realized-price-0-1p" | "date-to-year-2013-25p-price-paid" | "date-to-up-to-2y-halved-supply-to-circulating-supply-ratio" | "date-to-year-2012-cumulative-net-realized-profit-and-loss-1m-net-change" | "date-to-year-2022-value-destroyed" | "date-to-from-10y-realized-price" | "date-to-year-2024-85p-price-paid" | "date-to-up-to-3m-realized-value" | "date-to-from-2y-90p-price-paid" | "date-to-market-price-to-true-market-mean-ratio-99-5p" | "date-to-from-3m-to-6m-realized-price-1p" | "date-to-year-2009-85p-price-paid" | "date-to-year-2017-10p-price-paid" | "date-to-year-2023-supply-in-profit-to-circulating-supply-ratio" | "date-to-market-price-to-up-to-10y-realized-price-ratio-0-5p" | "date-to-market-price-to-from-1d-to-1w-realized-price-ratio" | "date-to-crab-supply-in-loss" | "date-to-from-1w-to-1m-spent-output-profit-ratio" | "date-to-from-6m-to-1y-40p-price-paid" | "date-to-highly-liquid-utxo-count" | "date-to-illiquid-30p-price-paid" | "date-to-shark-supply" | "date-to-market-price-to-up-to-5m-realized-price-ratio-99-5p" | "date-to-market-price-to-crab-realized-price-ratio-1w-sma" | "date-to-annualized-issuance" | "date-to-lth-cumulative-realized-profit" | "date-to-p2pk-net-unrealized-profit-and-loss" | "date-to-price-55d-sma-0-1p" | "date-to-up-to-3m-cumulative-net-realized-profit-and-loss-1m-net-change" | "date-to-up-to-5m-realized-price-99p" | "date-to-crab-adjusted-spent-output-profit-ratio" | "date-to-year-2014-45p-price-paid" | "date-to-year-2014-unrealized-loss" | "date-to-year-2022-median-price-paid" | "date-to-block-weight-1d-90p" | "date-to-from-5y-to-7y-95p-price-paid" | "date-to-price-1d-total-return" | "date-to-price-1w-sma-0-5p" | "date-to-year-2017-cumulative-net-realized-profit-and-loss-1m-net-change" | "date-to-from-10y-value-destroyed" | "date-to-up-to-1y-05p-price-paid" | "date-to-p2pkh-halved-supply-to-circulating-supply-ratio" | "date-to-plankton-spent-output-profit-ratio" | "date-to-up-to-15y-supply-in-loss" | "date-to-price-1w-sma-0-1p" | "date-to-market-price-to-year-2013-realized-price-ratio-99-5p" | "date-to-from-5y-to-7y-60p-price-paid" | "date-to-from-1y-realized-price-99-5p" | "date-to-whale-95p-price-paid" | "date-to-from-15y-supply-to-circulating-supply-ratio" | "date-to-p2wpkh-sell-side-risk-ratio" | "date-to-up-to-4m-realized-cap-1m-net-change" | "date-to-75p-price-paid" | "date-to-from-2y-to-3y-supply-in-profit-to-own-supply-ratio" | "date-to-price-21d-sma-99-5p" | "date-to-from-2y-supply-in-loss-to-circulating-supply-ratio" | "date-to-market-price-to-year-2015-realized-price-ratio-1m-sma" | "date-to-p2tr-40p-price-paid" | "date-to-from-4y-55p-price-paid" | "date-to-market-price-to-up-to-1y-realized-price-ratio-0-1p" | "date-to-p2wpkh-supply-to-circulating-supply-ratio" | "date-to-up-to-7y-value-created" | "date-to-year-2018-30p-price-paid" | "date-to-megalodon-40p-price-paid" | "date-to-market-price-to-year-2021-realized-price-ratio-1p" | "date-to-from-2y-realized-price-0-1p" | "date-to-market-price-to-crab-realized-price-ratio" | "date-to-market-price-to-up-to-2m-realized-price-ratio-1m-sma" | "date-to-year-2024-median-price-paid" | "date-to-market-price-to-shrimp-realized-price-ratio" | "date-to-year-2017-net-unrealized-profit-and-loss-to-market-cap-ratio" | "date-to-from-1d-to-1w-30p-price-paid" | "date-to-p2wpkh-net-unrealized-profit-and-loss" | "date-to-year-2019-negative-unrealized-loss" | "date-to-year-2024-adjusted-value-created" | "date-to-humpback-input-count" | "date-to-market-price-to-from-5y-to-7y-realized-price-ratio-0-1p" | "date-to-market-price-to-year-2014-realized-price-ratio-0-5p" | "date-to-p2wsh-cumulative-realized-profit" | "date-to-up-to-1w-unrealized-loss" | "date-to-up-to-3y-negative-realized-loss" | "date-to-up-to-4m-25p-price-paid" | "date-to-year-2024-90p-price-paid" | "date-to-megalodon-input-count" | "date-to-p2pk-value-created" | "date-to-price-21d-sma-0-1p" | "date-to-up-to-5m-input-count" | "date-to-year-2016-realized-cap" | "date-to-crab-35p-price-paid" | "date-to-year-2013-adjusted-value-destroyed" | "date-to-year-2021-supply-in-profit-to-own-supply-ratio" | "date-to-market-price-to-up-to-5y-realized-price-ratio-0-1p" | "date-to-plankton-utxo-count" | "date-to-year-2014-value-destroyed" | "date-to-year-2022-05p-price-paid" | "date-to-year-2016-negative-unrealized-loss" | "date-to-block-size-1d-10p" | "date-to-market-price-to-year-2023-realized-price-ratio-1y-sma" | "date-to-from-10y-adjusted-spent-output-profit-ratio" | "date-to-market-price-to-from-4y-realized-price-ratio-1y-sma-momentum-oscillator" | "date-to-from-10y-to-15y-20p-price-paid" | "date-to-year-2017-supply-to-circulating-supply-ratio" | "date-to-market-price-to-from-5y-to-7y-realized-price-ratio" | "date-to-up-to-5y-cumulative-realized-loss" | "date-to-from-1y-to-2y-realized-value" | "date-to-highly-liquid-cumulative-net-realized-profit-and-loss-1m-net-change" | "date-to-from-1y-to-2y-halved-supply" | "date-to-from-2y-to-3y-10p-price-paid" | "date-to-p2wsh-address-count" | "date-to-liquid-realized-profit" | "date-to-up-to-3m-realized-loss" | "date-to-market-price-to-illiquid-realized-price-ratio-99p" | "date-to-humpback-cumulative-realized-profit" | "date-to-year-2013-spent-output-profit-ratio" | "date-to-market-price-to-price-34d-sma-ratio-99p" | "date-to-market-price-to-up-to-5y-realized-price-ratio-99-9p" | "date-to-p2pk-unrealized-loss" | "date-to-up-to-1y-median-price-paid" | "date-to-from-10y-supply-in-loss" | "date-to-market-price-to-p2pk-realized-price-ratio-99-9p" | "date-to-market-price-to-from-3m-to-6m-realized-price-ratio-1y-sma" | "date-to-market-price-to-price-8d-sma-ratio-0-5p" | "date-to-up-to-4m-10p-price-paid" | "date-to-from-5y-to-7y-adjusted-value-created" | "date-to-year-2020-adjusted-value-created" | "date-to-from-1w-to-1m-40p-price-paid" | "date-to-illiquid-adjusted-value-created" | "date-to-true-market-mean-99-9p" | "date-to-from-10y-to-15y-realized-value" | "date-to-supply-in-profit" | "date-to-from-1y-90p-price-paid" | "date-to-from-4y-realized-price-99-9p" | "date-to-market-price-to-up-to-1y-realized-price-ratio-1y-sma" | "date-to-market-price-to-year-2020-realized-price-ratio" | "date-to-price-55d-sma-99p" | "date-to-up-to-5m-realized-price-99-9p" | "date-to-from-3m-to-6m-05p-price-paid" | "date-to-market-price-to-from-10y-realized-price-ratio-99-5p" | "date-to-from-4y-45p-price-paid" | "date-to-up-to-4m-cumulative-net-realized-profit-and-loss" | "date-to-market-price-to-year-2009-realized-price-ratio-1m-sma" | "date-to-market-price-to-price-34d-sma-ratio-1w-sma" | "date-to-up-to-1m-adjusted-spent-output-profit-ratio" | "date-to-from-10y-95p-price-paid" | "date-to-liquid-10p-price-paid" | "date-to-year-2021-net-realized-profit-and-loss" | "date-to-market-price-to-from-1w-to-1m-realized-price-ratio-99-5p" | "date-to-from-1m-to-3m-65p-price-paid" | "date-to-from-1w-to-1m-unrealized-profit" | "date-to-up-to-5m-cumulative-realized-profit" | "date-to-humpback-realized-price-1p" | "date-to-price-144d-sma-0-1p" | "date-to-market-price-to-shark-realized-price-ratio" | "date-to-up-to-1y-halved-supply-to-circulating-supply-ratio" | "date-to-crab-realized-profit" | "date-to-value-created" | "date-to-illiquid-net-realized-profit-and-loss" | "date-to-market-price-to-year-2018-realized-price-ratio-0-1p" | "date-to-from-1w-to-1m-realized-cap-1m-net-change" | "date-to-p2wpkh-cumulative-net-realized-profit-and-loss" | "date-to-year-2024-60p-price-paid" | "date-to-whale-supply-in-profit-to-circulating-supply-ratio" | "date-to-from-4y-10p-price-paid" | "date-to-market-price-to-p2wsh-realized-price-ratio-1w-sma" | "date-to-from-15y-75p-price-paid" | "date-to-p2pkh-cumulative-realized-profit" | "date-to-p2wpkh-70p-price-paid" | "date-to-p2pk-40p-price-paid" | "date-to-from-3y-to-5y-supply-to-circulating-supply-ratio" | "date-to-median-price-paid" | "date-to-market-price-to-illiquid-realized-price-ratio-1m-sma" | "date-to-from-10y-sell-side-risk-ratio" | "date-to-from-2y-realized-price-1p" | "date-to-from-5y-to-7y-negative-unrealized-loss" | "date-to-from-10y-to-15y-net-realized-profit-and-loss" | "date-to-p2wsh-median-price-paid" | "date-to-from-2y-to-3y-sell-side-risk-ratio" | "date-to-market-price-to-lth-realized-price-ratio-1y-sma-momentum-oscillator" | "date-to-vaulted-price-99-9p" | "date-to-highly-liquid-adjusted-spent-output-profit-ratio" | "date-to-market-price-to-from-10y-realized-price-ratio-1w-sma" | "date-to-utxo-count" | "date-to-year-2014-realized-price-99-9p" | "date-to-highly-liquid-realized-price-99-5p" | "date-to-year-2017-supply-in-loss-to-circulating-supply-ratio" | "date-to-from-1m-to-3m-80p-price-paid" | "date-to-shrimp-85p-price-paid" | "date-to-up-to-2y-adjusted-value-created" | "date-to-p2pkh-halved-supply" | "date-to-market-price-to-p2tr-realized-price-ratio-0-1p" | "date-to-fish-realized-price-0-5p" | "date-to-from-7y-to-10y-negative-unrealized-loss" | "date-to-market-price-to-plankton-realized-price-ratio-1m-sma" | "date-to-year-2017-20p-price-paid" | "date-to-from-1y-to-2y-spent-output-profit-ratio" | "date-to-year-2019-realized-profit" | "date-to-from-2y-negative-unrealized-loss" | "date-to-liquid-75p-price-paid" | "date-to-p2pkh-90p-price-paid" | "date-to-market-price-to-from-3m-to-6m-realized-price-ratio-1w-sma" | "date-to-market-price-to-from-15y-realized-price-ratio-0-1p" | "date-to-whale-unrealized-profit" | "date-to-from-1y-to-2y-realized-price-99-9p" | "date-to-block-interval-1d-90p" | "date-to-from-2y-halved-supply" | "date-to-price-34d-sma" | "date-to-year-2024-realized-value" | "date-to-up-to-5y-adjusted-value-destroyed" | "date-to-cointime-price-1p" | "date-to-from-1d-to-1w-unrealized-loss" | "date-to-vaulted-price-0-5p" | "date-to-year-2015-realized-loss" | "date-to-year-2017-net-unrealized-profit-and-loss" | "date-to-market-price-to-from-3m-to-6m-realized-price-ratio-0-5p" | "date-to-up-to-5y-supply-in-profit-to-own-supply-ratio" | "date-to-up-to-7y-adjusted-spent-output-profit-ratio" | "date-to-year-2011-adjusted-value-destroyed" | "date-to-from-2y-to-3y-value-destroyed" | "date-to-market-price-to-fish-realized-price-ratio-99-9p" | "date-to-year-2017-75p-price-paid" | "date-to-up-to-4m-supply-in-profit-to-circulating-supply-ratio" | "date-to-market-price-to-year-2018-realized-price-ratio-0-5p" | "date-to-up-to-1m-value-created" | "date-to-from-5y-to-7y-30p-price-paid" | "date-to-market-price-to-from-1m-to-3m-realized-price-ratio" | "date-to-market-price-to-year-2019-realized-price-ratio-1w-sma" | "date-to-shark-realized-price-0-1p" | "date-to-from-4y-realized-loss" | "date-to-from-1y-to-2y-realized-price-99p" | "date-to-market-price-to-year-2014-realized-price-ratio-99-9p" | "date-to-from-10y-supply-in-loss-to-own-supply-ratio" | "date-to-megalodon-65p-price-paid" | "date-to-market-price-to-price-200w-sma-ratio-0-1p" | "date-to-vaulted-supply-3m-net-change" | "date-to-p2pk-realized-price-0-1p" | "date-to-from-1y-value-created" | "date-to-from-3y-to-5y-30p-price-paid" | "date-to-from-5y-to-7y-median-price-paid" | "date-to-market-price-to-p2pk-realized-price-ratio-1p" | "date-to-market-price-to-p2pk-realized-price-ratio-99p" | "date-to-up-to-5y-utxo-count" | "date-to-market-price-to-from-3y-to-5y-realized-price-ratio-99-9p" | "date-to-year-2023-net-unrealized-profit-and-loss-to-market-cap-ratio" | "date-to-humpback-supply-to-circulating-supply-ratio" | "date-to-up-to-1m-net-unrealized-profit-and-loss-to-market-cap-ratio" | "date-to-up-to-5m-cumulative-net-realized-profit-and-loss-1m-net-change" | "date-to-year-2021-60p-price-paid" | "date-to-year-2012-realized-price-1p" | "date-to-from-3m-to-6m-unrealized-profit" | "date-to-market-price-to-price-1y-sma-ratio-1p" | "date-to-market-price-to-price-1y-sma-ratio" | "date-to-up-to-1w-55p-price-paid" | "date-to-from-6m-to-1y-supply-to-circulating-supply-ratio" | "date-to-p2pkh-realized-price" | "date-to-shrimp-40p-price-paid" | "date-to-shark-negative-unrealized-loss" | "date-to-market-price-to-fish-realized-price-ratio-1y-sma" | "date-to-p2wsh-cumulative-realized-loss" | "date-to-market-price-to-up-to-3y-realized-price-ratio-1y-sma-momentum-oscillator" | "date-to-up-to-10y-halved-supply" | "date-to-from-10y-value-created" | "date-to-up-to-3m-supply-in-profit" | "date-to-year-2012-net-unrealized-profit-and-loss-to-market-cap-ratio" | "date-to-year-2019-median-price-paid" | "date-to-cumulative-subsidy" | "date-to-whale-90p-price-paid" | "date-to-highly-liquid-cumulative-realized-profit" | "date-to-p2wsh-realized-price-0-5p" | "date-to-up-to-6m-utxo-count" | "date-to-market-price-to-up-to-6m-realized-price-ratio" | "date-to-from-1w-to-1m-adjusted-value-destroyed" | "date-to-humpback-30p-price-paid" | "date-to-price-21d-sma" | "date-to-up-to-1d-realized-cap-1m-net-change" | "date-to-up-to-4m-adjusted-value-destroyed" | "date-to-highly-liquid-net-realized-profit-and-loss" | "date-to-up-to-3m-realized-price-99-5p" | "date-to-from-3y-to-5y-05p-price-paid" | "date-to-from-1d-to-1w-halved-supply" | "date-to-year-2020-30p-price-paid" | "date-to-market-price-to-up-to-6m-realized-price-ratio-1p" | "date-to-from-1y-80p-price-paid" | "date-to-p2pk-net-realized-profit-and-loss-to-market-cap-ratio" | "date-to-year-2022-supply" | "date-to-address-count" | "date-to-up-to-3y-75p-price-paid" | "date-to-from-2y-to-3y-65p-price-paid" | "date-to-market-price-to-up-to-3y-realized-price-ratio-1y-sma" | "date-to-fish-supply-in-profit-to-own-supply-ratio" | "date-to-difficulty-adjustment" | "date-to-market-price-to-up-to-15y-realized-price-ratio-0-1p" | "date-to-sell-side-risk-ratio" | "date-to-whale-40p-price-paid" | "date-to-megalodon-value-destroyed" | "date-to-shark-adjusted-value-destroyed" | "date-to-from-1d-to-1w-spent-output-profit-ratio" | "date-to-input-count" | "date-to-from-3y-to-5y-negative-realized-loss" | "date-to-p2sh-halved-supply-to-circulating-supply-ratio" | "date-to-shark-15p-price-paid" | "date-to-up-to-2y-input-count" | "date-to-from-15y-unrealized-profit" | "date-to-up-to-7y-net-realized-profit-and-loss" | "date-to-year-2013-median-price-paid" | "date-to-year-2023-halved-supply" | "date-to-from-4y-70p-price-paid" | "date-to-p2wsh-65p-price-paid" | "date-to-unrealized-profit" | "date-to-year-2016-realized-value" | "date-to-p2pkh-realized-price-99p" | "date-to-year-2019-70p-price-paid" | "date-to-crab-95p-price-paid" | "date-to-year-2021-input-volume" | "date-to-from-4y-supply" | "date-to-year-2020-realized-price" | "date-to-from-3y-to-5y-realized-price-99p" | "date-to-from-5y-to-7y-realized-value" | "date-to-market-price-to-realized-price-ratio-99-9p" | "date-to-p2sh-60p-price-paid" | "date-to-market-price-to-p2pk-realized-price-ratio-1m-sma" | "date-to-whale-cumulative-net-realized-profit-and-loss-1m-net-change" | "date-to-year-2018-cumulative-realized-loss" | "date-to-p2tr-10p-price-paid" | "date-to-from-10y-input-volume" | "date-to-block-weight-1d-median" | "date-to-market-price-to-from-10y-to-15y-realized-price-ratio-1m-sma" | "date-to-market-price-to-humpback-realized-price-ratio-1p" | "date-to-market-price-to-p2wpkh-realized-price-ratio-1y-sma-momentum-oscillator" | "date-to-from-5y-to-7y-value-destroyed" | "date-to-market-price-to-shark-realized-price-ratio-0-1p" | "date-to-up-to-5y-90p-price-paid" | "date-to-year-2013-realized-price-99-5p" | "date-to-year-2024-supply" | "date-to-from-3m-to-6m-halved-supply-to-circulating-supply-ratio" | "date-to-from-1d-to-1w-realized-price-99-5p" | "date-to-up-to-3m-unrealized-profit" | "date-to-from-10y-85p-price-paid" | "date-to-year-2009-negative-unrealized-loss" | "date-to-from-6m-to-1y-net-unrealized-profit-and-loss-to-market-cap-ratio" | "date-to-up-to-10y-value-destroyed" | "date-to-from-1y-to-2y-55p-price-paid" | "date-to-from-10y-to-15y-10p-price-paid" | "date-to-blocks-mined-1w-sma" | "date-to-market-price-to-price-1y-sma-ratio-99-5p" | "date-to-year-2021-25p-price-paid" | "date-to-up-to-6m-adjusted-value-created" | "date-to-year-2012-unrealized-profit" | "date-to-year-2014-70p-price-paid" | "date-to-market-price-to-realized-price-ratio-99-5p" | "date-to-liquid-supply-in-loss-to-own-supply-ratio" | "date-to-up-to-4m-65p-price-paid" | "date-to-market-price-to-shrimp-realized-price-ratio-0-1p" | "date-to-year-2011-supply-in-profit-to-own-supply-ratio" | "date-to-up-to-2y-value-destroyed" | "date-to-crab-adjusted-value-destroyed" | "date-to-market-price-to-price-21d-sma-ratio-99-9p" | "date-to-liquid-90p-price-paid" | "date-to-from-5y-to-7y-supply-in-loss" | "date-to-year-2011-sell-side-risk-ratio" | "date-to-market-price-to-year-2013-realized-price-ratio-0-1p" | "date-to-from-2y-realized-price" | "date-to-plankton-net-realized-profit-and-loss" | "date-to-liquid-net-unrealized-profit-and-loss-to-market-cap-ratio" | "date-to-puell-multiple" | "date-to-from-2y-supply-in-profit-to-circulating-supply-ratio" | "date-to-humpback-realized-price" | "date-to-market-price-to-price-144d-sma-ratio-1p" | "date-to-up-to-6m-halved-supply" | "date-to-year-2023-cumulative-realized-profit" | "date-to-crab-cumulative-net-realized-profit-and-loss" | "date-to-market-price-to-price-21d-sma-ratio-1m-sma" | "date-to-market-price-to-from-1w-to-1m-realized-price-ratio-1m-sma" | "date-to-market-price-to-from-6m-to-1y-realized-price-ratio-1w-sma" | "date-to-market-price-to-up-to-1w-realized-price-ratio-1y-sma" | "date-to-from-1y-35p-price-paid" | "date-to-up-to-1y-spent-output-profit-ratio" | "date-to-from-6m-to-1y-median-price-paid" | "date-to-market-price-to-up-to-15y-realized-price-ratio-99p" | "date-to-market-price-to-up-to-1d-realized-price-ratio-1m-sma" | "date-to-megalodon-70p-price-paid" | "date-to-up-to-2m-supply-to-circulating-supply-ratio" | "date-to-up-to-2y-65p-price-paid" | "date-to-market-price-to-price-1y-sma-ratio-0-5p" | "date-to-year-2018-80p-price-paid" | "date-to-market-price-to-year-2010-realized-price-ratio-1y-sma" | "date-to-p2wsh-realized-price-1p" | "date-to-up-to-1m-supply-in-loss-to-circulating-supply-ratio" | "date-to-market-price-to-year-2024-realized-price-ratio-1y-sma-momentum-oscillator" | "date-to-from-10y-to-15y-supply" | "date-to-from-2y-85p-price-paid" | "date-to-from-6m-to-1y-supply-in-loss-to-circulating-supply-ratio" | "date-to-humpback-sell-side-risk-ratio" | "date-to-fish-net-realized-profit-and-loss" | "date-to-from-10y-to-15y-supply-in-profit-to-own-supply-ratio" | "date-to-from-1y-halved-supply-to-circulating-supply-ratio" | "date-to-market-price-to-up-to-15y-realized-price-ratio-1y-sma" | "date-to-p2pkh-realized-profit" | "date-to-supply-in-loss" | "date-to-up-to-3m-05p-price-paid" | "date-to-market-price-to-cointime-price-ratio-99p" | "date-to-market-price-to-illiquid-realized-price-ratio-1w-sma" | "date-to-from-5y-to-7y-spent-output-profit-ratio" | "date-to-price-2y-total-return" | "date-to-year-2009-10p-price-paid" | "date-to-from-15y-15p-price-paid" | "date-to-from-10y-80p-price-paid" | "date-to-shrimp-80p-price-paid" | "date-to-year-2012-realized-price-0-1p" | "date-to-from-1d-to-1w-10p-price-paid" | "date-to-from-1m-to-3m-realized-price-99p" | "date-to-from-2y-55p-price-paid" | "date-to-p2pkh-utxo-count" | "date-to-up-to-4m-realized-cap" | "date-to-market-price-to-price-1w-sma-ratio-99p" | "date-to-year-2018-net-realized-profit-and-loss" | "date-to-up-to-1w-85p-price-paid" | "date-to-market-price-to-price-13d-sma-ratio-99p" | "date-to-year-2015-halved-supply" | "date-to-from-3y-to-5y-40p-price-paid" | "date-to-from-1y-to-2y-net-unrealized-profit-and-loss-to-market-cap-ratio" | "date-to-market-price-to-from-3m-to-6m-realized-price-ratio-0-1p" | "date-to-shark-supply-to-circulating-supply-ratio" | "date-to-up-to-1m-realized-cap-1m-net-change" | "date-to-market-price-to-from-2y-to-3y-realized-price-ratio-1y-sma-momentum-oscillator" | "date-to-market-price-to-plankton-realized-price-ratio-1y-sma" | "date-to-p2tr-cumulative-realized-profit" | "date-to-from-1y-to-2y-35p-price-paid" | "date-to-from-1y-to-2y-adjusted-spent-output-profit-ratio" | "date-to-up-to-3y-supply-in-profit-to-own-supply-ratio" | "date-to-up-to-4m-45p-price-paid" | "date-to-up-to-5y-halved-supply" | "date-to-up-to-1m-realized-price-99-5p" | "date-to-from-3y-to-5y-input-count" | "date-to-price-200w-sma-1p" | "date-to-year-2019-sell-side-risk-ratio" | "date-to-blocks-mined-1y-target" | "date-to-market-price-to-realized-price-ratio" | "date-to-market-price-to-year-2015-realized-price-ratio-99-9p" | "date-to-up-to-5m-realized-price" | "date-to-from-10y-to-15y-05p-price-paid" | "date-to-illiquid-85p-price-paid" | "date-to-year-2011-supply-in-profit" | "date-to-year-2013-supply-in-profit-to-own-supply-ratio" | "date-to-up-to-4m-unrealized-loss" | "date-to-from-1y-to-2y-80p-price-paid" | "date-to-from-3m-to-6m-spent-output-profit-ratio" | "date-to-up-to-15y-cumulative-realized-profit" | "date-to-from-2y-20p-price-paid" | "date-to-supply-in-profit-to-own-supply-ratio" | "date-to-year-2009-cumulative-net-realized-profit-and-loss-1m-net-change" | "date-to-p2sh-95p-price-paid" | "date-to-from-15y-25p-price-paid" | "date-to-up-to-2m-30p-price-paid" | "date-to-year-2016-net-realized-profit-and-loss-to-market-cap-ratio" | "date-to-year-2021-unrealized-profit" | "date-to-year-2010-05p-price-paid" | "date-to-year-2019-halved-supply-to-circulating-supply-ratio" | "date-to-year-2024-realized-price" | "date-to-price-1y-sma-0-1p" | "date-to-net-realized-profit-and-loss-to-market-cap-ratio" | "date-to-illiquid-realized-price-0-5p" | "date-to-year-2011-70p-price-paid" | "date-to-humpback-85p-price-paid" | "date-to-p2wsh-supply" | "date-to-year-2009-median-price-paid" | "date-to-market-price-to-up-to-5y-realized-price-ratio-1m-sma" | "date-to-from-3m-to-6m-20p-price-paid" | "date-to-megalodon-supply-in-profit" | "date-to-crab-realized-price-99p" | "date-to-crab-input-volume" | "date-to-market-price-to-year-2012-realized-price-ratio-0-1p" | "date-to-up-to-5y-adjusted-spent-output-profit-ratio" | "date-to-market-price-to-up-to-2y-realized-price-ratio-99-5p" | "date-to-from-7y-to-10y-realized-price-1p" | "date-to-from-7y-to-10y-supply" | "date-to-sth-supply-in-profit" | "date-to-up-to-3m-15p-price-paid" | "date-to-plankton-value-created" | "date-to-year-2014-realized-price" | "date-to-from-3m-to-6m-95p-price-paid" | "date-to-market-price-to-up-to-1w-realized-price-ratio-99-9p" | "date-to-year-2016-15p-price-paid" | "date-to-from-7y-to-10y-utxo-count" | "date-to-p2wsh-cumulative-net-realized-profit-and-loss" | "date-to-shrimp-10p-price-paid" | "date-to-p2pk-90p-price-paid" | "date-to-market-price-to-from-10y-realized-price-ratio-0-1p" | "date-to-year-2016-adjusted-spent-output-profit-ratio" | "date-to-price-144d-sma-99-9p" | "date-to-from-1w-to-1m-unrealized-loss" | "date-to-market-price-to-from-1d-to-1w-realized-price-ratio-99p" | "date-to-shrimp-unrealized-loss" | "date-to-market-price-to-from-5y-to-7y-realized-price-ratio-99p" | "date-to-market-price-to-price-13d-sma-ratio-1m-sma" | "date-to-from-4y-supply-in-profit" | "date-to-liquid-cumulative-realized-profit" | "date-to-up-to-2m-80p-price-paid" | "date-to-market-price-to-price-13d-sma-ratio-99-5p" | "date-to-from-1w-to-1m-halved-supply" | "date-to-from-7y-to-10y-adjusted-value-created" | "date-to-market-price-to-up-to-3m-realized-price-ratio-99-9p" | "date-to-market-price-to-year-2018-realized-price-ratio-99-5p" | "date-to-year-2010-60p-price-paid" | "date-to-year-2018-40p-price-paid" | "date-to-market-price-to-plankton-realized-price-ratio-99p" | "date-to-up-to-4m-realized-loss" | "date-to-transaction-volume-in-dollars" | "date-to-year-2022-cumulative-net-realized-profit-and-loss-1m-net-change" | "date-to-illiquid-net-realized-profit-and-loss-to-market-cap-ratio" | "date-to-year-2023-20p-price-paid" | "date-to-illiquid-adjusted-value-destroyed" | "date-to-shrimp-15p-price-paid" | "date-to-year-2012-realized-price-99-9p" | "date-to-up-to-5m-realized-price-0-1p" | "date-to-market-price-to-price-4y-sma-ratio-1y-sma-momentum-oscillator" | "date-to-market-price-to-sth-realized-price-ratio-1p" | "date-to-market-price-to-year-2009-realized-price-ratio-1y-sma-momentum-oscillator" | "date-to-market-price-to-year-2017-realized-price-ratio-0-5p" | "date-to-up-to-2y-80p-price-paid" | "date-to-year-2019-utxo-count" | "date-to-market-price-to-from-7y-to-10y-realized-price-ratio" | "date-to-price-55d-sma-0-5p" | "date-to-from-10y-to-15y-negative-realized-loss" | "date-to-year-2014-value-created" | "date-to-p2pk-05p-price-paid" | "date-to-up-to-5y-10p-price-paid" | "date-to-year-2009-halved-supply" | "date-to-p2tr-65p-price-paid" | "date-to-market-price-to-from-1w-to-1m-realized-price-ratio-99-9p" | "date-to-shrimp-spent-output-profit-ratio" | "date-to-year-2016-75p-price-paid" | "date-to-year-2010-15p-price-paid" | "date-to-p2pkh-negative-unrealized-loss" | "date-to-from-10y-supply-in-loss-to-circulating-supply-ratio" | "date-to-from-5y-to-7y-unrealized-loss" | "date-to-from-7y-to-10y-90p-price-paid" | "date-to-plankton-negative-realized-loss" | "date-to-from-5y-to-7y-75p-price-paid" | "date-to-market-price-to-shark-realized-price-ratio-99-5p" | "date-to-market-price-to-price-13d-sma-ratio-1y-sma-momentum-oscillator" | "date-to-up-to-15y-adjusted-spent-output-profit-ratio" | "date-to-up-to-2m-unrealized-profit" | "date-to-up-to-5m-cumulative-realized-loss" | "date-to-year-2022-40p-price-paid" | "date-to-from-1w-to-1m-cumulative-net-realized-profit-and-loss-1m-net-change" | "date-to-market-price-to-up-to-6m-realized-price-ratio-99-9p" | "date-to-from-6m-to-1y-adjusted-value-created" | "date-to-up-to-1w-90p-price-paid" | "date-to-p2pkh-supply-in-profit-to-own-supply-ratio" | "date-to-highly-liquid-halved-supply-to-circulating-supply-ratio" | "date-to-p2wpkh-supply" | "date-to-market-price-to-price-55d-sma-ratio-99-9p" | "date-to-from-2y-to-3y-05p-price-paid" | "date-to-market-price-to-up-to-3y-realized-price-ratio-99-9p" | "date-to-p2sh-realized-value" | "date-to-up-to-5y-realized-price-0-5p" | "date-to-year-2015-supply-in-profit-to-own-supply-ratio" | "date-to-market-price-to-p2sh-realized-price-ratio-99-5p" | "date-to-market-price-to-up-to-5y-realized-price-ratio-1p" | "date-to-market-price-to-whale-realized-price-ratio-1p" | "date-to-plankton-05p-price-paid" | "date-to-up-to-1d-realized-price-0-5p" | "date-to-from-1m-to-3m-input-count" | "date-to-whale-halved-supply-to-circulating-supply-ratio" | "date-to-from-2y-to-3y-90p-price-paid" | "date-to-up-to-1w-05p-price-paid" | "date-to-year-2020-supply-in-profit-to-circulating-supply-ratio" | "date-to-lth-70p-price-paid" | "date-to-from-2y-10p-price-paid" | "date-to-market-price-to-up-to-1m-realized-price-ratio-0-1p" | "date-to-humpback-adjusted-value-destroyed" | "date-to-liquid-unrealized-profit" | "date-to-from-1d-to-1w-realized-loss" | "date-to-market-price-to-megalodon-realized-price-ratio-99-9p" | "date-to-from-1m-to-3m-realized-cap-1m-net-change" | "date-to-year-2009-realized-price-0-1p" | "date-to-year-2011-35p-price-paid" | "date-to-up-to-1d-utxo-count" | "date-to-highly-liquid-supply-in-loss-to-circulating-supply-ratio" | "date-to-market-price-to-up-to-7y-realized-price-ratio-1y-sma-momentum-oscillator" | "date-to-from-2y-to-3y-spent-output-profit-ratio" | "date-to-block-size-1d-25p" | "date-to-year-2010-realized-price-1p" | "date-to-year-2019-unrealized-profit" | "date-to-from-3m-to-6m-90p-price-paid" | "date-to-highly-liquid-supply-to-circulating-supply-ratio" | "date-to-market-price-to-liquid-realized-price-ratio" | "date-to-p2wsh-realized-cap" | "date-to-from-10y-to-15y-supply-in-loss-to-own-supply-ratio" | "date-to-market-price-to-up-to-5m-realized-price-ratio-99p" | "date-to-p2wsh-supply-in-profit" | "date-to-year-2016-realized-price-1p" | "date-to-shrimp-cumulative-net-realized-profit-and-loss-1m-net-change" | "date-to-year-2023-net-unrealized-profit-and-loss" | "date-to-up-to-10y-realized-price" | "date-to-fish-cumulative-realized-profit" | "date-to-humpback-45p-price-paid" | "date-to-p2sh-supply-in-loss" | "date-to-year-2015-realized-price-99-9p" | "date-to-up-to-5m-adjusted-value-destroyed" | "date-to-whale-sell-side-risk-ratio" | "date-to-year-2021-median-price-paid" | "date-to-year-2023-supply-in-loss-to-circulating-supply-ratio" | "date-to-year-2020-value-destroyed" | "date-to-from-1y-to-2y-utxo-count" | "date-to-liquid-spent-output-profit-ratio" | "date-to-market-price-to-from-1y-realized-price-ratio-1m-sma" | "date-to-p2wpkh-supply-in-profit-to-circulating-supply-ratio" | "date-to-year-2019-40p-price-paid" | "date-to-year-2022-realized-price-0-5p" | "date-to-market-price-to-p2pk-realized-price-ratio-1y-sma" | "date-to-p2sh-35p-price-paid" | "date-to-up-to-7y-unrealized-loss" | "date-to-year-2021-95p-price-paid" | "date-to-from-2y-to-3y-75p-price-paid" | "date-to-from-3y-to-5y-supply-in-loss-to-circulating-supply-ratio" | "date-to-up-to-1d-95p-price-paid" | "date-to-from-1w-to-1m-negative-realized-loss" | "date-to-p2sh-supply-in-loss-to-circulating-supply-ratio" | "date-to-whale-value-destroyed" | "date-to-market-price-to-highly-liquid-realized-price-ratio-0-5p" | "date-to-from-6m-to-1y-10p-price-paid" | "date-to-up-to-6m-10p-price-paid" | "date-to-year-2009-supply-in-profit" | "date-to-annualized-transaction-volume" | "date-to-year-2014-realized-loss" | "date-to-year-2019-cumulative-realized-profit" | "date-to-year-2023-realized-profit" | "date-to-up-to-15y-adjusted-value-destroyed" | "date-to-liquid-realized-cap-1m-net-change" | "date-to-from-1y-to-2y-realized-price-0-1p" | "date-to-year-2016-55p-price-paid" | "date-to-lth-25p-price-paid" | "date-to-market-price-to-liquid-realized-price-ratio-1y-sma-momentum-oscillator" | "date-to-year-2012-realized-profit" | "date-to-from-4y-value-created" | "date-to-market-price-to-up-to-6m-realized-price-ratio-1m-sma" | "date-to-up-to-1y-15p-price-paid" | "date-to-crab-spent-output-profit-ratio" | "date-to-market-price-to-year-2018-realized-price-ratio" | "date-to-from-10y-supply-to-circulating-supply-ratio" | "date-to-p2pkh-cumulative-net-realized-profit-and-loss-1m-net-change" | "date-to-p2pk-65p-price-paid" | "date-to-from-1m-to-3m-realized-price-0-1p" | "date-to-p2wsh-halved-supply" | "date-to-from-10y-to-15y-30p-price-paid" | "date-to-market-price-to-p2sh-realized-price-ratio-1y-sma-momentum-oscillator" | "date-to-year-2010-supply-in-profit-to-circulating-supply-ratio" | "date-to-supply-in-loss-to-circulating-supply-ratio" | "date-to-year-2021-75p-price-paid" | "date-to-year-2021-realized-price-99-9p" | "date-to-year-2017-cumulative-net-realized-profit-and-loss" | "date-to-from-4y-25p-price-paid" | "date-to-market-price-to-crab-realized-price-ratio-1y-sma" | "date-to-up-to-7y-80p-price-paid" | "date-to-market-price-to-price-8d-sma-ratio-1y-sma-momentum-oscillator" | "date-to-up-to-2y-75p-price-paid" | "date-to-from-10y-to-15y-75p-price-paid" | "date-to-from-7y-to-10y-realized-cap" | "date-to-realized-price" | "date-to-market-price-to-p2wsh-realized-price-ratio-1y-sma-momentum-oscillator" | "date-to-p2wpkh-40p-price-paid" | "date-to-from-1d-to-1w-input-volume" | "date-to-market-price-to-up-to-1d-realized-price-ratio-99p" | "date-to-from-10y-unrealized-loss" | "date-to-shark-40p-price-paid" | "date-to-up-to-10y-80p-price-paid" | "date-to-total-cointime-value-stored" | "date-to-illiquid-supply-to-circulating-supply-ratio" | "date-to-up-to-3y-45p-price-paid" | "date-to-20p-price-paid" | "date-to-market-price-to-price-21d-sma-ratio-0-5p" | "date-to-humpback-95p-price-paid" | "date-to-p2tr-value-destroyed" | "date-to-up-to-2y-10p-price-paid" | "date-to-market-price-to-price-4y-sma-ratio-99-5p" | "date-to-market-price-to-up-to-1w-realized-price-ratio-1p" | "date-to-up-to-1m-10p-price-paid" | "date-to-up-to-3m-supply-in-profit-to-circulating-supply-ratio" | "date-to-from-1w-to-1m-90p-price-paid" | "date-to-realized-cap-1m-net-change" | "date-to-p2sh-cumulative-realized-loss" | "date-to-up-to-2m-realized-cap" | "date-to-from-1m-to-3m-utxo-count" | "date-to-up-to-2m-supply-in-profit-to-own-supply-ratio" | "date-to-up-to-2y-net-unrealized-profit-and-loss" | "date-to-year-2021-value-created" | "date-to-up-to-3m-negative-realized-loss" | "date-to-up-to-2m-05p-price-paid" | "date-to-year-2022-realized-price-99-9p" | "date-to-year-2023-adjusted-spent-output-profit-ratio" | "date-to-market-price-to-lth-realized-price-ratio-99-5p" | "date-to-year-2020-cumulative-net-realized-profit-and-loss" | "date-to-illiquid-halved-supply-to-circulating-supply-ratio" | "date-to-block-size-1d-75p" | "date-to-p2wsh-supply-in-loss" | "date-to-year-2019-halved-supply" | "date-to-from-1d-to-1w-realized-price-0-1p" | "date-to-from-10y-to-15y-unrealized-loss" | "date-to-crab-45p-price-paid" | "date-to-supply-in-loss-to-own-supply-ratio" | "date-to-from-6m-to-1y-70p-price-paid" | "date-to-market-price-to-humpback-realized-price-ratio-99p" | "date-to-market-price-to-up-to-10y-realized-price-ratio-1w-sma" | "date-to-market-price-to-year-2015-realized-price-ratio-1w-sma" | "date-to-from-3m-to-6m-25p-price-paid" | "date-to-up-to-15y-realized-value" | "date-to-up-to-7y-realized-cap-1m-net-change" | "date-to-p2wsh-95p-price-paid" | "date-to-from-3m-to-6m-10p-price-paid" | "date-to-liquid-unrealized-loss" | "date-to-shrimp-supply-in-profit-to-own-supply-ratio" | "date-to-from-5y-to-7y-realized-price-0-1p" | "date-to-market-price-to-lth-realized-price-ratio-99-9p" | "date-to-up-to-15y-supply-to-circulating-supply-ratio" | "date-to-up-to-5y-net-realized-profit-and-loss" | "date-to-from-10y-supply" | "date-to-year-2011-realized-price-99-5p" | "date-to-shark-realized-price-99-9p" | "date-to-year-2021-input-count" | "date-to-up-to-7y-70p-price-paid" | "date-to-from-5y-to-7y-realized-price-99-5p" | "date-to-up-to-5y-cumulative-net-realized-profit-and-loss-1m-net-change" | "date-to-active-supply" | "date-to-block-weight-1d-min" | "date-to-from-10y-to-15y-supply-in-profit-to-circulating-supply-ratio" | "date-to-from-1y-to-2y-realized-price-0-5p" | "date-to-from-7y-to-10y-cumulative-net-realized-profit-and-loss-1m-net-change" | "date-to-sth-negative-unrealized-loss" | "date-to-market-price-to-up-to-4m-realized-price-ratio-99-9p" | "date-to-transaction-volume-1m-sma" | "date-to-cointime-cap" | "date-to-year-2013-utxo-count" | "date-to-shark-supply-in-loss" | "date-to-market-price-to-up-to-7y-realized-price-ratio-1w-sma" | "date-to-up-to-3y-supply" | "date-to-market-price-to-year-2010-realized-price-ratio-99-5p" | "date-to-from-1w-to-1m-65p-price-paid" | "date-to-from-2y-65p-price-paid" | "date-to-up-to-1w-realized-cap-1m-net-change" | "date-to-from-10y-realized-price-99-5p" | "date-to-from-1y-realized-price-99-9p" | "date-to-megalodon-supply-in-loss-to-own-supply-ratio" | "date-to-p2wsh-spent-output-profit-ratio" | "date-to-plankton-supply-in-loss" | "date-to-from-1d-to-1w-utxo-count" | "date-to-market-price-to-from-1m-to-3m-realized-price-ratio-1p" | "date-to-sth-40p-price-paid" | "date-to-from-3m-to-6m-realized-profit" | "date-to-year-2020-realized-price-0-5p" | "date-to-up-to-3y-supply-in-loss-to-own-supply-ratio" | "date-to-up-to-1m-realized-price" | "date-to-up-to-1y-60p-price-paid" | "date-to-up-to-5y-40p-price-paid" | "date-to-up-to-2y-supply-in-loss-to-circulating-supply-ratio" | "date-to-up-to-5m-unrealized-loss" | "date-to-up-to-3y-realized-price" | "date-to-from-1y-to-2y-unrealized-profit" | "date-to-created-addresses" | "date-to-market-price-to-year-2013-realized-price-ratio-99-9p" | "date-to-megalodon-adjusted-value-created" | "date-to-year-2014-adjusted-value-destroyed" | "date-to-from-3m-to-6m-realized-cap-1m-net-change" | "date-to-from-6m-to-1y-25p-price-paid" | "date-to-from-6m-to-1y-realized-loss" | "date-to-year-2009-negative-realized-loss" | "date-to-year-2009-net-realized-profit-and-loss-to-market-cap-ratio" | "date-to-fish-05p-price-paid" | "date-to-plankton-supply-to-circulating-supply-ratio" | "date-to-shark-net-unrealized-profit-and-loss" | "date-to-up-to-1w-35p-price-paid" | "date-to-p2sh-supply-in-profit" | "date-to-from-3m-to-6m-70p-price-paid" | "date-to-from-4y-realized-price" | "date-to-from-6m-to-1y-net-realized-profit-and-loss" | "date-to-market-price-to-up-to-3y-realized-price-ratio-0-5p" | "date-to-price-1w-sma-99p" | "date-to-p2pkh-unrealized-profit" | "date-to-highly-liquid-input-count" | "date-to-from-5y-to-7y-net-realized-profit-and-loss" | "date-to-year-2009-25p-price-paid" | "date-to-year-2018-spent-output-profit-ratio" | "date-to-market-price-to-up-to-1d-realized-price-ratio-0-5p" | "date-to-up-to-6m-negative-unrealized-loss" | "date-to-from-1y-to-2y-supply" | "date-to-market-price-to-sth-realized-price-ratio-99-5p" | "date-to-up-to-10y-input-count" | "date-to-up-to-2m-20p-price-paid" | "date-to-year-2011-cumulative-realized-profit" | "date-to-sth-realized-value" | "date-to-year-2017-80p-price-paid" | "date-to-year-2012-supply" | "date-to-lth-realized-profit" | "date-to-from-2y-to-3y-85p-price-paid" | "date-to-from-2y-to-3y-halved-supply" | "date-to-crab-realized-price-99-5p" | "date-to-price-1w-sma-99-5p" | "date-to-year-2009-unrealized-loss" | "date-to-market-price-to-from-1y-to-2y-realized-price-ratio-1y-sma-momentum-oscillator" | "date-to-market-price-to-year-2017-realized-price-ratio-1w-sma" | "date-to-market-price-to-p2tr-realized-price-ratio-99-5p" | "date-to-price-200w-sma-99-9p" | "date-to-up-to-10y-85p-price-paid" | "date-to-from-1m-to-3m-supply" | "date-to-year-2017-35p-price-paid" | "date-to-p2tr-35p-price-paid" | "date-to-from-1d-to-1w-negative-realized-loss" | "date-to-market-price-to-from-4y-realized-price-ratio-1y-sma" | "date-to-up-to-7y-65p-price-paid" | "date-to-year-2010-spent-output-profit-ratio" | "date-to-market-price-to-from-7y-to-10y-realized-price-ratio-99-9p" | "date-to-sth-15p-price-paid" | "date-to-up-to-2y-85p-price-paid" | "date-to-up-to-7y-realized-profit" | "date-to-price-55d-sma" | "date-to-market-price-to-up-to-1y-realized-price-ratio-99-9p" | "date-to-realized-price-99-5p" | "date-to-market-price-to-price-8d-sma-ratio-99-5p" | "date-to-up-to-2y-net-unrealized-profit-and-loss-to-market-cap-ratio" | "date-to-market-price-to-from-1y-to-2y-realized-price-ratio-0-5p" | "date-to-price-1y-sma-99-9p" | "date-to-up-to-10y-unrealized-profit" | "date-to-market-price-to-from-10y-realized-price-ratio-0-5p" | "date-to-illiquid-spent-output-profit-ratio" | "date-to-market-price-to-up-to-7y-realized-price-ratio-0-1p" | "date-to-megalodon-adjusted-spent-output-profit-ratio" | "date-to-up-to-2m-cumulative-net-realized-profit-and-loss-1m-net-change" | "date-to-year-2023-input-count" | "date-to-from-7y-to-10y-25p-price-paid" | "date-to-plankton-supply-in-profit-to-own-supply-ratio" | "date-to-market-price-to-price-200w-sma-ratio" | "date-to-plankton-realized-profit" | "date-to-liquid-60p-price-paid" | "date-to-lth-45p-price-paid" | "date-to-p2pkh-supply" | "date-to-shark-90p-price-paid" | "date-to-whale-05p-price-paid" | "date-to-year-2019-negative-realized-loss" | "date-to-market-price-to-year-2018-realized-price-ratio-1p" | "date-to-plankton-supply-in-profit" | "date-to-cumulative-block-size" | "date-to-from-15y-60p-price-paid" | "date-to-illiquid-90p-price-paid" | "date-to-cumulative-coinblocks-stored" | "date-to-year-2018-unrealized-profit" | "date-to-coinbase" | "date-to-p2pk-75p-price-paid" | "date-to-shrimp-net-unrealized-profit-and-loss" | "date-to-year-2019-30p-price-paid" | "date-to-liquid-realized-loss" | "date-to-year-2020-20p-price-paid" | "date-to-highly-liquid-55p-price-paid" | "date-to-market-price-to-price-2y-sma-ratio-1w-sma" | "date-to-up-to-1w-adjusted-value-created" | "date-to-year-2013-supply-in-loss-to-circulating-supply-ratio" | "date-to-market-price-to-cointime-price-ratio-99-9p" | "date-to-humpback-halved-supply-to-circulating-supply-ratio" | "date-to-megalodon-address-count" | "date-to-p2tr-supply" | "date-to-market-price-to-price-1w-sma-ratio-1m-sma" | "date-to-from-1w-to-1m-15p-price-paid" | "date-to-up-to-15y-realized-loss" | "date-to-price-1m-sma-0-5p" | "date-to-from-1d-to-1w-realized-profit" | "date-to-from-2y-unrealized-profit" | "date-to-market-price-to-p2pkh-realized-price-ratio-1m-sma" | "date-to-from-1y-to-2y-realized-profit" | "date-to-market-price-to-humpback-realized-price-ratio-99-5p" | "date-to-market-price-to-from-4y-realized-price-ratio-99-9p" | "date-to-market-price-to-p2tr-realized-price-ratio-99p" | "date-to-market-price-to-up-to-1w-realized-price-ratio-99-5p" | "date-to-shark-supply-in-loss-to-circulating-supply-ratio" | "date-to-year-2018-realized-price-99-5p" | "date-to-market-price-to-up-to-10y-realized-price-ratio-1m-sma" | "date-to-up-to-4m-60p-price-paid" | "date-to-market-price-to-year-2009-realized-price-ratio" | "date-to-lth-realized-price-99p" | "date-to-market-price-to-vaulted-price-ratio-99-5p" | "date-to-up-to-10y-net-realized-profit-and-loss-to-market-cap-ratio" | "date-to-up-to-1m-spent-output-profit-ratio" | "date-to-up-to-10y-spent-output-profit-ratio" | "date-to-from-2y-35p-price-paid" | "date-to-year-2022-cumulative-realized-profit" | "date-to-p2tr-20p-price-paid" | "date-to-from-5y-to-7y-net-realized-profit-and-loss-to-market-cap-ratio" | "date-to-up-to-10y-supply-in-profit" | "date-to-from-1w-to-1m-realized-cap" | "date-to-p2tr-adjusted-value-destroyed" | "date-to-fish-realized-price" | "date-to-humpback-cumulative-net-realized-profit-and-loss" | "date-to-market-price-to-from-7y-to-10y-realized-price-ratio-99-5p" | "date-to-up-to-15y-10p-price-paid" | "date-to-up-to-3m-45p-price-paid" | "date-to-year-2017-15p-price-paid" | "date-to-from-1m-to-3m-adjusted-spent-output-profit-ratio" | "date-to-p2wsh-negative-unrealized-loss" | "date-to-year-2018-unrealized-loss" | "date-to-year-2020-05p-price-paid" | "date-to-from-1y-to-2y-realized-loss" | "date-to-year-2024-10p-price-paid" | "date-to-illiquid-55p-price-paid" | "date-to-from-15y-45p-price-paid" | "date-to-market-price-to-year-2023-realized-price-ratio" | "date-to-plankton-adjusted-value-destroyed" | "date-to-up-to-10y-15p-price-paid" | "date-to-unrealized-loss" | "date-to-lth-supply" | "date-to-year-2009-80p-price-paid" | "date-to-humpback-20p-price-paid" | "date-to-year-2019-25p-price-paid" | "date-to-true-market-mean" | "date-to-from-6m-to-1y-cumulative-realized-loss" | "date-to-market-price-to-price-4y-sma-ratio-99p" | "date-to-megalodon-55p-price-paid" | "date-to-from-5y-to-7y-value-created" | "date-to-up-to-1w-unrealized-profit" | "date-to-year-2009-unrealized-profit" | "date-to-market-price-to-year-2022-realized-price-ratio-99-5p" | "date-to-up-to-1m-supply-in-profit-to-circulating-supply-ratio" | "date-to-p2wsh-60p-price-paid" | "date-to-shark-realized-profit" | "date-to-up-to-2y-realized-price-0-1p" | "date-to-p2pk-supply-in-loss-to-circulating-supply-ratio" | "date-to-year-2018-supply-in-loss-to-own-supply-ratio" | "date-to-market-price-to-from-3m-to-6m-realized-price-ratio-1m-sma" | "date-to-from-6m-to-1y-cumulative-net-realized-profit-and-loss" | "date-to-up-to-7y-cumulative-net-realized-profit-and-loss" | "date-to-up-to-15y-80p-price-paid" | "date-to-from-10y-realized-price-0-1p" | "date-to-up-to-3m-unrealized-loss" | "date-to-vaulting-rate" | "date-to-from-6m-to-1y-spent-output-profit-ratio" | "date-to-market-price-to-from-2y-realized-price-ratio-99-9p" | "date-to-year-2018-median-price-paid" | "date-to-up-to-5y-halved-supply-to-circulating-supply-ratio" | "date-to-humpback-05p-price-paid" | "date-to-year-2019-supply-to-circulating-supply-ratio" | "date-to-p2sh-realized-price-99-5p" | "date-to-year-2009-net-unrealized-profit-and-loss" | "date-to-plankton-realized-cap" | "date-to-market-price-to-highly-liquid-realized-price-ratio-1y-sma-momentum-oscillator" | "date-to-from-7y-to-10y-80p-price-paid" | "date-to-market-price-to-p2sh-realized-price-ratio-99-9p" | "date-to-p2wpkh-supply-in-loss" | "date-to-market-price-to-price-55d-sma-ratio-99-5p" | "date-to-up-to-7y-20p-price-paid" | "date-to-from-1m-to-3m-85p-price-paid" | "date-to-from-5y-to-7y-cumulative-realized-loss" | "date-to-year-2022-net-realized-profit-and-loss" | "date-to-from-1d-to-1w-realized-price-0-5p" | "date-to-p2sh-median-price-paid" | "date-to-year-2010-realized-price-99-5p" | "date-to-p2pk-55p-price-paid" | "date-to-p2pk-realized-value" | "date-to-year-2017-supply-in-profit" | "date-to-from-6m-to-1y-85p-price-paid" | "date-to-up-to-3y-realized-value" | "date-to-year-2011-adjusted-spent-output-profit-ratio" | "date-to-total-cointime-value-created" | "date-to-market-price-to-price-4y-sma-ratio-1w-sma" | "date-to-year-2009-90p-price-paid" | "date-to-from-4y-negative-realized-loss" | "date-to-megalodon-unrealized-loss" | "date-to-shark-realized-loss" | "date-to-up-to-2y-70p-price-paid" | "date-to-market-price-to-lth-realized-price-ratio-1m-sma" | "date-to-plankton-cumulative-net-realized-profit-and-loss-1m-net-change" | "date-to-liquid-supply-in-loss-to-circulating-supply-ratio" | "date-to-from-1w-to-1m-55p-price-paid" | "date-to-year-2011-supply-to-circulating-supply-ratio" | "date-to-market-price-to-price-1w-sma-ratio-0-5p" | "date-to-market-price-to-p2pkh-realized-price-ratio-1y-sma" | "date-to-from-15y-20p-price-paid" | "date-to-lth-unrealized-loss" | "date-to-up-to-15y-40p-price-paid" | "date-to-market-price-to-year-2020-realized-price-ratio-1y-sma-momentum-oscillator" | "date-to-hash-rate" | "date-to-year-2016-cumulative-realized-profit" | "date-to-illiquid-input-count" | "date-to-p2tr-adjusted-spent-output-profit-ratio" | "date-to-year-2022-90p-price-paid" | "date-to-p2pk-cumulative-net-realized-profit-and-loss" | "date-to-year-2023-35p-price-paid" | "date-to-up-to-4m-40p-price-paid" | "date-to-market-price-to-up-to-2m-realized-price-ratio-1y-sma" | "date-to-year-2024-utxo-count" | "date-to-market-price-to-shrimp-realized-price-ratio-0-5p" | "date-to-market-price-to-up-to-2y-realized-price-ratio-0-1p" | "date-to-cumulative-fees-in-dollars" | "date-to-year-2011-supply" | "date-to-p2wsh-35p-price-paid" | "date-to-from-1m-to-3m-realized-price-0-5p" | "date-to-p2tr-cumulative-net-realized-profit-and-loss-1m-net-change" | "date-to-market-price-to-up-to-3y-realized-price-ratio-99-5p" | "date-to-year-2012-adjusted-spent-output-profit-ratio" | "date-to-market-price-to-year-2012-realized-price-ratio-1m-sma" | "date-to-block-interval-1d-median" | "date-to-market-price-to-cointime-price-ratio-1y-sma-momentum-oscillator" | "date-to-market-price-to-up-to-1m-realized-price-ratio-99p" | "date-to-megalodon-halved-supply" | "date-to-up-to-2m-65p-price-paid" | "date-to-up-to-10y-median-price-paid" | "date-to-market-price-to-year-2009-realized-price-ratio-1w-sma" | "date-to-up-to-7y-supply-in-loss" | "date-to-p2pk-realized-profit" | "date-to-from-15y-cumulative-net-realized-profit-and-loss" | "date-to-from-3y-to-5y-55p-price-paid" | "date-to-market-price-to-from-10y-to-15y-realized-price-ratio-0-5p" | "date-to-year-2023-realized-cap" | "date-to-from-4y-unrealized-loss" | "date-to-year-2009-35p-price-paid" | "date-to-market-price-to-price-1y-sma-ratio-1y-sma" | "date-to-from-15y-cumulative-realized-loss" | "date-to-year-2013-supply-in-profit-to-circulating-supply-ratio" | "date-to-year-2022-85p-price-paid" | "date-to-p2tr-realized-value" | "date-to-market-price-to-year-2011-realized-price-ratio-99-5p" | "date-to-year-2016-25p-price-paid" | "date-to-year-2020-75p-price-paid" | "date-to-market-price-to-up-to-3m-realized-price-ratio-1p" | "date-to-sth-supply-in-profit-to-circulating-supply-ratio" | "date-to-from-2y-spent-output-profit-ratio" | "date-to-up-to-5y-60p-price-paid" | "date-to-market-price-to-p2wpkh-realized-price-ratio-1p" | "date-to-up-to-2m-net-realized-profit-and-loss" | "date-to-from-1d-to-1w-05p-price-paid" | "date-to-p2tr-60p-price-paid" | "date-to-up-to-10y-halved-supply-to-circulating-supply-ratio" | "date-to-p2wpkh-85p-price-paid" | "date-to-liquid-supply-in-profit-to-own-supply-ratio" | "date-to-year-2011-realized-price-99p" | "date-to-plankton-90p-price-paid" | "date-to-year-2011-supply-in-profit-to-circulating-supply-ratio" | "date-to-sth-net-unrealized-profit-and-loss" | "date-to-highly-liquid-supply-in-loss" | "date-to-market-price-to-from-1m-to-3m-realized-price-ratio-99p" | "date-to-p2wpkh-supply-in-loss-to-circulating-supply-ratio" | "date-to-cumulative-net-realized-profit-and-loss-1m-net-change" | "date-to-up-to-3y-20p-price-paid" | "date-to-up-to-4m-net-realized-profit-and-loss" | "date-to-market-price-to-from-1d-to-1w-realized-price-ratio-99-9p" | "date-to-fish-address-count" | "date-to-up-to-5m-supply-in-loss-to-circulating-supply-ratio" | "date-to-p2tr-supply-in-loss-to-own-supply-ratio" | "date-to-year-2014-35p-price-paid" | "date-to-year-2015-spent-output-profit-ratio" | "date-to-from-15y-realized-cap-1m-net-change" | "date-to-up-to-1y-realized-price" | "date-to-price-1y-sma-99-5p" | "date-to-year-2017-input-count" | "date-to-year-2022-95p-price-paid" | "date-to-p2wpkh-25p-price-paid" | "date-to-from-1m-to-3m-value-created" | "date-to-p2wsh-20p-price-paid" | "date-to-year-2016-85p-price-paid" | "date-to-market-price-to-crab-realized-price-ratio-1m-sma" | "date-to-p2wsh-negative-realized-loss" | "date-to-price-8y-total-return" | "date-to-humpback-25p-price-paid" | "date-to-from-1y-supply-in-loss" | "date-to-from-1y-to-2y-net-realized-profit-and-loss" | "date-to-market-price-to-true-market-mean-ratio" | "date-to-block-interval-1d-10p" | "date-to-from-1d-to-1w-supply-in-loss" | "date-to-market-price-to-up-to-3m-realized-price-ratio-99-5p" | "date-to-liquid-adjusted-value-created" | "date-to-up-to-10y-negative-realized-loss" | "date-to-from-1m-to-3m-negative-realized-loss" | "date-to-year-2010-negative-realized-loss" | "date-to-from-1m-to-3m-supply-in-profit-to-circulating-supply-ratio" | "date-to-up-to-3m-20p-price-paid" | "date-to-year-2022-15p-price-paid" | "date-to-up-to-4m-negative-unrealized-loss" | "date-to-year-2022-30p-price-paid" | "date-to-year-2024-cumulative-net-realized-profit-and-loss-1m-net-change" | "date-to-market-price-to-year-2010-realized-price-ratio-0-1p" | "date-to-year-2017-realized-loss" | "date-to-p2wpkh-net-realized-profit-and-loss" | "date-to-year-2011-median-price-paid" | "date-to-illiquid-adjusted-spent-output-profit-ratio" | "date-to-p2pk-60p-price-paid" | "date-to-fish-adjusted-value-destroyed" | "date-to-liquid-45p-price-paid" | "date-to-market-price-to-year-2010-realized-price-ratio-1y-sma-momentum-oscillator" | "date-to-up-to-6m-value-created" | "date-to-shrimp-net-realized-profit-and-loss-to-market-cap-ratio" | "date-to-up-to-3y-value-destroyed" | "date-to-from-10y-65p-price-paid" | "date-to-year-2009-60p-price-paid" | "date-to-difficulty" | "date-to-crab-unrealized-profit" | "date-to-megalodon-cumulative-realized-loss" | "date-to-from-10y-realized-price-0-5p" | "date-to-lth-75p-price-paid" | "date-to-from-15y-unrealized-loss" | "date-to-market-price-to-price-1m-sma-ratio-0-1p" | "date-to-p2sh-realized-price-99-9p" | "date-to-p2sh-net-realized-profit-and-loss-to-market-cap-ratio" | "date-to-p2sh-20p-price-paid" | "date-to-up-to-1w-realized-price-0-1p" | "date-to-shrimp-20p-price-paid" | "date-to-true-market-deviation" | "date-to-block-size-1d-90p" | "date-to-up-to-1m-80p-price-paid" | "date-to-up-to-2y-adjusted-spent-output-profit-ratio" | "date-to-lth-input-volume" | "date-to-p2tr-utxo-count" | "date-to-fish-cumulative-net-realized-profit-and-loss-1m-net-change" | "date-to-illiquid-20p-price-paid" | "date-to-up-to-15y-90p-price-paid" | "date-to-highly-liquid-cumulative-net-realized-profit-and-loss" | "date-to-up-to-5y-realized-price-99-5p" | "date-to-from-2y-net-realized-profit-and-loss" | "date-to-from-15y-adjusted-value-created" | "date-to-from-3y-to-5y-realized-profit" | "date-to-humpback-net-unrealized-profit-and-loss-to-market-cap-ratio" | "date-to-up-to-4m-95p-price-paid" | "date-to-year-2024-70p-price-paid" | "date-to-year-2016-realized-cap-1m-net-change" | "date-to-year-2014-95p-price-paid" | "date-to-up-to-1d-cumulative-realized-loss" | "date-to-up-to-3y-negative-unrealized-loss" | "date-to-year-2010-supply-in-profit" | "date-to-up-to-6m-15p-price-paid" | "date-to-cointime-price-0-5p" | "date-to-up-to-6m-cumulative-net-realized-profit-and-loss-1m-net-change" | "date-to-year-2014-realized-price-0-1p" | "date-to-from-2y-to-3y-adjusted-spent-output-profit-ratio" | "date-to-market-price-to-whale-realized-price-ratio-1y-sma" | "date-to-up-to-2y-20p-price-paid" | "date-to-up-to-5y-cumulative-net-realized-profit-and-loss" | "date-to-market-price-to-up-to-1y-realized-price-ratio" | "date-to-market-price-to-true-market-mean-ratio-0-5p" | "date-to-shark-05p-price-paid" | "date-to-market-price-to-up-to-5m-realized-price-ratio-1y-sma" | "date-to-from-1w-to-1m-supply-in-profit-to-circulating-supply-ratio" | "date-to-up-to-3m-net-unrealized-profit-and-loss-to-market-cap-ratio" | "date-to-year-2016-realized-price" | "date-to-year-2011-input-volume" | "date-to-fees-in-dollars" | "date-to-market-price-to-humpback-realized-price-ratio-1y-sma-momentum-oscillator" | "date-to-market-price-to-price-1w-sma-ratio-99-5p" | "date-to-up-to-1m-unrealized-loss" | "date-to-up-to-1y-realized-profit" | "date-to-market-price-to-up-to-5y-realized-price-ratio-1y-sma-momentum-oscillator" | "date-to-cumulative-coinbase" | "date-to-p2wpkh-realized-cap" | "date-to-subsidy-in-dollars-1y-sum" | "date-to-lth-realized-price-99-9p" | "date-to-megalodon-negative-unrealized-loss" | "date-to-shark-median-price-paid" | "date-to-up-to-1m-realized-value" | "date-to-year-2023-negative-realized-loss" | "date-to-year-2023-supply-in-loss-to-own-supply-ratio" | "date-to-market-price-to-year-2019-realized-price-ratio" | "date-to-up-to-4m-70p-price-paid" | "date-to-up-to-4m-realized-price" | "date-to-adjusted-value-created" | "date-to-market-price-to-price-1m-sma-ratio" | "date-to-up-to-3m-realized-price" | "date-to-from-6m-to-1y-realized-profit" | "date-to-from-4y-unrealized-profit" | "date-to-market-price-to-year-2017-realized-price-ratio-1y-sma" | "date-to-year-2012-95p-price-paid" | "date-to-year-2012-supply-in-profit" | "date-to-up-to-6m-60p-price-paid" | "date-to-from-6m-to-1y-supply-in-profit-to-circulating-supply-ratio" | "date-to-market-price-to-from-6m-to-1y-realized-price-ratio-0-5p" | "date-to-year-2021-utxo-count" | "date-to-from-1m-to-3m-45p-price-paid" | "date-to-year-2022-negative-unrealized-loss" | "date-to-from-2y-input-volume" | "date-to-active-price-0-1p" | "date-to-from-3y-to-5y-net-unrealized-profit-and-loss-to-market-cap-ratio" | "date-to-plankton-85p-price-paid" | "date-to-from-7y-to-10y-supply-in-loss-to-circulating-supply-ratio" | "date-to-market-price-to-from-2y-to-3y-realized-price-ratio-0-1p" | "date-to-from-1m-to-3m-halved-supply-to-circulating-supply-ratio" | "date-to-year-2017-halved-supply-to-circulating-supply-ratio" | "date-to-year-2015-realized-profit" | "date-to-crab-supply-in-profit" | "date-to-illiquid-unrealized-profit" | "date-to-thermo-cap-to-investor-cap-ratio" | "date-to-year-2012-realized-price-99-5p" | "date-to-from-2y-45p-price-paid" | "date-to-up-to-1w-spent-output-profit-ratio" | "date-to-from-6m-to-1y-30p-price-paid" | "date-to-lth-supply-in-profit-to-circulating-supply-ratio" | "date-to-from-1d-to-1w-cumulative-realized-loss" | "date-to-from-4y-value-destroyed" | "date-to-from-2y-to-3y-cumulative-realized-loss" | "date-to-market-price-to-active-price-ratio-1w-sma" | "date-to-year-2020-cumulative-realized-profit" | "date-to-year-2017-supply" | "date-to-up-to-6m-realized-price-0-5p" | "date-to-p2pkh-spent-output-profit-ratio" | "date-to-realized-loss" | "date-to-market-price-to-plankton-realized-price-ratio-99-5p" | "date-to-year-2013-cumulative-net-realized-profit-and-loss-1m-net-change" | "date-to-year-2024-25p-price-paid" | "date-to-from-10y-realized-profit" | "date-to-up-to-2m-supply-in-profit" | "date-to-fees-to-coinbase-ratio" | "date-to-market-price-to-up-to-3m-realized-price-ratio-1y-sma" | "date-to-lth-spent-output-profit-ratio" | "date-to-market-price-to-price-200w-sma-ratio-0-5p" | "date-to-25p-price-paid" | "date-to-market-price-to-year-2024-realized-price-ratio-1y-sma" | "date-to-shark-85p-price-paid" | "date-to-transaction-velocity" | "date-to-liquid-15p-price-paid" | "date-to-coinblocks-stored" | "date-to-up-to-5y-supply-in-loss-to-own-supply-ratio" | "date-to-year-2010-net-unrealized-profit-and-loss-to-market-cap-ratio" | "date-to-year-2011-utxo-count" | "date-to-from-2y-to-3y-negative-unrealized-loss" | "date-to-from-3y-to-5y-net-realized-profit-and-loss-to-market-cap-ratio" | "date-to-10p-price-paid" | "date-to-from-7y-to-10y-net-unrealized-profit-and-loss-to-market-cap-ratio" | "date-to-market-price-to-p2wpkh-realized-price-ratio-99-5p" | "date-to-up-to-1d-supply-in-loss" | "date-to-market-price-to-p2pkh-realized-price-ratio-1p" | "date-to-year-2019-realized-loss" | "date-to-market-price-to-shrimp-realized-price-ratio-1y-sma-momentum-oscillator" | "date-to-up-to-2m-input-volume" | "date-to-p2wpkh-35p-price-paid" | "date-to-year-2016-unrealized-loss" | "date-to-humpback-realized-price-99-9p" | "date-to-market-price-to-year-2012-realized-price-ratio-1y-sma" | "date-to-market-price-to-whale-realized-price-ratio-1w-sma" | "date-to-year-2012-adjusted-value-destroyed" | "date-to-shrimp-realized-price-99-5p" | "date-to-year-2018-55p-price-paid" | "date-to-cumulative-realized-loss" | "date-to-lth-sell-side-risk-ratio" | "date-to-humpback-unrealized-loss" | "date-to-up-to-2m-95p-price-paid" | "date-to-year-2015-input-volume" | "date-to-from-1m-to-3m-10p-price-paid" | "date-to-market-price-to-price-200w-sma-ratio-99p" | "date-to-shark-20p-price-paid" | "date-to-year-2013-unrealized-profit" | "date-to-crab-realized-price-1p" | "date-to-plankton-30p-price-paid" | "date-to-market-price-to-year-2012-realized-price-ratio-1p" | "date-to-year-2024-net-unrealized-profit-and-loss-to-market-cap-ratio" | "date-to-sth-supply-in-loss-to-circulating-supply-ratio" | "date-to-from-1w-to-1m-supply" | "date-to-from-1d-to-1w-25p-price-paid" | "date-to-market-price-to-price-2y-sma-ratio-99-9p" | "date-to-humpback-realized-price-99-5p" | "date-to-from-1d-to-1w-unrealized-profit" | "date-to-year-2012-65p-price-paid" | "date-to-from-4y-halved-supply" | "date-to-from-6m-to-1y-realized-price-1p" | "date-to-market-price-to-price-2y-sma-ratio-99p" | "date-to-shark-realized-cap-1m-net-change" | "date-to-from-2y-to-3y-adjusted-value-created" | "date-to-up-to-15y-value-created" | "date-to-year-2009-55p-price-paid" | "date-to-from-2y-realized-loss" | "date-to-market-price-to-year-2021-realized-price-ratio-99-5p" | "date-to-fish-realized-price-99p" | "date-to-p2sh-negative-realized-loss" | "date-to-up-to-5m-sell-side-risk-ratio" | "date-to-from-3m-to-6m-value-created" | "date-to-market-price-to-from-7y-to-10y-realized-price-ratio-1w-sma" | "date-to-from-10y-input-count" | "date-to-illiquid-address-count" | "date-to-market-price-to-up-to-2y-realized-price-ratio-1p" | "date-to-from-1m-to-3m-input-volume" | "date-to-from-7y-to-10y-20p-price-paid" | "date-to-market-price-to-vaulted-price-ratio-0-5p" | "date-to-up-to-10y-value-created" | "date-to-up-to-15y-realized-price-0-5p" | "date-to-from-6m-to-1y-05p-price-paid" | "date-to-market-price-to-from-3y-to-5y-realized-price-ratio-0-1p" | "date-to-year-2013-input-count" | "date-to-up-to-6m-adjusted-value-destroyed" | "date-to-year-2016-90p-price-paid" | "date-to-year-2019-80p-price-paid" | "date-to-year-2013-adjusted-value-created" | "date-to-year-2017-realized-profit" | "date-to-up-to-7y-90p-price-paid" | "date-to-sth-35p-price-paid" | "date-to-market-price-to-year-2011-realized-price-ratio-0-1p" | "date-to-year-2018-negative-realized-loss" | "date-to-market-price-to-year-2016-realized-price-ratio-0-1p" | "date-to-p2wsh-net-realized-profit-and-loss" | "date-to-up-to-1m-05p-price-paid" | "date-to-up-to-15y-realized-price-0-1p" | "date-to-year-2016-input-count" | "date-to-illiquid-net-unrealized-profit-and-loss" | "date-to-from-15y-net-realized-profit-and-loss-to-market-cap-ratio" | "date-to-from-10y-to-15y-realized-price-99p" | "date-to-from-15y-cumulative-net-realized-profit-and-loss-1m-net-change" | "date-to-from-3m-to-6m-supply-in-profit" | "date-to-from-10y-net-unrealized-profit-and-loss-to-market-cap-ratio" | "date-to-market-price-to-year-2017-realized-price-ratio-99-5p" | "date-to-market-price-to-year-2021-realized-price-ratio-0-5p" | "date-to-p2sh-net-unrealized-profit-and-loss" | "date-to-market-price-to-cointime-price-ratio-99-5p" | "date-to-p2wpkh-value-created" | "date-to-from-2y-to-3y-25p-price-paid" | "date-to-price-21d-sma-0-5p" | "date-to-up-to-1y-supply-in-loss-to-circulating-supply-ratio" | "date-to-year-2014-80p-price-paid" | "date-to-year-2024-45p-price-paid" | "date-to-up-to-5m-value-destroyed" | "date-to-sth-utxo-count" | "date-to-year-2023-realized-price" | "date-to-plankton-value-destroyed" | "date-to-shrimp-realized-price-99-9p" | "date-to-from-7y-to-10y-realized-value" | "date-to-market-price-to-up-to-1d-realized-price-ratio-0-1p" | "date-to-year-2022-value-created" | "date-to-fish-realized-cap-1m-net-change" | "date-to-from-1w-to-1m-supply-in-loss-to-own-supply-ratio" | "date-to-market-price-to-from-4y-realized-price-ratio-99p" | "date-to-up-to-15y-cumulative-net-realized-profit-and-loss-1m-net-change" | "date-to-price-10y-total-return" | "date-to-year-2010-25p-price-paid" | "date-to-from-3m-to-6m-realized-price-99-9p" | "date-to-from-6m-to-1y-supply-in-profit" | "date-to-market-price-to-year-2012-realized-price-ratio-99p" | "date-to-year-2023-supply-in-profit-to-own-supply-ratio" | "date-to-up-to-5m-realized-price-0-5p" | "date-to-year-2014-cumulative-realized-loss" | "date-to-from-1m-to-3m-40p-price-paid" | "date-to-up-to-5m-supply-in-profit-to-own-supply-ratio" | "date-to-lth-realized-price-1p" | "date-to-whale-value-created" | "date-to-year-2020-unrealized-loss" | "date-to-0" | "date-to-market-price-to-year-2012-realized-price-ratio-1w-sma" | "date-to-market-price-to-up-to-2y-realized-price-ratio-0-5p" | "date-to-p2pkh-realized-value" | "date-to-up-to-4m-cumulative-net-realized-profit-and-loss-1m-net-change" | "date-to-from-5y-to-7y-halved-supply-to-circulating-supply-ratio" | "date-to-market-price-to-price-55d-sma-ratio-1y-sma" | "date-to-market-price-to-up-to-5y-realized-price-ratio-0-5p" | "date-to-market-price-to-year-2012-realized-price-ratio-99-9p" | "date-to-p2sh-30p-price-paid" | "date-to-from-5y-to-7y-supply-in-profit-to-circulating-supply-ratio" | "date-to-realized-value" | "date-to-shrimp-realized-cap" | "date-to-year-2010-median-price-paid" | "date-to-shark-realized-price" | "date-to-market-price-to-from-15y-realized-price-ratio-99-5p" | "date-to-p2tr-halved-supply-to-circulating-supply-ratio" | "date-to-up-to-1y-cumulative-realized-profit" | "date-to-from-2y-to-3y-net-unrealized-profit-and-loss" | "date-to-price-1m-sma-99p" | "date-to-up-to-2y-realized-price-99-9p" | "date-to-up-to-5m-realized-cap" | "date-to-highly-liquid-realized-profit" | "date-to-year-2021-55p-price-paid" | "date-to-market-price-to-from-2y-realized-price-ratio-1m-sma" | "date-to-from-3m-to-6m-realized-price-0-5p" | "date-to-p2wsh-cumulative-net-realized-profit-and-loss-1m-net-change" | "date-to-year-2021-negative-unrealized-loss" | "date-to-year-2022-65p-price-paid" | "date-to-fish-55p-price-paid" | "date-to-market-price-to-year-2023-realized-price-ratio-1w-sma" | "date-to-sth-supply-in-loss" | "date-to-up-to-4m-realized-price-99p" | "date-to-market-price-to-year-2021-realized-price-ratio-0-1p" | "date-to-sth-supply-to-circulating-supply-ratio" | "date-to-from-1d-to-1w-75p-price-paid" | "date-to-p2tr-realized-loss" | "date-to-p2wsh-adjusted-value-destroyed" | "date-to-shrimp-realized-price-0-5p" | "date-to-realized-profit" | "date-to-market-price-to-year-2013-realized-price-ratio-0-5p" | "date-to-from-3y-to-5y-halved-supply" | "date-to-p2pk-realized-price-0-5p" | "date-to-from-1w-to-1m-05p-price-paid" | "date-to-market-price-to-illiquid-realized-price-ratio-0-5p" | "date-to-up-to-4m-supply-in-profit" | "date-to-up-to-5y-25p-price-paid" | "date-to-year-2019-net-realized-profit-and-loss" | "date-to-year-2021-realized-value" | "date-to-p2wsh-05p-price-paid" | "date-to-from-1y-median-price-paid" | "date-to-market-price-to-humpback-realized-price-ratio-1m-sma" | "date-to-from-1y-to-2y-realized-cap-1m-net-change" | "date-to-p2pkh-35p-price-paid" | "date-to-market-price-to-up-to-2y-realized-price-ratio-1w-sma" | "date-to-year-2011-net-realized-profit-and-loss-to-market-cap-ratio" | "date-to-market-price-to-year-2019-realized-price-ratio-99-5p" | "date-to-from-1d-to-1w-realized-price-1p" | "date-to-market-price-to-up-to-2y-realized-price-ratio-99p" | "date-to-up-to-1m-halved-supply" | "date-to-year-2023-unrealized-loss" | "date-to-up-to-7y-supply-in-loss-to-circulating-supply-ratio" | "date-to-humpback-realized-profit" | "date-to-from-10y-to-15y-value-destroyed" | "date-to-up-to-1y-realized-price-0-5p" | "date-to-from-10y-realized-cap-1m-net-change" | "date-to-up-to-7y-net-unrealized-profit-and-loss-to-market-cap-ratio" | "date-to-fish-spent-output-profit-ratio" | "date-to-up-to-5y-input-volume" | "date-to-coinbase-in-dollars" | "date-to-year-2011-adjusted-value-created" | "date-to-year-2018-10p-price-paid" | "date-to-year-2023-halved-supply-to-circulating-supply-ratio" | "date-to-market-price-to-from-1y-to-2y-realized-price-ratio-1w-sma" | "date-to-from-6m-to-1y-realized-cap-1m-net-change" | "date-to-market-price-to-year-2024-realized-price-ratio-1w-sma" | "date-to-subsidy-in-dollars" | "date-to-from-1m-to-3m-15p-price-paid" | "date-to-p2wpkh-30p-price-paid" | "date-to-market-price-to-from-4y-realized-price-ratio-0-5p" | "date-to-lth-supply-in-profit" | "date-to-up-to-2y-supply-in-profit-to-circulating-supply-ratio" | "date-to-year-2024-20p-price-paid" | "date-to-p2tr-input-volume" | "date-to-shark-realized-price-99p" | "date-to-year-2018-75p-price-paid" | "date-to-block-weight-1d-average" | "date-to-p2sh-adjusted-value-destroyed" | "date-to-up-to-1y-input-count" | "date-to-up-to-15y-net-realized-profit-and-loss" | "date-to-up-to-5y-realized-price-99-9p" | "date-to-humpback-cumulative-net-realized-profit-and-loss-1m-net-change" | "date-to-up-to-1w-supply-in-profit-to-circulating-supply-ratio" | "date-to-from-1y-to-2y-cumulative-realized-profit" | "date-to-plankton-45p-price-paid" | "date-to-year-2016-supply-in-loss" | "date-to-market-price-to-plankton-realized-price-ratio-0-1p" | "date-to-market-price-to-sth-realized-price-ratio-0-5p" | "date-to-from-2y-to-3y-supply-in-loss-to-circulating-supply-ratio" | "date-to-liquid-realized-price-0-1p" | "date-to-market-price-to-p2tr-realized-price-ratio-1p" | "date-to-up-to-4m-90p-price-paid" | "date-to-megalodon-realized-cap-1m-net-change" | "date-to-market-price-to-from-1y-realized-price-ratio-99-5p" | "date-to-year-2009-adjusted-spent-output-profit-ratio" | "date-to-whale-realized-price-0-1p" | "date-to-year-2014-realized-price-0-5p" | "date-to-up-to-5y-realized-cap-1m-net-change" | "date-to-fish-75p-price-paid" | "date-to-shrimp-75p-price-paid" | "date-to-up-to-15y-realized-price" | "date-to-market-price-to-price-4y-sma-ratio-99-9p" | "date-to-megalodon-05p-price-paid" | "date-to-from-3y-to-5y-realized-price-0-5p" | "date-to-market-price-to-from-7y-to-10y-realized-price-ratio-1m-sma" | "date-to-market-price-to-price-34d-sma-ratio-0-5p" | "date-to-from-1d-to-1w-adjusted-value-created" | "date-to-p2wpkh-realized-price-1p" | "date-to-highly-liquid-negative-unrealized-loss" | "date-to-market-price-to-year-2013-realized-price-ratio-1y-sma" | "date-to-up-to-3m-sell-side-risk-ratio" | "date-to-shark-realized-value" | "date-to-up-to-4m-halved-supply-to-circulating-supply-ratio" | "date-to-from-7y-to-10y-net-realized-profit-and-loss" | "date-to-year-2014-supply-in-loss-to-own-supply-ratio" | "date-to-year-2019-supply-in-loss-to-own-supply-ratio" | "date-to-year-2022-net-unrealized-profit-and-loss" | "date-to-year-2023-80p-price-paid" | "date-to-market-price-to-year-2022-realized-price-ratio-1y-sma" | "date-to-up-to-1m-net-realized-profit-and-loss-to-market-cap-ratio" | "date-to-fish-25p-price-paid" | "date-to-market-price-to-year-2009-realized-price-ratio-99-5p" | "date-to-up-to-4m-net-realized-profit-and-loss-to-market-cap-ratio" | "date-to-up-to-1m-25p-price-paid" | "date-to-up-to-3y-40p-price-paid" | "date-to-from-2y-realized-price-0-5p" | "date-to-from-2y-to-3y-negative-realized-loss" | "date-to-block-interval-1d-min" | "date-to-from-1d-to-1w-cumulative-net-realized-profit-and-loss-1m-net-change" | "date-to-market-price-to-from-7y-to-10y-realized-price-ratio-99p" | "date-to-vaulted-price-0-1p" | "date-to-year-2013-supply-in-loss" | "date-to-block-size-1d-median" | "date-to-net-unrealized-profit-and-loss-to-market-cap-ratio" | "date-to-megalodon-60p-price-paid" | "date-to-from-4y-75p-price-paid" | "date-to-year-2009-realized-price-0-5p" | "date-to-up-to-6m-input-volume" | "date-to-from-10y-realized-price-99-9p" | "date-to-up-to-2m-spent-output-profit-ratio" | "date-to-from-1m-to-3m-60p-price-paid" | "date-to-market-price-to-from-10y-realized-price-ratio-99-9p" | "date-to-up-to-15y-supply-in-loss-to-own-supply-ratio" | "date-to-from-3y-to-5y-45p-price-paid" | "date-to-up-to-15y-realized-price-99p" | "date-to-year-2023-realized-price-99p" | "date-to-market-price-to-p2pk-realized-price-ratio-99-5p" | "date-to-p2wpkh-negative-realized-loss" | "date-to-shrimp-net-unrealized-profit-and-loss-to-market-cap-ratio" | "date-to-up-to-2y-halved-supply" | "date-to-up-to-3y-55p-price-paid" | "date-to-up-to-6m-median-price-paid" | "date-to-year-2022-supply-to-circulating-supply-ratio" | "date-to-from-1w-to-1m-realized-price" | "date-to-market-price-to-up-to-10y-realized-price-ratio-99-9p" | "date-to-from-15y-55p-price-paid" | "date-to-market-price-to-from-15y-realized-price-ratio-1m-sma" | "date-to-from-6m-to-1y-negative-unrealized-loss" | "date-to-year-2009-cumulative-realized-loss" | "date-to-from-10y-to-15y-input-count" | "date-to-from-1d-to-1w-supply-in-profit-to-circulating-supply-ratio" | "date-to-market-price-to-up-to-15y-realized-price-ratio-1m-sma" | "date-to-illiquid-supply-in-profit-to-own-supply-ratio" | "date-to-from-3m-to-6m-net-unrealized-profit-and-loss" | "date-to-market-price-to-price-1y-sma-ratio-99p" | "date-to-price-13d-sma-99p" | "date-to-price-2y-sma-0-5p" | "date-to-up-to-3m-net-realized-profit-and-loss" | "date-to-up-to-3y-10p-price-paid" | "date-to-year-2012-70p-price-paid" | "date-to-market-price-to-p2pkh-realized-price-ratio" | "date-to-illiquid-supply-in-loss-to-circulating-supply-ratio" | "date-to-05p-price-paid" | "date-to-p2sh-75p-price-paid" | "date-to-price-21d-sma-99p" | "date-to-from-1y-to-2y-60p-price-paid" | "date-to-year-2012-adjusted-value-created" | "date-to-up-to-1w-45p-price-paid" | "date-to-year-2010-supply-to-circulating-supply-ratio" | "date-to-year-2019-unrealized-loss" | "date-to-shrimp-supply-in-profit" | "date-to-illiquid-70p-price-paid" | "date-to-year-2024-realized-cap" | "date-to-price-34d-sma-99p" | "date-to-year-2016-negative-realized-loss" | "date-to-market-price-to-year-2020-realized-price-ratio-1w-sma" | "date-to-from-10y-to-15y-halved-supply-to-circulating-supply-ratio" | "date-to-up-to-5y-unrealized-loss" | "date-to-shark-value-destroyed" | "date-to-p2tr-realized-price-99-5p" | "date-to-from-3m-to-6m-net-realized-profit-and-loss" | "date-to-whale-net-realized-profit-and-loss" | "date-to-year-2021-supply-to-circulating-supply-ratio" | "date-to-p2wsh-supply-in-loss-to-circulating-supply-ratio" | "date-to-from-1d-to-1w-adjusted-value-destroyed" | "date-to-year-2009-supply-in-loss-to-own-supply-ratio" | "date-to-plankton-median-price-paid" | "date-to-from-3m-to-6m-net-unrealized-profit-and-loss-to-market-cap-ratio" | "date-to-from-3y-to-5y-25p-price-paid" | "date-to-crab-realized-price-0-5p" | "date-to-from-1y-realized-cap" | "date-to-market-price-to-price-144d-sma-ratio-1m-sma" | "date-to-p2pk-negative-unrealized-loss" | "date-to-up-to-15y-input-count" | "date-to-market-price-to-year-2016-realized-price-ratio-99p" | "date-to-from-15y-realized-price-99-5p" | "date-to-plankton-supply" | "date-to-p2wpkh-median-price-paid" | "date-to-sth-input-count" | "date-to-up-to-2m-net-realized-profit-and-loss-to-market-cap-ratio" | "date-to-from-7y-to-10y-65p-price-paid" | "date-to-market-price-to-year-2014-realized-price-ratio-1m-sma" | "date-to-p2pk-adjusted-value-created" | "date-to-subsidy-to-coinbase-ratio" | "date-to-up-to-1y-10p-price-paid" | "date-to-up-to-3y-65p-price-paid" | "date-to-year-2010-30p-price-paid" | "date-to-from-1d-to-1w-35p-price-paid" | "date-to-year-2021-realized-price-0-1p" | "date-to-from-2y-realized-profit" | "date-to-lth-cumulative-realized-loss" | "date-to-up-to-5y-85p-price-paid" | "date-to-up-to-1d-negative-realized-loss" | "date-to-year-2013-value-destroyed" | "date-to-year-2021-realized-price-0-5p" | "date-to-from-3m-to-6m-80p-price-paid" | "date-to-year-2024-55p-price-paid" | "date-to-p2pkh-realized-loss" | "date-to-up-to-10y-65p-price-paid" | "date-to-p2wpkh-75p-price-paid" | "date-to-year-2020-median-price-paid" | "date-to-illiquid-realized-profit" | "date-to-price-1m-total-return" | "date-to-up-to-2y-adjusted-value-destroyed" | "date-to-year-2021-realized-loss" | "date-to-up-to-5m-net-unrealized-profit-and-loss-to-market-cap-ratio" | "date-to-market-price-to-price-21d-sma-ratio-99-5p" | "date-to-market-price-to-up-to-4m-realized-price-ratio-1w-sma" | "date-to-market-price-to-vaulted-price-ratio-0-1p" | "date-to-up-to-15y-20p-price-paid" | "date-to-up-to-1m-45p-price-paid" | "date-to-market-price-to-from-1m-to-3m-realized-price-ratio-1w-sma" | "date-to-from-4y-realized-price-1p" | "date-to-market-price-to-from-1w-to-1m-realized-price-ratio-1p" | "date-to-market-price-to-year-2011-realized-price-ratio-1y-sma-momentum-oscillator" | "date-to-up-to-10y-realized-value" | "date-to-up-to-2m-value-created" | "date-to-up-to-7y-median-price-paid" | "date-to-year-2011-realized-value" | "date-to-year-2022-adjusted-value-destroyed" | "date-to-year-2022-net-unrealized-profit-and-loss-to-market-cap-ratio" | "date-to-year-2023-40p-price-paid" | "date-to-subsidy" | "date-to-market-price-to-p2tr-realized-price-ratio-0-5p" | "date-to-year-2023-net-realized-profit-and-loss-to-market-cap-ratio" | "date-to-shrimp-negative-realized-loss" | "date-to-market-price-to-shrimp-realized-price-ratio-99-5p" | "date-to-p2wpkh-spent-output-profit-ratio" | "date-to-year-2024-supply-in-profit-to-circulating-supply-ratio" | "date-to-market-price-to-up-to-6m-realized-price-ratio-1y-sma" | "date-to-from-10y-realized-cap" | "date-to-market-price-to-up-to-5m-realized-price-ratio-0-5p" | "date-to-up-to-1m-realized-price-1p" | "date-to-market-price-to-year-2024-realized-price-ratio-99p" | "date-to-blocks-mined-1y-sum" | "date-to-year-2017-55p-price-paid" | "date-to-year-2019-realized-price-99-9p" | "date-to-lth-30p-price-paid" | "date-to-from-1y-supply-in-profit-to-own-supply-ratio" | "date-to-year-2021-spent-output-profit-ratio" | "date-to-p2pkh-realized-price-0-1p" | "date-to-from-4y-realized-price-99p" | "date-to-shark-adjusted-spent-output-profit-ratio" | "date-to-up-to-2y-supply-to-circulating-supply-ratio" | "date-to-price-13d-sma-99-9p" | "date-to-year-2019-net-realized-profit-and-loss-to-market-cap-ratio" | "date-to-market-price-to-up-to-2y-realized-price-ratio-1y-sma" | "date-to-year-2024-negative-unrealized-loss" | "date-to-from-2y-to-3y-utxo-count" | "date-to-p2tr-address-count" | "date-to-plankton-negative-unrealized-loss" | "date-to-from-6m-to-1y-net-unrealized-profit-and-loss" | "date-to-whale-15p-price-paid" | "date-to-plankton-80p-price-paid" | "date-to-cumulative-realized-profit" | "date-to-highly-liquid-60p-price-paid" | "date-to-p2tr-realized-price-0-5p" | "date-to-from-1w-to-1m-supply-in-profit" | "date-to-p2sh-utxo-count" | "date-to-market-price-to-p2pkh-realized-price-ratio-99p" | "date-to-market-price-to-shrimp-realized-price-ratio-1w-sma" | "date-to-p2wsh-adjusted-spent-output-profit-ratio" | "date-to-cointime-value-created" | "date-to-liquid-supply-in-loss" | "date-to-megalodon-95p-price-paid" | "date-to-p2sh-70p-price-paid" | "date-to-p2tr-halved-supply" | "date-to-up-to-6m-unrealized-profit" | "date-to-from-7y-to-10y-cumulative-realized-profit" | "date-to-year-2010-supply-in-profit-to-own-supply-ratio" | "date-to-from-1w-to-1m-60p-price-paid" | "date-to-year-2009-realized-cap-1m-net-change" | "date-to-year-2015-cumulative-net-realized-profit-and-loss-1m-net-change" | "date-to-from-2y-to-3y-realized-loss" | "date-to-year-2020-40p-price-paid" | "date-to-market-price-to-price-200w-sma-ratio-1y-sma-momentum-oscillator" | "date-to-up-to-5y-realized-price-1p" | "date-to-p2tr-realized-price" | "date-to-from-15y-sell-side-risk-ratio" | "date-to-market-price-to-year-2014-realized-price-ratio-99-5p" | "date-to-up-to-1d-35p-price-paid" | "date-to-up-to-5m-realized-loss" | "date-to-up-to-2y-net-realized-profit-and-loss-to-market-cap-ratio" | "date-to-p2wsh-90p-price-paid" | "date-to-up-to-2m-75p-price-paid" | "date-to-up-to-3y-net-realized-profit-and-loss" | "date-to-up-to-5m-net-unrealized-profit-and-loss" | "date-to-up-to-7y-45p-price-paid" | "date-to-year-2022-realized-price-99p" | "date-to-up-to-1m-20p-price-paid" | "date-to-year-2012-supply-in-loss-to-circulating-supply-ratio" | "date-to-up-to-3y-cumulative-net-realized-profit-and-loss-1m-net-change" | "date-to-highly-liquid-sell-side-risk-ratio" | "date-to-p2pkh-40p-price-paid" | "date-to-sth-20p-price-paid" | "date-to-up-to-15y-cumulative-realized-loss" | "date-to-year-2016-supply-in-profit" | "date-to-year-2022-cumulative-realized-loss" | "date-to-year-2015-realized-price-0-5p" | "date-to-year-2012-35p-price-paid" | "date-to-up-to-1w-input-count" | "date-to-price" | "date-to-year-2018-realized-price-1p" | "date-to-fish-net-unrealized-profit-and-loss" | "date-to-from-10y-to-15y-realized-cap" | "date-to-shark-70p-price-paid" | "date-to-year-2012-sell-side-risk-ratio" | "date-to-year-2012-spent-output-profit-ratio" | "date-to-crab-value-destroyed" | "date-to-market-price-to-price-1m-sma-ratio-99p" | "date-to-humpback-value-destroyed" | "date-to-liquid-supply-to-circulating-supply-ratio" | "date-to-market-price-to-plankton-realized-price-ratio-1y-sma-momentum-oscillator" | "date-to-up-to-1d-adjusted-value-created" | "date-to-from-7y-to-10y-supply-in-loss-to-own-supply-ratio" | "date-to-from-7y-to-10y-adjusted-spent-output-profit-ratio" | "date-to-market-price-to-up-to-2m-realized-price-ratio-0-5p" | "date-to-market-price-to-p2wsh-realized-price-ratio-1p" | "date-to-year-2023-cumulative-net-realized-profit-and-loss" | "date-to-from-1y-to-2y-15p-price-paid" | "date-to-up-to-2m-60p-price-paid" | "date-to-market-price-to-from-1w-to-1m-realized-price-ratio-0-5p" | "date-to-year-2010-70p-price-paid" | "date-to-from-2y-to-3y-net-realized-profit-and-loss-to-market-cap-ratio" | "date-to-up-to-1y-value-created" | "date-to-market-price-to-price-55d-sma-ratio-1p" | "date-to-from-10y-to-15y-spent-output-profit-ratio" | "date-to-up-to-10y-realized-profit" | "date-to-from-10y-realized-loss" | "date-to-market-price-to-year-2015-realized-price-ratio" | "date-to-up-to-10y-realized-price-99p" | "date-to-cumulative-subsidy-in-dollars" | "date-to-year-2013-supply-in-profit" | "date-to-year-2014-adjusted-value-created" | "date-to-year-2024-halved-supply-to-circulating-supply-ratio" | "date-to-market-price-to-year-2014-realized-price-ratio-1p" | "date-to-market-price-to-sth-realized-price-ratio" | "date-to-year-2009-realized-price-99p" | "date-to-year-2010-supply" | "date-to-investorness" | "date-to-market-price-to-year-2023-realized-price-ratio-0-5p" | "date-to-p2pk-supply-to-circulating-supply-ratio" | "date-to-market-price-to-year-2016-realized-price-ratio-1y-sma-momentum-oscillator" | "date-to-year-2009-30p-price-paid" | "date-to-from-2y-supply-in-profit" | "date-to-megalodon-realized-loss" | "date-to-highly-liquid-unrealized-loss" | "date-to-market-price-to-year-2016-realized-price-ratio-0-5p" | "date-to-year-2013-halved-supply" | "date-to-up-to-4m-sell-side-risk-ratio" | "date-to-from-3m-to-6m-realized-price-99-5p" | "date-to-liquid-address-count" | "date-to-price-144d-sma-1p" | "date-to-up-to-15y-realized-price-1p" | "date-to-crab-median-price-paid" | "date-to-p2tr-55p-price-paid" | "date-to-up-to-4m-halved-supply" | "date-to-up-to-6m-40p-price-paid" | "date-to-up-to-1w-sell-side-risk-ratio" | "date-to-up-to-1y-supply-in-loss-to-own-supply-ratio" | "date-to-up-to-3m-cumulative-net-realized-profit-and-loss" | "date-to-year-2013-net-realized-profit-and-loss" | "date-to-from-1y-95p-price-paid" | "date-to-p2sh-realized-price" | "date-to-market-price-to-from-1y-realized-price-ratio-1p" | "date-to-market-price-to-humpback-realized-price-ratio-99-9p" | "date-to-year-2015-realized-price-99-5p" | "date-to-p2wsh-utxo-count" | "date-to-year-2023-realized-cap-1m-net-change" | "date-to-year-2019-realized-price" | "date-to-market-price-to-from-1d-to-1w-realized-price-ratio-0-1p" | "date-to-up-to-6m-realized-price-1p" | "date-to-humpback-net-unrealized-profit-and-loss" | "date-to-up-to-1m-realized-price-0-5p" | "date-to-plankton-95p-price-paid" | "date-to-price-55d-sma-99-5p" | "date-to-from-7y-to-10y-net-realized-profit-and-loss-to-market-cap-ratio" | "date-to-market-price-to-shark-realized-price-ratio-1y-sma" | "date-to-annualized-transaction-volume-in-dollars" | "date-to-year-2009-supply-in-profit-to-own-supply-ratio" | "date-to-crab-60p-price-paid" | "date-to-market-price-to-from-10y-to-15y-realized-price-ratio-1y-sma-momentum-oscillator" | "date-to-illiquid-cumulative-realized-profit" | "date-to-market-price-to-up-to-1m-realized-price-ratio-1y-sma-momentum-oscillator" | "date-to-up-to-15y-unrealized-profit" | "date-to-year-2017-supply-in-profit-to-circulating-supply-ratio" | "date-to-hash-rate-1m-sma" | "date-to-year-2018-45p-price-paid" | "date-to-up-to-2m-realized-price-0-1p" | "date-to-year-2020-10p-price-paid" | "date-to-year-2022-realized-price" | "date-to-year-2024-adjusted-spent-output-profit-ratio" | "date-to-from-6m-to-1y-sell-side-risk-ratio" | "date-to-year-2014-utxo-count" | "date-to-year-2009-adjusted-value-destroyed" | "date-to-block-interval-1d-max" | "date-to-up-to-4m-unrealized-profit" | "date-to-from-3m-to-6m-30p-price-paid" | "date-to-from-15y-05p-price-paid" | "date-to-up-to-6m-realized-price-0-1p" | "date-to-from-1y-85p-price-paid" | "date-to-market-price-to-shark-realized-price-ratio-1p" | "date-to-market-price-to-year-2021-realized-price-ratio-1y-sma-momentum-oscillator" | "date-to-year-2012-realized-price-0-5p" | "date-to-year-2018-input-volume" | "date-to-market-price-to-up-to-10y-realized-price-ratio-1p" | "date-to-up-to-1d-70p-price-paid" | "date-to-from-5y-to-7y-80p-price-paid" | "date-to-year-2014-75p-price-paid" | "date-to-market-price-to-year-2020-realized-price-ratio-99p" | "date-to-market-price-to-year-2021-realized-price-ratio-1w-sma" | "date-to-market-price-to-price-200w-sma-ratio-99-5p" | "date-to-p2tr-30p-price-paid" | "date-to-from-4y-adjusted-value-destroyed" | "date-to-p2pkh-unrealized-loss" | "date-to-total-blocks-mined" | "date-to-up-to-1w-cumulative-realized-profit" | "date-to-up-to-2m-cumulative-net-realized-profit-and-loss" | "date-to-year-2013-90p-price-paid" | "date-to-year-2015-cumulative-realized-profit" | "date-to-market-price-to-up-to-6m-realized-price-ratio-99p" | "date-to-fish-unrealized-loss" | "date-to-up-to-2m-25p-price-paid" | "date-to-from-4y-35p-price-paid" | "date-to-market-price-to-up-to-3y-realized-price-ratio-99p" | "date-to-shark-55p-price-paid" | "date-to-from-1w-to-1m-realized-price-1p" | "date-to-shark-realized-price-99-5p" | "date-to-up-to-2m-35p-price-paid" | "date-to-up-to-2y-sell-side-risk-ratio" | "date-to-year-2017-utxo-count" | "date-to-sth-realized-price-99-9p" | "date-to-up-to-1y-value-destroyed" | "date-to-market-price-to-lth-realized-price-ratio-1w-sma" | "date-to-fish-45p-price-paid" | "date-to-market-price-to-from-1w-to-1m-realized-price-ratio-0-1p" | "date-to-market-price-to-up-to-1d-realized-price-ratio-99-9p" | "date-to-megalodon-supply-in-loss-to-circulating-supply-ratio" | "date-to-year-2018-cumulative-realized-profit" | "date-to-fish-supply-in-loss-to-circulating-supply-ratio" | "date-to-year-2023-negative-unrealized-loss" | "date-to-concurrent-liveliness" | "date-to-whale-20p-price-paid" | "date-to-from-1y-supply-to-circulating-supply-ratio" | "date-to-up-to-1y-75p-price-paid" | "date-to-transaction-count-1m-sma" | "date-to-from-3y-to-5y-value-created" | "date-to-up-to-5y-value-created" | "date-to-from-1w-to-1m-95p-price-paid" | "date-to-p2pk-20p-price-paid" | "date-to-crab-realized-price-99-9p" | "date-to-from-15y-realized-profit" | "date-to-from-7y-to-10y-supply-in-loss" | "date-to-up-to-1m-65p-price-paid" | "date-to-highly-liquid-realized-price" | "date-to-liquid-adjusted-spent-output-profit-ratio" | "date-to-lth-10p-price-paid" | "date-to-up-to-1m-unrealized-profit" | "date-to-from-5y-to-7y-25p-price-paid" | "date-to-up-to-1m-supply" | "date-to-from-10y-adjusted-value-created" | "date-to-market-price-to-year-2018-realized-price-ratio-99p" | "date-to-year-2024-30p-price-paid" | "date-to-from-2y-net-realized-profit-and-loss-to-market-cap-ratio" | "date-to-p2wsh-75p-price-paid" | "date-to-up-to-2y-cumulative-realized-loss" | "date-to-supply-to-circulating-supply-ratio" | "date-to-up-to-1m-median-price-paid" | "date-to-up-to-10y-realized-cap" | "date-to-market-price-to-year-2011-realized-price-ratio-99-9p" | "date-to-from-1y-realized-cap-1m-net-change" | "date-to-from-10y-to-15y-utxo-count" | "date-to-year-2013-realized-price-99-9p" | "date-to-from-4y-cumulative-realized-profit" | "date-to-illiquid-realized-price-99-5p" | "date-to-up-to-3m-input-count" | "date-to-plankton-60p-price-paid" | "date-to-up-to-2m-median-price-paid" | "date-to-up-to-3y-70p-price-paid" | "date-to-from-1y-to-2y-negative-realized-loss" | "date-to-market-price-to-active-price-ratio-0-1p" | "date-to-year-2015-utxo-count" | "date-to-up-to-3m-negative-unrealized-loss" | "date-to-market-price-to-up-to-5m-realized-price-ratio-1w-sma" | "date-to-price-4y-sma-99-5p" | "date-to-up-to-1w-halved-supply-to-circulating-supply-ratio" | "date-to-up-to-2y-cumulative-net-realized-profit-and-loss" | "date-to-from-3y-to-5y-unrealized-loss" | "date-to-up-to-15y-30p-price-paid" | "date-to-from-3y-to-5y-supply-in-loss" | "date-to-shark-35p-price-paid" | "date-to-plankton-realized-price-0-1p" | "date-to-up-to-2m-45p-price-paid" | "date-to-from-1m-to-3m-35p-price-paid" | "date-to-price-89d-sma-99-5p" | "date-to-market-price-to-from-2y-realized-price-ratio-0-5p" | "date-to-p2wpkh-cumulative-realized-loss" | "date-to-up-to-10y-unrealized-loss" | "date-to-from-2y-net-unrealized-profit-and-loss-to-market-cap-ratio" | "date-to-price-21d-sma-1p" | "date-to-market-price-to-up-to-1w-realized-price-ratio" | "date-to-year-2016-realized-loss" | "date-to-market-price-to-crab-realized-price-ratio-1p" | "date-to-100" | "date-to-market-price-to-crab-realized-price-ratio-99-9p" | "date-to-from-1m-to-3m-unrealized-profit" | "date-to-up-to-15y-25p-price-paid" | "date-to-from-1w-to-1m-20p-price-paid" | "date-to-up-to-1d-10p-price-paid" | "date-to-plankton-55p-price-paid" | "date-to-year-2013-realized-price-0-5p" | "date-to-year-2020-supply" | "date-to-market-price-to-year-2016-realized-price-ratio-1p" | "date-to-up-to-3y-spent-output-profit-ratio" | "date-to-up-to-1w-realized-price-99-5p" | "date-to-crab-realized-cap-1m-net-change" | "date-to-from-1m-to-3m-05p-price-paid" | "date-to-year-2011-negative-realized-loss" | "date-to-market-price-to-illiquid-realized-price-ratio-1y-sma" | "date-to-market-price-to-from-10y-realized-price-ratio-1y-sma" | "date-to-megalodon-supply-in-profit-to-circulating-supply-ratio" | "date-to-market-price-to-year-2019-realized-price-ratio-1p" | "date-to-p2pk-adjusted-spent-output-profit-ratio" | "date-to-highly-liquid-realized-price-0-1p" | "date-to-market-price-to-up-to-1m-realized-price-ratio-99-5p" | "date-to-p2sh-supply-in-profit-to-circulating-supply-ratio" | "date-to-p2wsh-10p-price-paid" | "date-to-price-4y-sma" | "date-to-market-price-to-year-2015-realized-price-ratio-1y-sma-momentum-oscillator" | "date-to-up-to-7y-realized-loss" | "date-to-from-6m-to-1y-negative-realized-loss" | "date-to-illiquid-median-price-paid" | "date-to-market-price-to-from-1d-to-1w-realized-price-ratio-1y-sma" | "date-to-year-2011-realized-price-1p" | "date-to-from-10y-negative-realized-loss" | "date-to-year-2012-negative-unrealized-loss" | "date-to-from-6m-to-1y-realized-price-99-5p" | "date-to-year-2019-90p-price-paid" | "date-to-shrimp-utxo-count" | "date-to-humpback-input-volume" | "date-to-up-to-4m-input-count" | "date-to-p2sh-realized-loss" | "date-to-year-2019-value-created" | "date-to-up-to-6m-65p-price-paid" | "date-to-market-price-to-price-21d-sma-ratio-1p" | "date-to-cumulative-coinblocks-created" | "date-to-from-1y-to-2y-supply-in-loss-to-own-supply-ratio" | "date-to-crab-cumulative-net-realized-profit-and-loss-1m-net-change" | "date-to-market-price-to-up-to-5m-realized-price-ratio-1p" | "date-to-market-price-to-from-6m-to-1y-realized-price-ratio" | "date-to-market-price-to-year-2024-realized-price-ratio-99-5p" | "date-to-price-2y-sma-0-1p" | "date-to-year-2020-70p-price-paid" | "date-to-from-7y-to-10y-30p-price-paid" | "date-to-year-2023-realized-price-0-1p" | "date-to-highly-liquid-address-count" | "date-to-up-to-1d-net-realized-profit-and-loss" | "date-to-market-price-to-year-2017-realized-price-ratio-1m-sma" | "date-to-from-3y-to-5y-input-volume" | "date-to-liquid-25p-price-paid" | "date-to-up-to-1m-net-realized-profit-and-loss" | "date-to-year-2016-value-created" | "date-to-year-2010-realized-cap" | "date-to-liquid-cumulative-realized-loss" | "date-to-up-to-2m-realized-price-0-5p" | "date-to-up-to-4m-supply-in-loss" | "date-to-up-to-7y-spent-output-profit-ratio" | "date-to-fish-90p-price-paid" | "date-to-illiquid-10p-price-paid" | "date-to-market-price-to-from-1m-to-3m-realized-price-ratio-1m-sma" | "date-to-true-market-net-unrealized-profit-and-loss" | "date-to-from-2y-supply" | "date-to-p2pk-15p-price-paid" | "date-to-up-to-1d-supply-in-profit" | "date-to-from-1w-to-1m-value-created" | "date-to-market-price-to-year-2022-realized-price-ratio-1m-sma" | "date-to-whale-cumulative-realized-loss" | "date-to-liquid-value-created" | "date-to-from-2y-70p-price-paid" | "date-to-crab-supply-in-profit-to-circulating-supply-ratio" | "date-to-highly-liquid-realized-loss" | "date-to-highly-liquid-net-unrealized-profit-and-loss" | "date-to-market-price-to-year-2011-realized-price-ratio-1y-sma" | "date-to-p2wpkh-input-count" | "date-to-shrimp-adjusted-spent-output-profit-ratio" | "date-to-up-to-3y-realized-loss" | "date-to-year-2009-input-count" | "date-to-year-2016-adjusted-value-destroyed" | "date-to-up-to-1m-30p-price-paid" | "date-to-plankton-40p-price-paid" | "date-to-year-2016-net-unrealized-profit-and-loss-to-market-cap-ratio" | "date-to-market-price-to-from-5y-to-7y-realized-price-ratio-99-5p" | "date-to-p2tr-cumulative-net-realized-profit-and-loss" | "date-to-from-6m-to-1y-cumulative-realized-profit" | "date-to-from-5y-to-7y-realized-cap" | "date-to-year-2017-halved-supply" | "date-to-up-to-1d-cumulative-net-realized-profit-and-loss-1m-net-change" | "date-to-from-1y-to-2y-95p-price-paid" | "date-to-year-2017-realized-price-99p" | "date-to-year-2019-supply-in-profit-to-circulating-supply-ratio" | "date-to-market-price-to-up-to-6m-realized-price-ratio-0-1p" | "date-to-sth-55p-price-paid" | "date-to-from-3m-to-6m-supply-in-loss-to-own-supply-ratio" | "date-to-p2pkh-input-volume" | "date-to-from-1d-to-1w-net-unrealized-profit-and-loss-to-market-cap-ratio" | "date-to-up-to-1d-40p-price-paid" | "date-to-market-price-to-year-2021-realized-price-ratio-1m-sma" | "date-to-whale-cumulative-net-realized-profit-and-loss" | "date-to-highly-liquid-95p-price-paid" | "date-to-sth-adjusted-spent-output-profit-ratio" | "date-to-year-2011-realized-loss" | "date-to-year-2014-supply-to-circulating-supply-ratio" | "date-to-highly-liquid-realized-price-0-5p" | "date-to-plankton-realized-price-99-5p" | "date-to-year-2015-55p-price-paid" | "date-to-up-to-7y-realized-price-0-1p" | "date-to-from-2y-60p-price-paid" | "date-to-from-1d-to-1w-60p-price-paid" | "date-to-up-to-1w-cumulative-net-realized-profit-and-loss" | "date-to-up-to-6m-realized-cap" | "date-to-year-2021-20p-price-paid" | "date-to-from-1y-realized-loss" | "date-to-p2tr-realized-cap" | "date-to-market-price-to-price-2y-sma-ratio-0-1p" | "date-to-from-5y-to-7y-supply-in-profit" | "date-to-up-to-7y-realized-price-0-5p" | "date-to-p2wpkh-55p-price-paid" | "date-to-up-to-4m-realized-price-99-5p" | "date-to-p2sh-spent-output-profit-ratio" | "date-to-plankton-realized-price-99-9p" | "date-to-sth-net-realized-profit-and-loss" | "date-to-p2pkh-net-unrealized-profit-and-loss-to-market-cap-ratio" | "date-to-up-to-3y-cumulative-realized-profit" | "date-to-up-to-4m-median-price-paid" | "date-to-year-2015-adjusted-spent-output-profit-ratio" | "date-to-market-price-to-year-2009-realized-price-ratio-0-1p" | "date-to-from-3m-to-6m-55p-price-paid" | "date-to-up-to-4m-value-destroyed" | "date-to-market-price-to-megalodon-realized-price-ratio-1y-sma-momentum-oscillator" | "date-to-fish-60p-price-paid" | "date-to-market-price-to-p2wsh-realized-price-ratio-99-5p" | "date-to-from-1y-sell-side-risk-ratio" | "date-to-year-2012-net-unrealized-profit-and-loss" | "date-to-year-2015-25p-price-paid" | "date-to-year-2011-realized-price-0-5p" | "date-to-from-1y-net-unrealized-profit-and-loss" | "date-to-from-1y-supply" | "date-to-year-2018-value-created" | "date-to-fish-net-realized-profit-and-loss-to-market-cap-ratio" | "date-to-p2sh-unrealized-loss" | "date-to-from-1y-realized-price-0-1p" | "date-to-up-to-2m-realized-loss" | "date-to-market-price-to-year-2019-realized-price-ratio-1m-sma" | "date-to-market-price-to-price-144d-sma-ratio" | "date-to-up-to-7y-sell-side-risk-ratio" | "date-to-shrimp-supply" | "date-to-market-price-to-up-to-2y-realized-price-ratio" | "date-to-market-price-to-year-2021-realized-price-ratio-1y-sma" | "date-to-up-to-1y-net-realized-profit-and-loss-to-market-cap-ratio" | "date-to-from-2y-to-3y-95p-price-paid" | "date-to-shark-10p-price-paid" | "date-to-year-2020-15p-price-paid" | "date-to-humpback-value-created" | "date-to-up-to-1w-realized-price-0-5p" | "date-to-year-2012-unrealized-loss" | "date-to-illiquid-negative-realized-loss" | "date-to-year-2024-realized-cap-1m-net-change" | "date-to-p2pkh-realized-price-1p" | "date-to-price-8d-sma" | "date-to-up-to-6m-80p-price-paid" | "date-to-humpback-supply-in-loss-to-circulating-supply-ratio" | "date-to-up-to-10y-95p-price-paid" | "date-to-from-7y-to-10y-60p-price-paid" | "date-to-market-price-to-up-to-7y-realized-price-ratio-0-5p" | "date-to-year-2011-30p-price-paid" | "date-to-shark-cumulative-net-realized-profit-and-loss-1m-net-change" | "date-to-up-to-6m-95p-price-paid" | "date-to-year-2014-net-unrealized-profit-and-loss" | "date-to-year-2023-75p-price-paid" | "date-to-p2pkh-adjusted-value-destroyed" | "date-to-year-2010-input-volume" | "date-to-year-2015-supply-in-loss-to-circulating-supply-ratio" | "date-to-up-to-5y-supply-in-loss" | "date-to-market-price-to-shrimp-realized-price-ratio-1m-sma" | "date-to-humpback-realized-loss" | "date-to-market-price-to-humpback-realized-price-ratio-1y-sma" | "date-to-market-price-to-shark-realized-price-ratio-1y-sma-momentum-oscillator" | "date-to-highly-liquid-90p-price-paid" | "date-to-80p-price-paid" | "date-to-whale-negative-unrealized-loss" | "date-to-up-to-1w-cumulative-realized-loss" | "date-to-p2sh-25p-price-paid" | "date-to-price-200w-sma-0-5p" | "date-to-market-price-to-up-to-10y-realized-price-ratio-99p" | "date-to-p2sh-10p-price-paid" | "date-to-year-2014-sell-side-risk-ratio" | "date-to-year-2013-supply-in-loss-to-own-supply-ratio" | "date-to-sth-realized-loss" | "date-to-market-price-to-illiquid-realized-price-ratio-99-9p" | "date-to-market-price-to-year-2024-realized-price-ratio" | "date-to-market-price-to-p2sh-realized-price-ratio-1m-sma" | "date-to-up-to-7y-10p-price-paid" | "date-to-year-2010-unrealized-loss" | "date-to-market-price-to-year-2014-realized-price-ratio-1y-sma-momentum-oscillator" | "date-to-up-to-15y-net-unrealized-profit-and-loss" | "date-to-year-2023-60p-price-paid" | "date-to-crab-realized-value" | "date-to-market-price-to-realized-price-ratio-1p" | "date-to-shark-60p-price-paid" | "date-to-year-2015-90p-price-paid" | "date-to-from-1y-to-2y-10p-price-paid" | "date-to-p2sh-adjusted-value-created" | "date-to-fish-10p-price-paid" | "date-to-market-price-to-from-5y-to-7y-realized-price-ratio-0-5p" | "date-to-market-price-to-active-price-ratio-1y-sma" | "date-to-year-2012-30p-price-paid" | "date-to-from-2y-to-3y-cumulative-net-realized-profit-and-loss" | "date-to-year-2018-realized-price" | "date-to-plankton-net-realized-profit-and-loss-to-market-cap-ratio" | "date-to-from-2y-to-3y-adjusted-value-destroyed" | "date-to-lth-40p-price-paid" | "date-to-up-to-4m-55p-price-paid" | "date-to-year-2012-15p-price-paid" | "date-to-year-2015-realized-value" | "date-to-from-10y-to-15y-sell-side-risk-ratio" | "date-to-liquid-30p-price-paid" | "date-to-market-price-to-whale-realized-price-ratio-99-9p" | "date-to-up-to-10y-adjusted-spent-output-profit-ratio" | "date-to-up-to-2y-15p-price-paid" | "date-to-from-3y-to-5y-realized-value" | "date-to-crab-address-count" | "date-to-price-1m-sma-1p" | "date-to-year-2020-supply-to-circulating-supply-ratio" | "date-to-year-2024-realized-loss" | "date-to-humpback-supply-in-profit-to-circulating-supply-ratio" | "date-to-from-10y-supply-in-profit" | "date-to-p2wpkh-realized-cap-1m-net-change" | "date-to-market-price-to-price-55d-sma-ratio-0-1p" | "date-to-transactions-per-second" | "date-to-shrimp-negative-unrealized-loss" | "date-to-up-to-7y-net-unrealized-profit-and-loss" | "date-to-year-2009-95p-price-paid" | "date-to-up-to-15y-85p-price-paid" | "date-to-market-price-to-fish-realized-price-ratio-0-5p" | "date-to-market-price-to-from-4y-realized-price-ratio-99-5p" | "date-to-year-2014-supply-in-loss-to-circulating-supply-ratio" | "date-to-market-price-to-price-13d-sma-ratio-0-5p" | "date-to-market-price-to-price-13d-sma-ratio-99-9p" | "date-to-price-89d-sma-0-5p" | "date-to-market-price-to-up-to-2m-realized-price-ratio-99p" | "date-to-fish-sell-side-risk-ratio" | "date-to-up-to-2y-realized-price-0-5p" | "date-to-market-price-to-from-3y-to-5y-realized-price-ratio-1p" | "date-to-market-price-to-year-2013-realized-price-ratio-99p" | "date-to-year-2014-supply-in-profit-to-circulating-supply-ratio" | "date-to-humpback-spent-output-profit-ratio" | "date-to-year-2017-adjusted-value-created" | "date-to-year-2012-45p-price-paid" | "date-to-from-3y-to-5y-80p-price-paid" | "date-to-humpback-negative-unrealized-loss" | "date-to-from-1w-to-1m-adjusted-spent-output-profit-ratio" | "date-to-p2pkh-85p-price-paid" | "date-to-from-7y-to-10y-35p-price-paid" | "date-to-up-to-5y-supply-in-loss-to-circulating-supply-ratio" | "date-to-up-to-1d-realized-loss" | "date-to-fish-cumulative-net-realized-profit-and-loss" | "date-to-market-price-to-up-to-2m-realized-price-ratio-1p" | "date-to-up-to-1d-realized-price-0-1p" | "date-to-up-to-6m-realized-price-99p" | "date-to-year-2017-unrealized-loss" | "date-to-from-2y-halved-supply-to-circulating-supply-ratio" | "date-to-market-price-to-price-8d-sma-ratio-1y-sma" | "date-to-year-2019-realized-price-99-5p" | "date-to-year-2020-input-volume" | "date-to-year-2024-net-unrealized-profit-and-loss" | "date-to-block-vbytes-1d-90p" | "date-to-up-to-3m-35p-price-paid" | "date-to-market-price-to-price-8d-sma-ratio-1w-sma" | "date-to-up-to-1d-90p-price-paid" | "date-to-up-to-5y-unrealized-profit" | "date-to-p2sh-supply-in-loss-to-own-supply-ratio" | "date-to-year-2021-net-realized-profit-and-loss-to-market-cap-ratio" | "date-to-up-to-1y-unrealized-profit" | "date-to-year-2021-realized-price-99-5p" | "date-to-price-2y-sma" | "date-to-from-2y-to-3y-60p-price-paid" | "date-to-lth-value-created" | "date-to-market-price-to-humpback-realized-price-ratio-0-1p" | "date-to-p2tr-unrealized-loss" | "date-to-year-2014-realized-cap-1m-net-change" | "date-to-year-2017-supply-in-profit-to-own-supply-ratio" | "date-to-p2sh-cumulative-realized-profit" | "date-to-realized-price-0-1p" | "date-to-year-2017-value-destroyed" | "date-to-from-4y-halved-supply-to-circulating-supply-ratio" | "date-to-from-10y-cumulative-realized-loss" | "date-to-market-price-to-highly-liquid-realized-price-ratio-1y-sma" | "date-to-p2pk-cumulative-net-realized-profit-and-loss-1m-net-change" | "date-to-up-to-2y-negative-realized-loss" | "date-to-market-price-to-price-144d-sma-ratio-1y-sma" | "date-to-year-2011-net-realized-profit-and-loss" | "date-to-market-price-to-year-2023-realized-price-ratio-99-9p" | "date-to-from-10y-negative-unrealized-loss" | "date-to-up-to-3m-halved-supply-to-circulating-supply-ratio" | "date-to-market-price-to-up-to-2y-realized-price-ratio-99-9p" | "date-to-market-price-to-price-89d-sma-ratio-1w-sma" | "date-to-market-price-to-from-1y-realized-price-ratio-1w-sma" | "date-to-market-price-to-fish-realized-price-ratio-0-1p" | "date-to-p2sh-55p-price-paid" | "date-to-shrimp-input-volume" | "date-to-up-to-1d-net-unrealized-profit-and-loss" | "date-to-up-to-5m-value-created" | "date-to-up-to-4m-35p-price-paid" | "date-to-market-price-to-up-to-7y-realized-price-ratio-1m-sma" | "date-to-year-2015-sell-side-risk-ratio" | "date-to-from-2y-to-3y-realized-cap" | "date-to-up-to-1y-supply-to-circulating-supply-ratio" | "date-to-up-to-3y-60p-price-paid" | "date-to-year-2021-supply-in-loss" | "date-to-year-2013-realized-cap-1m-net-change" | "date-to-year-2009-value-created" | "date-to-shark-halved-supply-to-circulating-supply-ratio" | "date-to-shark-utxo-count" | "date-to-up-to-1d-supply-to-circulating-supply-ratio" | "date-to-highly-liquid-net-unrealized-profit-and-loss-to-market-cap-ratio" | "date-to-up-to-2y-realized-profit" | "date-to-up-to-6m-supply-to-circulating-supply-ratio" | "date-to-p2pkh-supply-in-loss-to-circulating-supply-ratio" | "date-to-year-2012-90p-price-paid" | "date-to-year-2016-realized-price-99-5p" | "date-to-year-2024-realized-profit" | "date-to-from-1w-to-1m-35p-price-paid" | "date-to-megalodon-realized-price-0-1p" | "date-to-humpback-60p-price-paid" | "date-to-from-2y-adjusted-spent-output-profit-ratio" | "date-to-market-price-to-price-21d-sma-ratio-1w-sma" | "date-to-market-price-to-year-2024-realized-price-ratio-1m-sma" | "date-to-up-to-15y-supply-in-profit-to-circulating-supply-ratio" | "date-to-from-6m-to-1y-65p-price-paid" | "date-to-sth-adjusted-value-destroyed" | "date-to-up-to-2y-realized-price-99-5p" | "date-to-up-to-7y-halved-supply" | "date-to-from-1y-value-destroyed" | "date-to-from-3y-to-5y-cumulative-realized-loss" | "date-to-market-price-to-liquid-realized-price-ratio-99p" | "date-to-year-2019-realized-price-0-5p" | "date-to-from-5y-to-7y-45p-price-paid" | "date-to-market-price-to-from-1m-to-3m-realized-price-ratio-99-5p" | "date-to-crab-75p-price-paid" | "date-to-from-3y-to-5y-20p-price-paid" | "date-to-market-price-to-up-to-3m-realized-price-ratio-0-5p" | "date-to-year-2011-05p-price-paid" | "date-to-year-2018-net-unrealized-profit-and-loss-to-market-cap-ratio" | "date-to-shrimp-value-created" | "date-to-market-price-to-from-7y-to-10y-realized-price-ratio-1y-sma-momentum-oscillator" | "date-to-from-5y-to-7y-cumulative-net-realized-profit-and-loss-1m-net-change" | "date-to-illiquid-05p-price-paid" | "date-to-fish-realized-price-99-9p" | "date-to-market-price-to-up-to-4m-realized-price-ratio-0-5p" | "date-to-shark-supply-in-loss-to-own-supply-ratio" | "date-to-shrimp-supply-in-loss-to-circulating-supply-ratio" | "date-to-block-vbytes-1d-10p" | "date-to-sth-supply" | "date-to-p2pk-cumulative-realized-profit" | "date-to-year-2009-05p-price-paid" | "date-to-from-5y-to-7y-55p-price-paid" | "date-to-market-price-to-price-144d-sma-ratio-1y-sma-momentum-oscillator" | "date-to-market-price-to-up-to-4m-realized-price-ratio-1y-sma" | "date-to-market-price-to-realized-price-ratio-1y-sma-momentum-oscillator" | "date-to-from-3m-to-6m-supply-to-circulating-supply-ratio" | "date-to-from-7y-to-10y-net-unrealized-profit-and-loss" | "date-to-up-to-2y-55p-price-paid" | "date-to-year-2010-realized-price" | "date-to-year-2013-realized-price-1p" | "date-to-year-2022-80p-price-paid" | "date-to-from-1w-to-1m-cumulative-realized-loss" | "date-to-market-price-to-p2sh-realized-price-ratio-1p" | "date-to-p2pk-utxo-count" | "date-to-market-price-to-from-15y-realized-price-ratio-1w-sma" | "date-to-p2pkh-55p-price-paid" | "date-to-from-2y-cumulative-net-realized-profit-and-loss-1m-net-change" | "date-to-market-price-to-from-3y-to-5y-realized-price-ratio-1w-sma" | "date-to-from-3m-to-6m-negative-realized-loss" | "date-to-up-to-1w-median-price-paid" | "date-to-up-to-5m-supply-in-loss" | "date-to-market-price-to-price-1w-sma-ratio-1w-sma" | "date-to-market-price-to-price-89d-sma-ratio-0-1p" | "date-to-year-2017-70p-price-paid" | "date-to-from-4y-realized-price-0-1p" | "date-to-up-to-5y-value-destroyed" | "date-to-p2pkh-supply-in-profit" | "date-to-market-price-to-true-market-mean-ratio-1w-sma" | "date-to-lth-05p-price-paid" | "date-to-from-3y-to-5y-85p-price-paid" | "date-to-sth-80p-price-paid" | "date-to-crab-cumulative-realized-loss" | "date-to-from-1w-to-1m-70p-price-paid" | "date-to-up-to-2y-cumulative-realized-profit" | "date-to-market-price-to-price-21d-sma-ratio-1y-sma" | "date-to-year-2014-55p-price-paid" | "date-to-year-2023-realized-loss" | "date-to-year-2024-supply-in-loss" | "date-to-up-to-5y-05p-price-paid" | "date-to-up-to-1m-95p-price-paid" | "date-to-year-2016-supply" | "date-to-market-price-to-realized-price-ratio-1y-sma" | "date-to-up-to-1w-value-created" | "date-to-market-price-to-active-price-ratio-99-5p" | "date-to-liquid-95p-price-paid" | "date-to-from-2y-cumulative-net-realized-profit-and-loss" | "date-to-up-to-1y-negative-unrealized-loss" | "date-to-up-to-1m-halved-supply-to-circulating-supply-ratio" | "date-to-up-to-3y-sell-side-risk-ratio" | "date-to-up-to-4m-30p-price-paid" | "date-to-year-2021-halved-supply" | "date-to-transaction-volume-in-dollars-1m-sma" | "date-to-year-2022-25p-price-paid" | "date-to-year-2023-cumulative-net-realized-profit-and-loss-1m-net-change" | "date-to-fish-unrealized-profit" | "date-to-up-to-1d-halved-supply" | "date-to-year-2015-realized-price" | "date-to-year-2022-spent-output-profit-ratio" | "date-to-illiquid-15p-price-paid" | "date-to-p2tr-supply-in-profit" | "date-to-sth-unrealized-profit" | "date-to-from-1m-to-3m-cumulative-realized-loss" | "date-to-price-8d-sma-99-5p" | "date-to-from-1y-cumulative-net-realized-profit-and-loss-1m-net-change" | "date-to-p2wsh-supply-in-profit-to-circulating-supply-ratio" | "date-to-up-to-2y-realized-price-1p" | "date-to-from-1y-realized-value" | "date-to-from-1y-to-2y-30p-price-paid" | "date-to-year-2018-supply" | "date-to-year-2020-45p-price-paid" | "date-to-market-price-to-p2tr-realized-price-ratio-1m-sma" | "date-to-sth-unrealized-loss" | "date-to-from-15y-realized-price-99p" | "date-to-up-to-6m-supply-in-profit-to-circulating-supply-ratio" | "date-to-up-to-1y-55p-price-paid" | "date-to-from-15y-value-destroyed" | "date-to-shrimp-sell-side-risk-ratio" | "date-to-year-2010-65p-price-paid" | "date-to-up-to-10y-cumulative-net-realized-profit-and-loss-1m-net-change" | "date-to-p2tr-05p-price-paid" | "date-to-year-2017-realized-price-1p" | "date-to-liquid-negative-realized-loss" | "date-to-market-price-to-from-1d-to-1w-realized-price-ratio-1p" | "date-to-up-to-15y-75p-price-paid" | "date-to-from-4y-cumulative-net-realized-profit-and-loss-1m-net-change" | "date-to-market-price-to-year-2019-realized-price-ratio-99p" | "date-to-year-2015-value-created" | "date-to-up-to-4m-adjusted-spent-output-profit-ratio" | "date-to-p2pkh-supply-in-profit-to-circulating-supply-ratio" | "date-to-year-2012-55p-price-paid" | "date-to-market-price-to-year-2010-realized-price-ratio-0-5p" | "date-to-from-10y-to-15y-adjusted-value-created" | "date-to-market-price-to-from-7y-to-10y-realized-price-ratio-1p" | "date-to-market-price-to-true-market-mean-ratio-0-1p" | "date-to-price-1w-sma" | "date-to-vaulted-supply-net-change" | "date-to-year-2018-cumulative-net-realized-profit-and-loss" | "date-to-from-6m-to-1y-realized-price-0-5p" | "date-to-from-10y-to-15y-realized-price-0-5p" | "date-to-up-to-4m-adjusted-value-created" | "date-to-year-2010-value-created" | "date-to-plankton-25p-price-paid" | "date-to-megalodon-net-unrealized-profit-and-loss-to-market-cap-ratio" | "date-to-from-1d-to-1w-realized-price-99-9p" | "date-to-up-to-3m-75p-price-paid" | "date-to-year-2016-supply-to-circulating-supply-ratio" | "date-to-year-2022-net-realized-profit-and-loss-to-market-cap-ratio" | "date-to-block-vbytes-1d-75p" | "date-to-market-price-to-year-2014-realized-price-ratio" | "date-to-from-10y-75p-price-paid" | "date-to-from-1m-to-3m-sell-side-risk-ratio" | "date-to-investor-cap" | "date-to-megalodon-realized-price-99p" | "date-to-up-to-15y-sell-side-risk-ratio" | "date-to-plankton-10p-price-paid" | "date-to-from-10y-10p-price-paid" | "date-to-vaulted-price" | "date-to-year-2011-realized-price" | "date-to-p2wsh-45p-price-paid" | "date-to-p2wpkh-realized-value" | "date-to-market-price-to-year-2023-realized-price-ratio-1y-sma-momentum-oscillator" | "date-to-p2pk-spent-output-profit-ratio" | "date-to-year-2009-adjusted-value-created" | "date-to-year-2023-10p-price-paid" | "date-to-illiquid-value-created" | "date-to-p2pk-95p-price-paid" | "date-to-price-4y-sma-0-1p" | "date-to-p2wsh-supply-in-loss-to-own-supply-ratio" | "date-to-year-2022-adjusted-value-created" | "date-to-from-2y-realized-price-99p" | "date-to-p2wsh-realized-price-99-9p" | "date-to-from-10y-to-15y-adjusted-spent-output-profit-ratio" | "date-to-market-price-to-shark-realized-price-ratio-1w-sma" | "date-to-market-price-to-year-2020-realized-price-ratio-99-9p" | "date-to-market-price-to-price-1y-sma-ratio-0-1p" | "date-to-year-2010-net-unrealized-profit-and-loss" | "date-to-year-2022-70p-price-paid" | "date-to-year-2015-negative-unrealized-loss" | "date-to-year-2017-25p-price-paid" | "date-to-liquid-70p-price-paid" | "date-to-year-2019-net-unrealized-profit-and-loss" | "date-to-from-1y-to-2y-realized-price-1p" | "date-to-p2wsh-net-unrealized-profit-and-loss-to-market-cap-ratio" | "date-to-sth-95p-price-paid" | "date-to-sth-supply-in-profit-to-own-supply-ratio" | "date-to-year-2009-45p-price-paid" | "date-to-price-200w-sma-0-1p" | "date-to-from-1y-utxo-count" | "date-to-up-to-5y-65p-price-paid" | "date-to-market-price-to-price-200w-sma-ratio-1w-sma" | "date-to-p2tr-negative-unrealized-loss" | "date-to-liquid-cumulative-net-realized-profit-and-loss" | "date-to-up-to-1y-adjusted-spent-output-profit-ratio" | "date-to-year-2010-40p-price-paid" | "date-to-up-to-6m-supply-in-profit-to-own-supply-ratio" | "date-to-year-2013-cumulative-realized-profit" | "date-to-from-2y-to-3y-40p-price-paid" | "date-to-from-3m-to-6m-median-price-paid" | "date-to-up-to-1y-65p-price-paid" | "date-to-market-price-to-from-10y-to-15y-realized-price-ratio" | "date-to-from-3y-to-5y-65p-price-paid" | "date-to-up-to-7y-negative-realized-loss" | "date-to-year-2023-sell-side-risk-ratio" | "date-to-year-2016-halved-supply" | "date-to-highly-liquid-supply-in-loss-to-own-supply-ratio" | "date-to-from-4y-supply-in-profit-to-circulating-supply-ratio" | "date-to-fish-halved-supply" | "date-to-market-price-to-price-4y-sma-ratio-1p" | "date-to-up-to-10y-cumulative-realized-profit" | "date-to-up-to-6m-net-realized-profit-and-loss" | "date-to-p2tr-value-created" | "date-to-up-to-7y-cumulative-realized-loss" | "date-to-crab-net-realized-profit-and-loss" | "date-to-from-3y-to-5y-70p-price-paid" | "date-to-up-to-7y-cumulative-realized-profit" | "date-to-year-2023-adjusted-value-created" | "date-to-from-4y-90p-price-paid" | "date-to-p2pk-realized-cap" | "date-to-from-1d-to-1w-65p-price-paid" | "date-to-price-13d-sma-0-1p" | "date-to-up-to-15y-negative-unrealized-loss" | "date-to-up-to-2m-realized-price" | "date-to-price-6y-total-return" | "date-to-shark-realized-cap" | "date-to-market-price-to-year-2009-realized-price-ratio-99p" | "date-to-year-2011-60p-price-paid" | "date-to-from-4y-sell-side-risk-ratio" | "date-to-from-1m-to-3m-realized-cap" | "date-to-up-to-10y-05p-price-paid" | "date-to-up-to-3m-supply-in-loss-to-own-supply-ratio" | "date-to-market-price-to-year-2022-realized-price-ratio" | "date-to-from-15y-supply-in-loss-to-own-supply-ratio" | "date-to-from-3y-to-5y-cumulative-net-realized-profit-and-loss-1m-net-change" | "date-to-market-price-to-price-144d-sma-ratio-99p" | "date-to-shrimp-95p-price-paid" | "date-to-megalodon-utxo-count" | "date-to-active-price-99p" | "date-to-total-cointime-value-destroyed" | "date-to-year-2013-realized-price-0-1p" | "date-to-up-to-1w-15p-price-paid" | "date-to-from-1m-to-3m-spent-output-profit-ratio" | "date-to-year-2012-realized-cap" | "date-to-year-2019-cumulative-realized-loss" | "date-to-illiquid-65p-price-paid" | "date-to-from-5y-to-7y-20p-price-paid" | "date-to-whale-utxo-count" | "date-to-year-2021-realized-price" | "date-to-p2pk-45p-price-paid" | "date-to-year-2012-supply-in-profit-to-own-supply-ratio" | "date-to-up-to-6m-supply-in-loss-to-own-supply-ratio" | "date-to-market-price-to-price-200w-sma-ratio-1y-sma" | "date-to-from-3y-to-5y-adjusted-value-destroyed" | "date-to-from-1m-to-3m-realized-profit" | "date-to-70p-price-paid" | "date-to-illiquid-realized-value" | "date-to-plankton-realized-cap-1m-net-change" | "date-to-year-2015-10p-price-paid" | "date-to-transaction-count-1w-sma" | "date-to-year-2017-05p-price-paid" | "date-to-market-price-to-megalodon-realized-price-ratio-0-5p" | "date-to-up-to-6m-25p-price-paid" | "date-to-plankton-cumulative-net-realized-profit-and-loss" | "date-to-megalodon-adjusted-value-destroyed" | "date-to-market-price-to-from-3y-to-5y-realized-price-ratio-0-5p" | "date-to-market-price-to-year-2010-realized-price-ratio-1p" | "date-to-from-4y-60p-price-paid" | "date-to-up-to-2m-85p-price-paid" | "date-to-market-price-to-up-to-10y-realized-price-ratio" | "date-to-up-to-6m-85p-price-paid" | "date-to-p2tr-15p-price-paid" | "date-to-year-2020-net-realized-profit-and-loss-to-market-cap-ratio" | "date-to-up-to-10y-supply-in-loss-to-own-supply-ratio" | "date-to-year-2024-cumulative-realized-profit" | "date-to-year-2012-supply-to-circulating-supply-ratio" | "date-to-up-to-5m-supply-to-circulating-supply-ratio" | "date-to-year-2015-realized-cap-1m-net-change" | "date-to-p2tr-supply-in-loss" | "date-to-megalodon-realized-profit" | "date-to-plankton-address-count" | "date-to-realized-price-99-9p" | "date-to-year-2016-realized-price-0-5p" | "date-to-year-2022-cumulative-net-realized-profit-and-loss" | "date-to-year-2018-cumulative-net-realized-profit-and-loss-1m-net-change" | "date-to-up-to-3y-35p-price-paid" | "date-to-year-2021-cumulative-net-realized-profit-and-loss-1m-net-change" | "date-to-market-price-to-from-2y-to-3y-realized-price-ratio-1w-sma" | "date-to-up-to-3m-value-created" | "date-to-year-2012-median-price-paid" | "date-to-shark-unrealized-profit" | "date-to-from-10y-to-15y-unrealized-profit" | "date-to-from-3m-to-6m-realized-price-0-1p" | "date-to-year-2016-spent-output-profit-ratio" | "date-to-up-to-2m-negative-unrealized-loss" | "date-to-year-2021-realized-cap-1m-net-change" | "date-to-from-1m-to-3m-unrealized-loss" | "date-to-from-1y-to-2y-realized-cap" | "date-to-megalodon-supply-in-loss" | "date-to-market-price-to-from-2y-to-3y-realized-price-ratio-1y-sma" | "date-to-up-to-4m-supply" | "date-to-up-to-15y-median-price-paid" | "date-to-from-15y-realized-cap" | "date-to-up-to-1w-negative-unrealized-loss" | "date-to-up-to-5m-60p-price-paid" | "date-to-from-1y-to-2y-85p-price-paid" | "date-to-up-to-3m-realized-price-1p" | "date-to-from-1d-to-1w-40p-price-paid" | "date-to-shrimp-median-price-paid" | "date-to-whale-address-count" | "date-to-p2pkh-supply-in-loss-to-own-supply-ratio" | "date-to-market-price-to-up-to-1m-realized-price-ratio-1p" | "date-to-market-price-to-up-to-1w-realized-price-ratio-1m-sma" | "date-to-shark-halved-supply" | "date-to-from-1y-input-count" | "date-to-up-to-1y-35p-price-paid" | "date-to-year-2018-utxo-count" | "date-to-p2wpkh-negative-unrealized-loss" | "date-to-from-10y-15p-price-paid" | "date-to-up-to-1w-net-realized-profit-and-loss" | "date-to-from-10y-35p-price-paid" | "date-to-realized-cap" | "date-to-crab-supply-to-circulating-supply-ratio" | "date-to-market-price-to-up-to-5m-realized-price-ratio-1m-sma" | "date-to-up-to-5y-adjusted-value-created" | "date-to-year-2010-net-realized-profit-and-loss-to-market-cap-ratio" | "date-to-year-2011-15p-price-paid" | "date-to-cumulative-net-realized-profit-and-loss" | "date-to-from-1m-to-3m-net-unrealized-profit-and-loss-to-market-cap-ratio" | "date-to-shark-sell-side-risk-ratio" | "date-to-year-2019-45p-price-paid" | "date-to-from-5y-to-7y-70p-price-paid" | "date-to-year-2012-input-volume" | "date-to-from-15y-supply-in-loss-to-circulating-supply-ratio" | "date-to-market-price-to-highly-liquid-realized-price-ratio-1p" | "date-to-year-2015-cumulative-realized-loss" | "date-to-p2pkh-net-unrealized-profit-and-loss" | "date-to-market-price-to-year-2020-realized-price-ratio-1m-sma" | "date-to-year-2024-net-realized-profit-and-loss-to-market-cap-ratio" | "date-to-year-2022-realized-price-1p" | "date-to-highly-liquid-halved-supply" | "date-to-p2wpkh-cumulative-net-realized-profit-and-loss-1m-net-change" | "date-to-up-to-10y-sell-side-risk-ratio" | "date-to-up-to-1y-supply-in-profit" | "date-to-year-2012-realized-loss" | "date-to-year-2014-85p-price-paid" | "date-to-close" | "date-to-year-2018-60p-price-paid" | "date-to-market-price-to-price-144d-sma-ratio-99-9p" | "date-to-up-to-1y-25p-price-paid" | "date-to-up-to-2m-negative-realized-loss" | "date-to-up-to-10y-adjusted-value-created" | "date-to-from-1d-to-1w-net-realized-profit-and-loss" | "date-to-market-price-to-cointime-price-ratio-1y-sma" | "date-to-up-to-1w-60p-price-paid" | "date-to-from-5y-to-7y-sell-side-risk-ratio" | "date-to-market-price-to-sth-realized-price-ratio-1w-sma" | "date-to-p2wsh-realized-price-99-5p" | "date-to-up-to-2m-55p-price-paid" | "date-to-whale-supply-in-profit" | "date-to-year-2021-supply-in-loss-to-circulating-supply-ratio" | "date-to-from-7y-to-10y-75p-price-paid" | "date-to-up-to-1m-negative-realized-loss" | "date-to-from-15y-40p-price-paid" | "date-to-market-price-to-illiquid-realized-price-ratio-99-5p" | "date-to-market-price-to-up-to-3m-realized-price-ratio-99p" | "date-to-market-price-to-year-2017-realized-price-ratio" | "date-to-up-to-10y-70p-price-paid" | "date-to-up-to-2y-net-realized-profit-and-loss" | "date-to-year-2012-value-destroyed" | "date-to-year-2013-net-unrealized-profit-and-loss" | "date-to-p2sh-adjusted-spent-output-profit-ratio" | "date-to-up-to-4m-supply-in-profit-to-own-supply-ratio" | "date-to-market-price-to-p2wpkh-realized-price-ratio-99p" | "date-to-megalodon-net-realized-profit-and-loss" | "date-to-illiquid-35p-price-paid" | "date-to-p2wpkh-adjusted-value-destroyed" | "date-to-humpback-35p-price-paid" | "date-to-from-1w-to-1m-cumulative-net-realized-profit-and-loss" | "date-to-market-price-to-plankton-realized-price-ratio-0-5p" | "date-to-market-price-to-year-2020-realized-price-ratio-1y-sma" | "date-to-up-to-15y-05p-price-paid" | "date-to-year-2018-halved-supply-to-circulating-supply-ratio" | "date-to-from-10y-halved-supply-to-circulating-supply-ratio" | "date-to-market-price-to-vaulted-price-ratio-1w-sma" | "date-to-shrimp-net-realized-profit-and-loss" | "date-to-from-5y-to-7y-utxo-count" | "date-to-market-price-to-price-13d-sma-ratio" | "date-to-market-price-to-year-2010-realized-price-ratio-99p" | "date-to-sth-45p-price-paid" | "date-to-year-2024-negative-realized-loss" | "date-to-negative-realized-loss" | "date-to-from-1w-to-1m-cumulative-realized-profit" | "date-to-up-to-4m-cumulative-realized-profit" | "date-to-crab-65p-price-paid" | "date-to-from-10y-to-15y-supply-in-loss" | "date-to-market-price-to-year-2009-realized-price-ratio-1y-sma" | "date-to-up-to-3y-input-count" | "date-to-market-price-to-up-to-1d-realized-price-ratio" | "date-to-up-to-15y-value-destroyed" | "date-to-from-15y-realized-value" | "date-to-from-1w-to-1m-input-volume" | "date-to-up-to-7y-supply-in-loss-to-own-supply-ratio" | "date-to-from-1m-to-3m-realized-price" | "date-to-p2pkh-value-created" | "date-to-from-1m-to-3m-value-destroyed" | "date-to-from-1y-45p-price-paid" | "date-to-from-7y-to-10y-adjusted-value-destroyed" | "date-to-up-to-7y-utxo-count" | "date-to-p2wpkh-adjusted-value-created" | "date-to-up-to-1m-realized-loss" | "date-to-market-price-to-active-price-ratio-1y-sma-momentum-oscillator" | "date-to-market-price-to-illiquid-realized-price-ratio" | "date-to-megalodon-90p-price-paid" | "date-to-from-5y-to-7y-input-count" | "date-to-market-price-to-price-89d-sma-ratio-1m-sma" | "date-to-fish-supply" | "date-to-supply-in-profit-to-circulating-supply-ratio" | "date-to-from-2y-to-3y-realized-profit" | "date-to-market-price-to-up-to-5m-realized-price-ratio" | "date-to-market-price-to-from-2y-to-3y-realized-price-ratio-1m-sma" | "date-to-market-price-to-true-market-mean-ratio-99p" | "date-to-from-1y-to-2y-cumulative-net-realized-profit-and-loss" | "date-to-from-6m-to-1y-realized-value" | "date-to-p2pkh-15p-price-paid" | "date-to-from-1y-net-realized-profit-and-loss" | "date-to-up-to-6m-net-unrealized-profit-and-loss-to-market-cap-ratio" | "date-to-year-2022-sell-side-risk-ratio" | "date-to-up-to-15y-cumulative-net-realized-profit-and-loss" | "date-to-humpback-halved-supply" | "date-to-whale-supply" | "date-to-year-2021-supply-in-profit-to-circulating-supply-ratio" | "date-to-from-7y-to-10y-supply-to-circulating-supply-ratio" | "date-to-year-2010-90p-price-paid" | "date-to-from-3m-to-6m-unrealized-loss" | "date-to-from-7y-to-10y-halved-supply-to-circulating-supply-ratio" | "date-to-up-to-1d-realized-price" | "date-to-from-1d-to-1w-realized-price-99p" | "date-to-from-1y-adjusted-value-created" | "date-to-p2wpkh-realized-price-99-5p" | "date-to-up-to-4m-supply-to-circulating-supply-ratio" | "date-to-from-15y-30p-price-paid" | "date-to-market-price-to-year-2018-realized-price-ratio-99-9p" | "date-to-p2pk-value-destroyed" | "date-to-up-to-3m-cumulative-realized-loss" | "date-to-humpback-70p-price-paid" | "date-to-up-to-5y-supply-in-profit" | "date-to-from-10y-25p-price-paid" | "date-to-year-2009-realized-cap" | "date-to-p2pkh-value-destroyed" | "date-to-year-2010-cumulative-net-realized-profit-and-loss-1m-net-change" | "date-to-year-2018-20p-price-paid" | "date-to-year-2022-realized-loss" | "date-to-p2tr-realized-profit" | "date-to-up-to-4m-20p-price-paid" | "date-to-year-2009-65p-price-paid" | "date-to-up-to-7y-realized-price-99p" | "date-to-block-weight-1d-25p" | "date-to-p2wpkh-80p-price-paid" | "date-to-from-1y-to-2y-median-price-paid" | "date-to-market-price-to-p2pkh-realized-price-ratio-0-5p" | "date-to-year-2015-35p-price-paid" | "date-to-price-8d-sma-0-5p" | "date-to-fish-80p-price-paid" | "date-to-p2tr-realized-price-99-9p" | "date-to-year-2009-realized-price-99-5p" | "date-to-market-price-to-up-to-5y-realized-price-ratio-99p" | "date-to-p2sh-45p-price-paid" | "date-to-hash-rate-1w-sma" | "date-to-p2sh-input-count" | "date-to-year-2010-adjusted-value-created" | "date-to-up-to-15y-adjusted-value-created" | "date-to-blocks-mined" | "date-to-up-to-1m-60p-price-paid" | "date-to-year-2021-realized-cap" | "date-to-up-to-3y-net-unrealized-profit-and-loss-to-market-cap-ratio" | "date-to-up-to-3y-halved-supply" | "date-to-year-2010-adjusted-spent-output-profit-ratio" | "date-to-year-2024-05p-price-paid" | "date-to-crab-realized-cap" | "date-to-p2wpkh-realized-price-0-5p" | "date-to-p2pkh-05p-price-paid" | "date-to-up-to-15y-realized-cap" | "date-to-from-1w-to-1m-realized-value" | "date-to-p2pk-realized-price-99p" | "date-to-price-1y-sma" | "date-to-from-1m-to-3m-realized-price-1p" | "date-to-from-3y-to-5y-supply" | "date-to-plankton-adjusted-value-created" | "date-to-from-15y-adjusted-spent-output-profit-ratio" | "date-to-shrimp-realized-value" | "date-to-year-2019-realized-price-99p" | "date-to-year-2010-cumulative-net-realized-profit-and-loss" | "date-to-market-price-to-price-144d-sma-ratio-0-5p" | "date-to-market-price-to-from-1y-realized-price-ratio-1y-sma" | "date-to-up-to-5y-realized-price-0-1p" | "date-to-from-4y-65p-price-paid" | "date-to-p2pk-realized-price-99-5p" | "date-to-from-10y-30p-price-paid" | "date-to-market-price-to-price-1w-sma-ratio-99-9p" | "date-to-market-price-to-up-to-1d-realized-price-ratio-1y-sma-momentum-oscillator" | "date-to-crab-net-unrealized-profit-and-loss" | "date-to-up-to-6m-net-realized-profit-and-loss-to-market-cap-ratio" | "date-to-crab-halved-supply-to-circulating-supply-ratio" | "date-to-from-1y-to-2y-90p-price-paid" | "date-to-from-15y-supply-in-loss" | "date-to-market-price-to-from-10y-to-15y-realized-price-ratio-0-1p" | "date-to-market-price-to-liquid-realized-price-ratio-1w-sma" | "date-to-up-to-1d-75p-price-paid" | "date-to-up-to-1w-adjusted-value-destroyed" | "date-to-market-price-to-realized-price-ratio-1m-sma" | "date-to-lth-unrealized-profit" | "date-to-year-2013-negative-realized-loss" | "date-to-year-2022-input-count" | "date-to-p2sh-value-destroyed" | "date-to-shark-input-count" | "date-to-from-3y-to-5y-cumulative-net-realized-profit-and-loss" | "date-to-year-2013-70p-price-paid" | "date-to-year-2015-85p-price-paid" | "date-to-from-1y-realized-profit" | "date-to-market-price-to-price-1m-sma-ratio-0-5p" | "date-to-year-2009-realized-price-1p" | "date-to-from-1y-to-2y-65p-price-paid" | "date-to-plankton-35p-price-paid" | "date-to-up-to-15y-realized-profit" | "date-to-year-2009-utxo-count" | "date-to-market-price-to-from-6m-to-1y-realized-price-ratio-99-5p" | "date-to-year-2012-net-realized-profit-and-loss" | "date-to-from-1d-to-1w-supply-in-loss-to-own-supply-ratio" | "date-to-from-3m-to-6m-cumulative-realized-loss" | "date-to-from-15y-realized-price-0-1p" | "date-to-market-price-to-cointime-price-ratio" | "date-to-market-price-to-fish-realized-price-ratio-1m-sma" | "date-to-true-market-mean-1p" | "date-to-up-to-4m-supply-in-loss-to-own-supply-ratio" | "date-to-year-2013-75p-price-paid" | "date-to-up-to-1d-adjusted-value-destroyed" | "date-to-from-1y-to-2y-cumulative-realized-loss" | "date-to-market-price-to-shrimp-realized-price-ratio-99p" | "date-to-market-price-to-price-89d-sma-ratio-0-5p" | "date-to-p2pk-net-unrealized-profit-and-loss-to-market-cap-ratio" | "date-to-p2pkh-input-count" | "date-to-up-to-3m-median-price-paid" | "date-to-market-price-to-up-to-5m-realized-price-ratio-1y-sma-momentum-oscillator" | "date-to-year-2014-adjusted-spent-output-profit-ratio" | "date-to-shark-45p-price-paid" | "date-to-up-to-1m-realized-price-99p" | "date-to-year-2023-55p-price-paid" | "date-to-market-price-to-from-6m-to-1y-realized-price-ratio-99p" | "date-to-up-to-3m-supply-to-circulating-supply-ratio" | "date-to-up-to-3y-adjusted-value-created" | "date-to-year-2016-40p-price-paid" | "date-to-from-2y-to-3y-cumulative-realized-profit" | "date-to-year-2019-adjusted-spent-output-profit-ratio" | "date-to-year-2022-realized-price-0-1p" | "date-to-p2pkh-realized-price-99-5p" | "date-to-year-2019-supply-in-profit-to-own-supply-ratio" | "date-to-from-2y-to-3y-supply" | "date-to-from-10y-to-15y-net-unrealized-profit-and-loss" | "date-to-up-to-10y-25p-price-paid" | "date-to-up-to-1d-adjusted-spent-output-profit-ratio" | "date-to-year-2022-supply-in-profit-to-own-supply-ratio" | "date-to-from-1w-to-1m-30p-price-paid" | "date-to-p2pkh-net-realized-profit-and-loss-to-market-cap-ratio" | "date-to-year-2019-15p-price-paid" | "date-to-from-2y-to-3y-55p-price-paid" | "date-to-p2wpkh-realized-price-99p" | "date-to-market-price-to-price-34d-sma-ratio-99-5p" | "date-to-shrimp-realized-cap-1m-net-change" | "date-to-from-4y-cumulative-realized-loss" | "date-to-whale-median-price-paid" | "date-to-market-price-to-up-to-2y-realized-price-ratio-1y-sma-momentum-oscillator" | "date-to-market-price-to-price-1m-sma-ratio-1y-sma" | "date-to-from-1y-to-2y-adjusted-value-created" | "date-to-market-price-to-lth-realized-price-ratio" | "date-to-net-unrealized-profit-and-loss" | "date-to-transaction-volume-1w-sma" | "date-to-up-to-1m-35p-price-paid" | "date-to-from-3m-to-6m-utxo-count" | "date-to-up-to-1y-realized-price-99p" | "date-to-year-2017-65p-price-paid" | "date-to-market-price-to-price-89d-sma-ratio-1p" | "date-to-market-price-to-up-to-15y-realized-price-ratio-0-5p" | "date-to-up-to-10y-net-realized-profit-and-loss" | "date-to-p2wpkh-45p-price-paid" | "date-to-up-to-5y-spent-output-profit-ratio" | "date-to-year-2022-75p-price-paid" | "date-to-market-price-to-year-2012-realized-price-ratio" | "date-to-p2wsh-55p-price-paid" | "date-to-year-2018-25p-price-paid" | "date-to-market-price-to-sth-realized-price-ratio-99-9p" | "date-to-up-to-1d-80p-price-paid" | "date-to-up-to-1w-realized-loss" | "date-to-fish-adjusted-spent-output-profit-ratio" | "date-to-lth-60p-price-paid" | "date-to-up-to-3y-supply-in-loss-to-circulating-supply-ratio" | "date-to-up-to-1d-spent-output-profit-ratio" | "date-to-from-1w-to-1m-supply-in-profit-to-own-supply-ratio" | "date-to-p2wsh-realized-loss" | "date-to-from-5y-to-7y-85p-price-paid" | "date-to-market-price-to-year-2017-realized-price-ratio-0-1p" | "date-to-market-price-to-from-3m-to-6m-realized-price-ratio" | "date-to-up-to-7y-15p-price-paid" | "date-to-year-2010-95p-price-paid" | "date-to-shark-supply-in-profit-to-circulating-supply-ratio" | "date-to-year-2013-10p-price-paid" | "date-to-year-2014-cumulative-net-realized-profit-and-loss-1m-net-change" | "date-to-p2wsh-sell-side-risk-ratio" | "date-to-p2pk-35p-price-paid" | "date-to-from-15y-realized-price" | "date-to-up-to-7y-85p-price-paid" | "date-to-block-weight-1d-max" | "date-to-highly-liquid-45p-price-paid" | "date-to-p2wsh-halved-supply-to-circulating-supply-ratio" | "date-to-year-2017-adjusted-spent-output-profit-ratio" | "date-to-liquid-input-count" | "date-to-fish-realized-price-0-1p" | "date-to-crab-value-created" | "date-to-market-price-to-plankton-realized-price-ratio-99-9p" | "date-to-shark-supply-in-profit-to-own-supply-ratio" | "date-to-year-2022-realized-cap" | "date-to-p2pk-median-price-paid" | "date-to-from-1w-to-1m-80p-price-paid" | "date-to-up-to-1m-40p-price-paid" | "date-to-up-to-1w-utxo-count" | "date-to-from-1m-to-3m-90p-price-paid" | "date-to-from-2y-realized-price-99-9p" | "date-to-illiquid-realized-price-99p" | "date-to-year-2018-adjusted-spent-output-profit-ratio" | "date-to-lth-cumulative-net-realized-profit-and-loss" | "date-to-p2pkh-median-price-paid" | "date-to-up-to-3m-95p-price-paid" | "date-to-highly-liquid-realized-price-99-9p" | "date-to-year-2022-supply-in-loss-to-own-supply-ratio" | "date-to-crab-adjusted-value-created" | "date-to-year-2011-net-unrealized-profit-and-loss" | "date-to-humpback-supply-in-loss-to-own-supply-ratio" | "date-to-market-price-to-p2sh-realized-price-ratio" | "date-to-market-price-to-from-10y-realized-price-ratio-1m-sma" | "date-to-year-2022-unrealized-loss" | "date-to-market-price-to-price-2y-sma-ratio-1m-sma" | "date-to-up-to-10y-20p-price-paid" | "date-to-p2pk-input-volume" | "date-to-price-8d-sma-1p" | "date-to-market-price-to-from-1w-to-1m-realized-price-ratio-1y-sma-momentum-oscillator" | "date-to-whale-spent-output-profit-ratio" | "date-to-year-2024-80p-price-paid" | "date-to-last-coinbase" | "date-to-fees" | "date-to-market-price-to-up-to-5y-realized-price-ratio" | "date-to-p2pk-adjusted-value-destroyed" | "date-to-year-2021-45p-price-paid" | "date-to-market-price-to-from-15y-realized-price-ratio-1p" | "date-to-up-to-1d-realized-profit" | "date-to-market-price-to-price-1m-sma-ratio-1y-sma-momentum-oscillator" | "date-to-last-subsidy-in-dollars" | "date-to-market-price-to-year-2021-realized-price-ratio" | "date-to-megalodon-realized-price-1p" | "date-to-up-to-3y-adjusted-spent-output-profit-ratio" | "date-to-year-2010-unrealized-profit" | "date-to-year-2018-adjusted-value-destroyed" | "date-to-year-2019-35p-price-paid" | "date-to-market-price-to-from-2y-to-3y-realized-price-ratio-99p" | "date-to-p2sh-realized-price-0-5p" | "date-to-liquid-halved-supply-to-circulating-supply-ratio" | "date-to-highly-liquid-median-price-paid" | "date-to-market-price-to-year-2020-realized-price-ratio-0-1p" | "date-to-up-to-1m-negative-unrealized-loss" | "date-to-up-to-3y-halved-supply-to-circulating-supply-ratio" | "date-to-illiquid-utxo-count" | "date-to-illiquid-40p-price-paid" | "date-to-lth-input-count" | "date-to-year-2023-15p-price-paid" | "date-to-from-1d-to-1w-value-created" | "date-to-year-2017-realized-price-99-9p" | "date-to-market-price-to-year-2023-realized-price-ratio-1m-sma" | "date-to-from-1w-to-1m-10p-price-paid" | "date-to-from-2y-supply-in-profit-to-own-supply-ratio" | "date-to-from-10y-net-realized-profit-and-loss-to-market-cap-ratio" | "date-to-p2pk-70p-price-paid" | "date-to-year-2011-45p-price-paid" | "date-to-year-2021-halved-supply-to-circulating-supply-ratio" | "date-to-up-to-6m-35p-price-paid" | "date-to-up-to-1w-net-unrealized-profit-and-loss" | "date-to-up-to-4m-cumulative-realized-loss" | "date-to-fish-halved-supply-to-circulating-supply-ratio" | "date-to-from-6m-to-1y-cumulative-net-realized-profit-and-loss-1m-net-change" | "date-to-from-3y-to-5y-negative-unrealized-loss" | "date-to-market-price-to-year-2017-realized-price-ratio-99p" | "date-to-shrimp-70p-price-paid" | "date-to-market-price-to-up-to-1d-realized-price-ratio-1w-sma" | "date-to-from-2y-to-3y-realized-price-1p" | "date-to-up-to-5y-75p-price-paid" | "date-to-year-2020-35p-price-paid" | "date-to-market-price-to-from-1y-to-2y-realized-price-ratio-0-1p" | "date-to-market-price-to-up-to-1y-realized-price-ratio-1w-sma" | "date-to-up-to-1y-45p-price-paid" | "date-to-megalodon-cumulative-net-realized-profit-and-loss-1m-net-change" | "date-to-p2pk-supply-in-profit-to-circulating-supply-ratio" | "date-to-year-2011-net-unrealized-profit-and-loss-to-market-cap-ratio" | "date-to-up-to-1m-70p-price-paid" | "date-to-up-to-4m-realized-price-0-5p" | "date-to-market-price-to-up-to-1w-realized-price-ratio-1y-sma-momentum-oscillator" | "date-to-year-2015-supply-in-loss" | "date-to-fish-realized-price-99-5p" | "date-to-up-to-4m-net-unrealized-profit-and-loss" | "date-to-fish-35p-price-paid" | "date-to-market-price-to-active-price-ratio-99p" | "date-to-up-to-2m-sell-side-risk-ratio" | "date-to-year-2013-cumulative-net-realized-profit-and-loss" | "date-to-from-4y-utxo-count" | "date-to-up-to-1m-value-destroyed" | "date-to-whale-input-count" | "date-to-from-15y-halved-supply" | "date-to-from-2y-supply-in-loss-to-own-supply-ratio" | "date-to-year-2019-supply" | "date-to-shrimp-realized-price-99p" | "date-to-whale-realized-value" | "date-to-from-2y-to-3y-realized-price-0-5p" | "date-to-p2pkh-adjusted-value-created" | "date-to-year-2020-cumulative-net-realized-profit-and-loss-1m-net-change" | "date-to-market-price-to-price-8d-sma-ratio-99p" | "date-to-year-2021-sell-side-risk-ratio" | "date-to-year-2021-supply-in-profit" | "date-to-year-2023-95p-price-paid" | "date-to-plankton-halved-supply-to-circulating-supply-ratio" | "date-to-plankton-supply-in-loss-to-own-supply-ratio" | "date-to-whale-85p-price-paid" | "date-to-market-price-to-up-to-2m-realized-price-ratio" | "date-to-year-2014-spent-output-profit-ratio" | "date-to-from-3m-to-6m-net-realized-profit-and-loss-to-market-cap-ratio" | "date-to-lth-95p-price-paid" | "date-to-from-2y-to-3y-15p-price-paid" | "date-to-year-2023-realized-price-99-9p" | "date-to-up-to-1w-value-destroyed" | "date-to-year-2017-unrealized-profit" | "date-to-from-4y-net-unrealized-profit-and-loss-to-market-cap-ratio" | "date-to-price-1w-sma-99-9p" | "date-to-megalodon-45p-price-paid" | "date-to-up-to-2m-supply-in-loss" | "date-to-sth-input-volume" | "date-to-p2pkh-cumulative-realized-loss" | "date-to-up-to-6m-20p-price-paid" | "date-to-from-2y-40p-price-paid" | "date-to-illiquid-negative-unrealized-loss" | "date-to-up-to-1m-input-count" | "date-to-from-1y-supply-in-profit-to-circulating-supply-ratio" | "date-to-illiquid-supply-in-profit" | "date-to-market-price-to-up-to-7y-realized-price-ratio" | "date-to-up-to-3m-value-destroyed" | "date-to-up-to-6m-cumulative-realized-loss" | "date-to-up-to-15y-spent-output-profit-ratio" | "date-to-year-2012-realized-value" | "date-to-p2sh-halved-supply" | "date-to-from-6m-to-1y-adjusted-value-destroyed" | "date-to-market-price-to-megalodon-realized-price-ratio-99-5p" | "date-to-market-price-to-year-2009-realized-price-ratio-0-5p" | "date-to-whale-realized-price-1p" | "date-to-from-3m-to-6m-adjusted-spent-output-profit-ratio" | "date-to-up-to-15y-65p-price-paid" | "date-to-transactions-per-second-1w-sma" | "date-to-plankton-cumulative-realized-profit" | "date-to-year-2017-cumulative-realized-profit" | "date-to-year-2015-75p-price-paid" | "date-to-year-2015-net-unrealized-profit-and-loss" | "date-to-year-2018-supply-in-loss-to-circulating-supply-ratio" | "date-to-year-2011-value-created" | "date-to-year-2013-realized-value" | "date-to-year-2014-supply" | "date-to-liquid-input-volume" | "date-to-from-1y-to-2y-input-volume" | "date-to-lth-supply-to-circulating-supply-ratio" | "date-to-from-3y-to-5y-spent-output-profit-ratio" | "date-to-market-price-to-up-to-4m-realized-price-ratio" | "date-to-market-price-to-up-to-3m-realized-price-ratio-1w-sma" | "date-to-from-2y-to-3y-realized-price" | "date-to-illiquid-supply-in-loss" | "date-to-up-to-1d-55p-price-paid" | "date-to-from-4y-realized-cap" | "date-to-liquid-realized-price-0-5p" | "date-to-year-2015-65p-price-paid" | "date-to-up-to-2y-05p-price-paid" | "date-to-from-15y-supply-in-profit-to-own-supply-ratio" | "date-to-up-to-5m-supply-in-loss-to-own-supply-ratio" | "date-to-from-3m-to-6m-supply-in-profit-to-own-supply-ratio" | "date-to-market-price-to-year-2016-realized-price-ratio-99-9p" | "date-to-shrimp-cumulative-realized-profit" | "date-to-up-to-7y-05p-price-paid" | "date-to-up-to-3m-realized-cap" | "date-to-from-4y-net-realized-profit-and-loss-to-market-cap-ratio" | "date-to-from-6m-to-1y-supply-in-loss-to-own-supply-ratio" | "date-to-market-price-to-plankton-realized-price-ratio-1p" | "date-to-market-price-to-vaulted-price-ratio-99-9p" | "date-to-from-10y-supply-in-profit-to-circulating-supply-ratio" | "date-to-plankton-adjusted-spent-output-profit-ratio" | "date-to-market-price-to-fish-realized-price-ratio-1w-sma" | "date-to-year-2011-40p-price-paid" | "date-to-market-price-to-year-2012-realized-price-ratio-1y-sma-momentum-oscillator" | "date-to-vaulted-price-1p" | "date-to-year-2014-realized-cap" | "date-to-crab-cumulative-realized-profit" | "date-to-plankton-realized-price-1p" | "date-to-price-144d-sma-99-5p" | "date-to-market-price-to-price-1m-sma-ratio-1p" | "date-to-p2pkh-cumulative-net-realized-profit-and-loss" | "date-to-up-to-3y-realized-cap-1m-net-change" | "date-to-megalodon-unrealized-profit" | "date-to-year-2015-05p-price-paid" | "date-to-liquid-halved-supply" | "date-to-price-1m-sma-99-5p" | "date-to-year-2010-realized-price-0-1p" | "date-to-year-2018-65p-price-paid" | "date-to-market-price-to-from-1m-to-3m-realized-price-ratio-1y-sma-momentum-oscillator" | "date-to-from-3m-to-6m-sell-side-risk-ratio" | "date-to-year-2016-realized-profit" | "date-to-shrimp-adjusted-value-created" | "date-to-up-to-7y-realized-value" | "date-to-price-34d-sma-1p" | "date-to-up-to-5y-realized-loss" | "date-to-plankton-realized-loss" | "date-to-up-to-7y-35p-price-paid" | "date-to-p2pkh-70p-price-paid" | "date-to-price-1m-sma-0-1p" | "date-to-up-to-2y-utxo-count" | "date-to-from-6m-to-1y-35p-price-paid" | "date-to-year-2012-supply-in-profit-to-circulating-supply-ratio" | "date-to-from-6m-to-1y-80p-price-paid" | "date-to-year-2023-value-created" | "date-to-humpback-10p-price-paid" | "date-to-up-to-6m-unrealized-loss" | "date-to-market-price-to-up-to-1m-realized-price-ratio-1w-sma" | "date-to-up-to-7y-unrealized-profit" | "date-to-from-1m-to-3m-75p-price-paid" | "date-to-year-2013-supply-to-circulating-supply-ratio" | "date-to-up-to-5m-40p-price-paid" | "date-to-price-34d-sma-0-1p" | "date-to-from-10y-70p-price-paid" | "date-to-shark-input-volume" | "date-to-sth-value-created" | "date-to-p2tr-realized-price-0-1p" | "date-to-lth-halved-supply-to-circulating-supply-ratio" | "date-to-market-price-to-highly-liquid-realized-price-ratio-99-9p" | "date-to-p2wpkh-unrealized-loss" | "date-to-year-2013-realized-price-99p" | "date-to-year-2015-unrealized-profit" | "date-to-market-price-to-from-10y-to-15y-realized-price-ratio-1w-sma" | "date-to-transaction-volume-in-dollars-1w-sma" | "date-to-from-6m-to-1y-realized-price" | "date-to-from-1m-to-3m-cumulative-realized-profit" | "date-to-megalodon-cumulative-realized-profit" | "date-to-sth-net-realized-profit-and-loss-to-market-cap-ratio" | "date-to-year-2016-95p-price-paid" | "date-to-cumulative-fees" | "date-to-from-5y-to-7y-supply-to-circulating-supply-ratio" | "date-to-from-1m-to-3m-realized-loss" | "date-to-year-2015-negative-realized-loss" | "date-to-from-1w-to-1m-realized-price-0-5p" | "date-to-p2tr-spent-output-profit-ratio" | "date-to-from-15y-negative-realized-loss" | "date-to-from-3y-to-5y-utxo-count" | "date-to-from-3m-to-6m-cumulative-realized-profit" | "date-to-up-to-15y-45p-price-paid" | "date-to-market-price-to-fish-realized-price-ratio-1y-sma-momentum-oscillator" | "date-to-up-to-3y-05p-price-paid" | "date-to-megalodon-35p-price-paid" | "date-to-year-2021-35p-price-paid" | "date-to-lth-realized-cap" | "date-to-market-price-to-price-1m-sma-ratio-99-5p" | "date-to-from-2y-to-3y-realized-price-0-1p" | "date-to-from-1m-to-3m-supply-in-profit-to-own-supply-ratio" | "date-to-lth-65p-price-paid" | "date-to-market-price-to-price-34d-sma-ratio-1y-sma-momentum-oscillator" | "date-to-from-3y-to-5y-supply-in-profit-to-circulating-supply-ratio" | "date-to-year-2009-input-volume" | "date-to-year-2010-10p-price-paid" | "date-to-from-10y-20p-price-paid" | "date-to-market-price-to-p2wsh-realized-price-ratio-99-9p" | "date-to-highly-liquid-70p-price-paid" | "date-to-from-1y-spent-output-profit-ratio" | "date-to-market-price-to-all-time-high-ratio" | "date-to-market-price-to-price-55d-sma-ratio-1m-sma" | "date-to-from-1y-realized-price-1p" | "date-to-up-to-2y-realized-price" | "date-to-humpback-net-realized-profit-and-loss" | "date-to-from-4y-30p-price-paid" | "date-to-lth-halved-supply" | "date-to-adjusted-spent-output-profit-ratio" | "date-to-active-price-99-5p" | "date-to-market-price-to-price-1y-sma-ratio-99-9p" | "date-to-megalodon-realized-price-99-5p" | "date-to-p2pk-supply-in-profit" | "date-to-illiquid-supply-in-profit-to-circulating-supply-ratio" | "date-to-up-to-1w-realized-value" | "date-to-up-to-2m-supply-in-loss-to-own-supply-ratio" | "date-to-market-price-to-liquid-realized-price-ratio-99-5p" | "date-to-lth-realized-price" | "date-to-market-price-to-p2wsh-realized-price-ratio-99p" | "date-to-cumulative-coinblocks-destroyed" | "date-to-market-price-to-year-2013-realized-price-ratio" | "date-to-up-to-10y-supply-in-profit-to-circulating-supply-ratio" | "date-to-p2tr-supply-in-profit-to-own-supply-ratio" | "date-to-up-to-6m-supply-in-loss-to-circulating-supply-ratio" | "date-to-up-to-4m-05p-price-paid" | "date-to-up-to-1m-supply-in-loss-to-own-supply-ratio" | "date-to-up-to-7y-halved-supply-to-circulating-supply-ratio" | "date-to-up-to-3m-10p-price-paid" | "date-to-from-10y-halved-supply" | "date-to-market-price-to-year-2024-realized-price-ratio-1p" | "date-to-from-1m-to-3m-95p-price-paid" | "date-to-shrimp-address-count" | "date-to-up-to-15y-35p-price-paid" | "date-to-block-weight-1d-75p" | "date-to-market-price-to-shrimp-realized-price-ratio-1y-sma" | "date-to-up-to-1y-95p-price-paid" | "date-to-up-to-1y-70p-price-paid" | "date-to-from-3y-to-5y-realized-price-1p" | "date-to-market-price-to-year-2017-realized-price-ratio-1y-sma-momentum-oscillator" | "date-to-up-to-5m-realized-price-1p" | "date-to-from-1y-to-2y-supply-in-profit-to-circulating-supply-ratio" | "date-to-60p-price-paid" | "date-to-from-10y-median-price-paid" | "date-to-illiquid-60p-price-paid" | "date-to-p2wsh-realized-price-99p" | "date-to-whale-realized-loss" | "date-to-market-price-to-year-2018-realized-price-ratio-1y-sma-momentum-oscillator" | "date-to-up-to-5y-55p-price-paid" | "date-to-year-2009-70p-price-paid" | "date-to-year-2021-unrealized-loss" | "date-to-market-price-to-highly-liquid-realized-price-ratio-0-1p" | "date-to-up-to-5m-realized-price-99-5p" | "date-to-p2wpkh-net-unrealized-profit-and-loss-to-market-cap-ratio" | "date-to-year-2011-negative-unrealized-loss" | "date-to-up-to-3y-realized-price-1p" | "date-to-year-2023-realized-price-1p" | "date-to-from-4y-supply-in-loss" | "date-to-illiquid-realized-price-99-9p" | "date-to-year-2013-95p-price-paid" | "date-to-crab-realized-loss" | "date-to-year-2014-25p-price-paid" | "date-to-from-3y-to-5y-35p-price-paid" | "date-to-whale-80p-price-paid" | "date-to-15p-price-paid" | "date-to-from-15y-input-volume" | "date-to-up-to-1y-sell-side-risk-ratio" | "date-to-from-3m-to-6m-supply" | "date-to-lth-supply-in-loss" | "date-to-from-4y-supply-to-circulating-supply-ratio" | "date-to-blocks-mined-1m-sum" | "date-to-market-price-to-from-1y-to-2y-realized-price-ratio-1m-sma" | "date-to-megalodon-10p-price-paid" | "date-to-up-to-1y-20p-price-paid" | "date-to-up-to-1y-90p-price-paid" | "date-to-up-to-3m-adjusted-value-created" | "date-to-from-5y-to-7y-90p-price-paid" | "date-to-market-price-to-realized-price-ratio-0-1p" | "date-to-up-to-6m-realized-price-99-5p" | "date-to-year-2012-cumulative-net-realized-profit-and-loss" | "date-to-year-2016-70p-price-paid" | "date-to-up-to-6m-cumulative-net-realized-profit-and-loss" | "date-to-year-2018-realized-profit" | "date-to-fees-1y-sum" | "date-to-market-price-to-year-2022-realized-price-ratio-0-1p" | "date-to-shrimp-realized-price" | "date-to-price-144d-sma" | "date-to-from-10y-to-15y-45p-price-paid" | "date-to-year-2023-input-volume" | "date-to-p2sh-address-count" | "date-to-market-price-to-price-89d-sma-ratio-99-9p" | "date-to-highly-liquid-realized-cap-1m-net-change" | "date-to-up-to-10y-cumulative-realized-loss" | "date-to-coinbase-1y-sum" | "date-to-year-2010-halved-supply" | "date-to-from-4y-80p-price-paid" | "date-to-sth-realized-price-0-5p" | "date-to-year-2017-realized-value" | "date-to-lth-realized-cap-1m-net-change" | "date-to-cointime-adjusted-yearly-inflation-rate" | "date-to-market-price-to-from-10y-realized-price-ratio-99p" | "date-to-up-to-2m-15p-price-paid" | "date-to-year-2018-net-realized-profit-and-loss-to-market-cap-ratio" | "date-to-up-to-1y-30p-price-paid" | "date-to-whale-30p-price-paid" | "date-to-from-2y-to-3y-net-realized-profit-and-loss" | "date-to-up-to-3m-spent-output-profit-ratio" | "date-to-lth-supply-in-loss-to-circulating-supply-ratio" | "date-to-from-3m-to-6m-supply-in-profit-to-circulating-supply-ratio" | "date-to-market-price-to-price-89d-sma-ratio-1y-sma" | "date-to-crab-15p-price-paid" | "date-to-market-price-to-from-4y-realized-price-ratio-1p" | "date-to-up-to-6m-supply" | "date-to-year-2019-supply-in-loss" | "date-to-year-2020-realized-price-1p" | "date-to-liquid-65p-price-paid" | "date-to-from-5y-to-7y-realized-cap-1m-net-change" | "date-to-p2wsh-70p-price-paid" | "date-to-up-to-1m-realized-cap" | "date-to-year-2015-95p-price-paid" | "date-to-market-price-to-from-4y-realized-price-ratio-0-1p" | "date-to-market-price-to-up-to-1w-realized-price-ratio-0-5p" | "date-to-market-price-to-up-to-3y-realized-price-ratio" | "date-to-from-3y-to-5y-halved-supply-to-circulating-supply-ratio" | "date-to-megalodon-25p-price-paid" | "date-to-market-price-to-lth-realized-price-ratio-99p" | "date-to-year-2010-realized-price-99p" | "date-to-up-to-1w-25p-price-paid" | "date-to-market-price-to-from-2y-realized-price-ratio-1y-sma" | "date-to-market-price-to-year-2023-realized-price-ratio-0-1p" | "date-to-up-to-15y-supply-in-profit-to-own-supply-ratio" | "date-to-year-2019-realized-value" | "date-to-sth-negative-realized-loss" | "date-to-up-to-1w-65p-price-paid" | "date-to-from-2y-utxo-count" | "date-to-block-vbytes-1d-max" | "date-to-market-price-to-lth-realized-price-ratio-1p" | "date-to-year-2020-95p-price-paid" | "date-to-95p-price-paid" | "date-to-lth-supply-in-loss-to-own-supply-ratio" | "date-to-crab-realized-price" | "date-to-from-7y-to-10y-realized-price-99-5p" | "date-to-market-price-to-from-15y-realized-price-ratio-99p" | "date-to-market-price-to-crab-realized-price-ratio-1y-sma-momentum-oscillator" | "date-to-from-1y-to-2y-70p-price-paid" | "date-to-market-price-to-up-to-2m-realized-price-ratio-1w-sma" | "date-to-from-10y-to-15y-adjusted-value-destroyed" | "date-to-p2pk-sell-side-risk-ratio" | "date-to-p2sh-65p-price-paid" | "date-to-up-to-5y-35p-price-paid" | "date-to-up-to-5y-70p-price-paid" | "date-to-up-to-5y-realized-profit" | "date-to-year-2023-supply-in-profit" | "date-to-up-to-1d-60p-price-paid" | "date-to-up-to-15y-net-unrealized-profit-and-loss-to-market-cap-ratio" | "date-to-from-10y-to-15y-cumulative-realized-loss" | "date-to-from-5y-to-7y-unrealized-profit" | "date-to-from-2y-value-created" | "date-to-highly-liquid-cumulative-realized-loss" | "date-to-megalodon-realized-cap" | "date-to-year-2016-input-volume" | "date-to-year-2020-spent-output-profit-ratio" | "date-to-from-3m-to-6m-40p-price-paid" | "date-to-from-6m-to-1y-60p-price-paid" | "date-to-market-price-to-year-2015-realized-price-ratio-1y-sma" | "date-to-up-to-15y-utxo-count" | "date-to-p2wsh-value-created" | "date-to-up-to-1d-realized-price-1p" | "date-to-from-1w-to-1m-realized-price-99-9p" | "date-to-35p-price-paid" | "date-to-crab-55p-price-paid" | "date-to-up-to-10y-net-unrealized-profit-and-loss" | "date-to-from-1w-to-1m-utxo-count" | "date-to-up-to-1d-unrealized-loss" | "date-to-up-to-6m-realized-price-99-9p" | "date-to-year-2016-20p-price-paid" | "date-to-illiquid-net-unrealized-profit-and-loss-to-market-cap-ratio" | "date-to-illiquid-realized-cap" | "date-to-lth-55p-price-paid" | "date-to-up-to-1d-30p-price-paid" | "date-to-up-to-2y-40p-price-paid" | "date-to-from-3m-to-6m-value-destroyed" | "date-to-from-2y-median-price-paid" | "date-to-market-price-to-price-55d-sma-ratio-0-5p" | "date-to-market-price-to-p2sh-realized-price-ratio-0-1p" | "date-to-price-1y-sma-99p" | "date-to-year-2010-adjusted-value-destroyed" | "date-to-up-to-1y-80p-price-paid" | "date-to-market-price-to-shrimp-realized-price-ratio-99-9p" | "date-to-market-price-to-cointime-price-ratio-1m-sma" | "date-to-market-price-to-p2wpkh-realized-price-ratio-1m-sma" | "date-to-market-price-to-up-to-15y-realized-price-ratio-99-5p" | "date-to-fish-negative-realized-loss" | "date-to-from-1m-to-3m-70p-price-paid" | "date-to-p2pkh-75p-price-paid" | "date-to-from-6m-to-1y-55p-price-paid" | "date-to-up-to-10y-realized-price-0-1p" | "date-to-up-to-2y-spent-output-profit-ratio" | "date-to-market-price-to-p2wsh-realized-price-ratio-0-5p" | "date-to-fish-supply-in-loss-to-own-supply-ratio" | "date-to-market-price-to-price-55d-sma-ratio-99p" | "date-to-up-to-5y-30p-price-paid" | "date-to-p2pk-unrealized-profit" | "date-to-plankton-20p-price-paid" | "date-to-up-to-1w-80p-price-paid" | "date-to-up-to-1m-adjusted-value-created" | "date-to-from-3m-to-6m-supply-in-loss" | "date-to-market-price-to-from-1w-to-1m-realized-price-ratio" | "date-to-up-to-5y-input-count" | "date-to-whale-net-realized-profit-and-loss-to-market-cap-ratio" | "date-to-year-2011-unrealized-profit" | "date-to-year-2015-supply-in-profit" | "date-to-year-2022-20p-price-paid" | "date-to-from-10y-to-15y-55p-price-paid" | "date-to-whale-supply-in-loss-to-circulating-supply-ratio" | "date-to-p2wpkh-realized-loss" | "date-to-from-5y-to-7y-supply-in-loss-to-circulating-supply-ratio" | "date-to-market-price-to-price-4y-sma-ratio-1y-sma" | "date-to-year-2016-halved-supply-to-circulating-supply-ratio" | "date-to-year-2016-realized-price-0-1p" | "date-to-highly-liquid-65p-price-paid" | "date-to-market-price-to-up-to-3y-realized-price-ratio-1p" | "date-to-p2tr-negative-realized-loss" | "date-to-highly-liquid-75p-price-paid" | "date-to-price-21d-sma-99-9p" | "date-to-up-to-4m-80p-price-paid" | "date-to-year-2022-unrealized-profit" | "date-to-sth-realized-profit" | "date-to-year-2011-80p-price-paid" | "date-to-market-price-to-from-3m-to-6m-realized-price-ratio-99-5p" | "date-to-market-price-to-price-1w-sma-ratio-1y-sma-momentum-oscillator" | "date-to-p2pk-realized-price-1p" | "date-to-up-to-2m-halved-supply" | "date-to-up-to-2y-realized-loss" | "date-to-up-to-1w-supply-in-profit-to-own-supply-ratio" | "date-to-year-2021-adjusted-value-created" | "date-to-shrimp-realized-price-0-1p" | "date-to-up-to-5m-spent-output-profit-ratio" | "date-to-year-2022-supply-in-loss-to-circulating-supply-ratio" | "date-to-up-to-1d-realized-cap" | "date-to-shrimp-value-destroyed" | "date-to-sth-realized-price-99p" | "date-to-price-4y-sma-99-9p" | "date-to-year-2021-10p-price-paid" | "date-to-year-2022-halved-supply-to-circulating-supply-ratio" | "date-to-up-to-7y-supply-in-profit-to-own-supply-ratio" | "date-to-from-1d-to-1w-95p-price-paid" | "date-to-year-2014-90p-price-paid" | "date-to-from-1y-to-2y-40p-price-paid" | "date-to-from-5y-to-7y-realized-loss" | "date-to-from-1m-to-3m-supply-in-profit" | "date-to-up-to-4m-realized-profit" | "date-to-market-price-to-from-10y-to-15y-realized-price-ratio-1p" | "date-to-year-2013-unrealized-loss" | "date-to-year-2021-65p-price-paid" | "date-to-market-price-to-shark-realized-price-ratio-99-9p" | "date-to-up-to-10y-75p-price-paid" | "date-to-up-to-1y-unrealized-loss" | "date-to-megalodon-net-unrealized-profit-and-loss" | "date-to-market-price-to-up-to-15y-realized-price-ratio-1p" | "date-to-shark-25p-price-paid" | "date-to-p2sh-realized-price-1p" | "date-to-year-2018-realized-price-99-9p" | "date-to-up-to-3y-95p-price-paid" | "date-to-year-2023-45p-price-paid" | "date-to-up-to-5y-supply" | "date-to-from-3m-to-6m-75p-price-paid" | "date-to-from-3y-to-5y-75p-price-paid" | "date-to-market-price-to-from-15y-realized-price-ratio-99-9p" | "date-to-year-2018-95p-price-paid" | "date-to-year-2022-supply-in-profit" | "date-to-year-2020-halved-supply-to-circulating-supply-ratio" | "date-to-year-2013-40p-price-paid" | "date-to-p2pk-address-count" | "date-to-up-to-6m-input-count" | "date-to-year-2024-unrealized-profit" | "date-to-crab-supply-in-loss-to-circulating-supply-ratio" | "date-to-from-10y-to-15y-25p-price-paid" | "date-to-market-price-to-up-to-15y-realized-price-ratio-1w-sma" | "date-to-from-1m-to-3m-cumulative-net-realized-profit-and-loss-1m-net-change" | "date-to-market-price-to-from-3m-to-6m-realized-price-ratio-1y-sma-momentum-oscillator" | "date-to-crab-sell-side-risk-ratio" | "date-to-p2wpkh-65p-price-paid" | "date-to-up-to-5m-net-realized-profit-and-loss-to-market-cap-ratio" | "date-to-whale-realized-price-99-9p" | "date-to-from-3m-to-6m-supply-in-loss-to-circulating-supply-ratio" | "date-to-year-2015-median-price-paid" | "date-to-crab-net-realized-profit-and-loss-to-market-cap-ratio" | "date-to-liquid-supply" | "date-to-block-size-1d-max" | "date-to-from-5y-to-7y-realized-price" | "date-to-plankton-realized-price-0-5p" | "date-to-up-to-2m-supply-in-profit-to-circulating-supply-ratio" | "date-to-block-size-1d-min" | "date-to-from-1w-to-1m-value-destroyed" | "date-to-year-2014-net-realized-profit-and-loss" | "date-to-year-2020-realized-loss" | "date-to-p2pk-input-count" | "date-to-coinbase-in-dollars-1y-sum" | "date-to-from-10y-to-15y-80p-price-paid" | "date-to-year-2011-realized-cap-1m-net-change" | "date-to-price-89d-sma-99-9p" | "date-to-market-price-to-from-2y-realized-price-ratio-1y-sma-momentum-oscillator" | "date-to-market-price-to-up-to-1y-realized-price-ratio-1m-sma" | "date-to-up-to-3m-70p-price-paid" | "date-to-year-2013-55p-price-paid" | "date-to-market-price-to-year-2011-realized-price-ratio-1w-sma" | "date-to-year-2020-net-unrealized-profit-and-loss" | "date-to-year-2018-value-destroyed" | "date-to-highly-liquid-25p-price-paid" | "date-to-market-price-to-from-10y-to-15y-realized-price-ratio-99-9p" | "date-to-illiquid-realized-price-1p" | "date-to-megalodon-15p-price-paid" | "date-to-price-4y-sma-0-5p" | "date-to-shrimp-cumulative-realized-loss" | "date-to-year-2019-05p-price-paid" | "date-to-from-1y-to-2y-net-realized-profit-and-loss-to-market-cap-ratio" | "date-to-from-15y-supply-in-profit-to-circulating-supply-ratio" | "date-to-p2sh-05p-price-paid" | "date-to-up-to-5m-25p-price-paid" | "date-to-from-1y-net-unrealized-profit-and-loss-to-market-cap-ratio" | "date-to-from-10y-realized-price-99p" | "date-to-from-5y-to-7y-15p-price-paid" | "date-to-from-3y-to-5y-60p-price-paid" | "date-to-highly-liquid-realized-price-1p" | "date-to-market-price-to-active-price-ratio-0-5p" | "date-to-lth-cumulative-net-realized-profit-and-loss-1m-net-change" | "date-to-up-to-1m-75p-price-paid" | "date-to-up-to-5m-negative-unrealized-loss" | "date-to-year-2014-realized-price-1p" | "date-to-coinblocks-destroyed" | "date-to-p2wpkh-address-count" | "date-to-from-1w-to-1m-net-unrealized-profit-and-loss-to-market-cap-ratio" | "date-to-p2wsh-40p-price-paid" | "date-to-humpback-realized-price-0-1p" | "date-to-coindays-destroyed" | "date-to-from-2y-to-3y-input-count" | "date-to-year-2017-45p-price-paid" | "date-to-year-2023-supply" | "date-to-p2pk-halved-supply" | "date-to-market-price-to-price-4y-sma-ratio-0-5p" | "date-to-liquid-20p-price-paid" | "date-to-p2wpkh-value-destroyed" | "date-to-from-1m-to-3m-supply-in-loss-to-circulating-supply-ratio" | "date-to-liveliness" | "date-to-up-to-1d-20p-price-paid" | "date-to-market-price-to-year-2011-realized-price-ratio-1m-sma" | "date-to-market-price-to-up-to-6m-realized-price-ratio-99-5p" | "date-to-highly-liquid-realized-value" | "date-to-up-to-2y-60p-price-paid" | "date-to-up-to-1y-adjusted-value-created" | "date-to-market-price-to-price-144d-sma-ratio-99-5p" | "date-to-year-2010-20p-price-paid" | "date-to-year-2018-supply-to-circulating-supply-ratio" | "date-to-year-2020-realized-cap" | "date-to-from-15y-net-realized-profit-and-loss" | "date-to-market-price-to-illiquid-realized-price-ratio-1y-sma-momentum-oscillator" | "date-to-p2wsh-80p-price-paid" | "date-to-market-price-to-crab-realized-price-ratio-99p" | "date-to-year-2024-value-destroyed" | "date-to-up-to-15y-realized-price-99-5p" | "date-to-fish-adjusted-value-created" | "date-to-year-2009-supply-in-profit-to-circulating-supply-ratio" | "date-to-year-2015-halved-supply-to-circulating-supply-ratio" | "date-to-p2wpkh-supply-in-profit-to-own-supply-ratio" | "date-to-from-1y-supply-in-loss-to-circulating-supply-ratio" | "date-to-market-price-to-year-2015-realized-price-ratio-0-5p" | "date-to-year-2020-net-realized-profit-and-loss" | "date-to-market-price-to-vaulted-price-ratio-99p" | "date-to-realized-price-0-5p" | "date-to-market-price-to-year-2011-realized-price-ratio-1p" | "date-to-p2pk-halved-supply-to-circulating-supply-ratio" | "date-to-from-10y-unrealized-profit" | "date-to-market-price-to-up-to-1m-realized-price-ratio-1m-sma" | "date-to-up-to-1d-realized-price-99-5p" | "date-to-up-to-6m-45p-price-paid" | "date-to-crab-40p-price-paid" | "date-to-market-price-to-megalodon-realized-price-ratio-99p" | "date-to-market-price-to-from-10y-realized-price-ratio" | "date-to-market-price-to-from-4y-realized-price-ratio-1w-sma" | "date-to-year-2013-45p-price-paid" | "date-to-price-200w-sma-99-5p" | "date-to-year-2015-net-realized-profit-and-loss-to-market-cap-ratio" | "date-to-year-2016-cumulative-realized-loss" | "date-to-year-2012-realized-cap-1m-net-change" | "date-to-up-to-2y-supply-in-profit-to-own-supply-ratio" | "date-to-from-5y-to-7y-net-unrealized-profit-and-loss" | "date-to-up-to-3y-realized-profit" | "date-to-from-1m-to-3m-negative-unrealized-loss" | "date-to-up-to-1y-realized-price-0-1p" | "date-to-blocks-mined-1m-target" | "date-to-vaulted-price-99p" | "date-to-blocks-mined-1m-sma" | "date-to-shark-net-realized-profit-and-loss-to-market-cap-ratio" | "date-to-year-2012-supply-in-loss-to-own-supply-ratio" | "date-to-year-2017-input-volume" | "date-to-year-2017-negative-unrealized-loss" | "date-to-market-price-to-up-to-5m-realized-price-ratio-99-9p" | "date-to-year-2019-85p-price-paid" | "date-to-illiquid-input-volume" | "date-to-up-to-3y-supply-to-circulating-supply-ratio" | "date-to-lth-realized-price-0-5p" | "date-to-blocks-mined-1d-target" | "date-to-from-10y-to-15y-halved-supply" | "date-to-active-price-1p" | "date-to-year-2021-net-unrealized-profit-and-loss" | "date-to-from-1d-to-1w-15p-price-paid" | "date-to-up-to-1y-realized-price-99-5p" | "date-to-market-price-to-up-to-10y-realized-price-ratio-99-5p" | "date-to-megalodon-supply" | "date-to-lth-adjusted-value-created" | "date-to-market-price-to-from-1y-realized-price-ratio-99-9p" | "date-to-highly-liquid-supply-in-profit-to-circulating-supply-ratio" | "date-to-megalodon-20p-price-paid" | "date-to-from-7y-to-10y-realized-price-0-5p" | "date-to-p2pkh-20p-price-paid" | "date-to-p2pkh-sell-side-risk-ratio" | "date-to-liquid-85p-price-paid" | "date-to-p2tr-75p-price-paid" | "date-to-up-to-10y-input-volume" | "date-to-up-to-1m-input-volume" | "date-to-up-to-2m-90p-price-paid" | "date-to-market-price-to-whale-realized-price-ratio-0-5p" | "date-to-up-to-5m-unrealized-profit" | "date-to-up-to-5m-negative-realized-loss" | "date-to-from-2y-to-3y-supply-in-profit-to-circulating-supply-ratio" | "date-to-p2pk-cumulative-realized-loss" | "date-to-market-price-to-price-1w-sma-ratio-1p" | "date-to-fish-95p-price-paid" | "date-to-concurrent-liveliness-2w-median" | "date-to-illiquid-value-destroyed" | "date-to-up-to-7y-adjusted-value-destroyed" | "date-to-vaulted-cap" | "date-to-whale-realized-price-0-5p" | "date-to-year-2011-input-count" | "date-to-year-2013-85p-price-paid" | "date-to-year-2020-negative-unrealized-loss" | "date-to-year-2009-realized-value" | "date-to-year-2017-90p-price-paid" | "date-to-year-2018-15p-price-paid" | "date-to-from-1y-negative-unrealized-loss" | "date-to-humpback-supply-in-profit" | "date-to-humpback-cumulative-realized-loss" | "date-to-up-to-3m-supply" | "date-to-market-price-to-cointime-price-ratio-0-5p" | "date-to-from-3m-to-6m-35p-price-paid" | "date-to-up-to-3m-adjusted-spent-output-profit-ratio" | "date-to-from-3y-to-5y-realized-price-99-5p" | "date-to-shark-realized-price-0-5p" | "date-to-up-to-7y-95p-price-paid" | "date-to-up-to-6m-sell-side-risk-ratio" | "date-to-market-price-to-highly-liquid-realized-price-ratio-1m-sma" | "date-to-market-price-to-from-5y-to-7y-realized-price-ratio-1y-sma" | "date-to-year-2016-value-destroyed" | "date-to-p2pkh-address-count" | "date-to-from-7y-to-10y-supply-in-profit-to-own-supply-ratio" | "date-to-market-price-to-year-2024-realized-price-ratio-0-5p" | "date-to-whale-55p-price-paid" | "date-to-year-2022-utxo-count" | "date-to-liquid-value-destroyed" | "date-to-liquid-net-unrealized-profit-and-loss" | "date-to-year-2019-75p-price-paid" | "date-to-year-2009-halved-supply-to-circulating-supply-ratio" | "date-to-from-5y-to-7y-realized-price-99p" | "date-to-market-price-to-price-34d-sma-ratio-99-9p" | "date-to-year-2024-15p-price-paid" | "date-to-up-to-1y-supply-in-profit-to-own-supply-ratio" | "date-to-market-price-to-from-7y-to-10y-realized-price-ratio-0-1p" | "date-to-plankton-halved-supply" | "date-to-shark-adjusted-value-created" | "date-to-from-7y-to-10y-realized-price-99p" | "date-to-year-2023-utxo-count" | "date-to-from-10y-to-15y-70p-price-paid" | "date-to-up-to-2m-realized-profit" | "date-to-from-2y-05p-price-paid" | "date-to-sth-cumulative-realized-loss" | "date-to-market-price-to-price-13d-sma-ratio-1w-sma" | "date-to-sth-spent-output-profit-ratio" | "date-to-year-2017-negative-realized-loss" | "date-to-from-10y-to-15y-input-volume" | "date-to-from-6m-to-1y-realized-price-99p" | "date-to-year-2010-realized-loss" | "date-to-price-55d-sma-1p" | "date-to-year-2022-35p-price-paid" | "date-to-price-4y-total-return" | "date-to-market-price-to-true-market-mean-ratio-1y-sma" | "date-to-year-2024-adjusted-value-destroyed" | "date-to-p2pk-realized-price" | "date-to-up-to-5y-median-price-paid" | "date-to-transaction-count" | "date-to-market-price-to-from-2y-to-3y-realized-price-ratio-99-9p" | "date-to-market-price-to-up-to-7y-realized-price-ratio-1y-sma" | "date-to-from-15y-realized-price-0-5p" | "date-to-input-volume" | "date-to-market-price-to-year-2016-realized-price-ratio-1m-sma" | "date-to-market-price-to-from-10y-realized-price-ratio-1p" | "date-to-block-vbytes-1d-median" | "date-to-market-price-to-from-1y-to-2y-realized-price-ratio-1p" | "date-to-market-price-to-p2wpkh-realized-price-ratio-1w-sma" | "date-to-market-price-to-shark-realized-price-ratio-0-5p" | "date-to-from-7y-to-10y-supply-in-profit-to-circulating-supply-ratio" | "date-to-market-price-to-price-21d-sma-ratio-1y-sma-momentum-oscillator" | "date-to-year-2014-cumulative-net-realized-profit-and-loss" | "date-to-year-2014-supply-in-loss" | "date-to-from-2y-30p-price-paid" | "date-to-shrimp-55p-price-paid" | "date-to-from-1d-to-1w-adjusted-spent-output-profit-ratio" | "date-to-from-2y-realized-value" | "date-to-from-1m-to-3m-20p-price-paid" | "date-to-market-price-to-humpback-realized-price-ratio-0-5p" | "date-to-value-destroyed" | "date-to-year-2011-20p-price-paid" | "date-to-year-2020-supply-in-loss" | "date-to-from-1d-to-1w-realized-cap-1m-net-change" | "date-to-from-6m-to-1y-value-destroyed" | "date-to-liquid-realized-price-99-9p" | "date-to-market-price-to-price-4y-sma-ratio" | "date-to-from-7y-to-10y-realized-price-99-9p" | "date-to-up-to-5m-05p-price-paid" | "date-to-year-2010-input-count" | "date-to-market-price-to-p2sh-realized-price-ratio-1y-sma" | "date-to-plankton-unrealized-loss" | "date-to-up-to-1w-10p-price-paid" | "date-to-shrimp-supply-in-profit-to-circulating-supply-ratio" | "date-to-highly-liquid-input-volume" | "date-to-market-price-to-up-to-7y-realized-price-ratio-99-5p" | "date-to-market-price-to-year-2010-realized-price-ratio-99-9p" | "date-to-up-to-5m-55p-price-paid" | "date-to-from-2y-value-destroyed" | "date-to-from-1m-to-3m-realized-price-99-9p" | "date-to-from-6m-to-1y-utxo-count" | "date-to-market-price-to-up-to-5y-realized-price-ratio-1w-sma" | "date-to-market-price-to-up-to-4m-realized-price-ratio-99-5p" | "date-to-market-price-to-year-2009-realized-price-ratio-99-9p" | "date-to-up-to-3y-supply-in-profit-to-circulating-supply-ratio" | "date-to-year-2017-30p-price-paid" | "date-to-year-2023-unrealized-profit" | "date-to-whale-adjusted-value-destroyed" | "date-to-shark-address-count" | "date-to-from-1y-to-2y-sell-side-risk-ratio" | "date-to-highly-liquid-30p-price-paid" | "date-to-p2sh-supply-to-circulating-supply-ratio" | "date-to-up-to-10y-supply-to-circulating-supply-ratio" | "date-to-megalodon-negative-realized-loss" | "date-to-from-4y-cumulative-net-realized-profit-and-loss" | "date-to-up-to-10y-realized-price-0-5p" | "date-to-year-2009-sell-side-risk-ratio" | "date-to-p2wpkh-unrealized-profit" | "date-to-market-price-to-year-2023-realized-price-ratio-99p" | "date-to-active-price-99-9p" | "date-to-year-2020-85p-price-paid" | "date-to-up-to-3y-realized-price-99-9p" | "date-to-market-price-to-illiquid-realized-price-ratio-1p" | "date-to-market-price-to-year-2023-realized-price-ratio-99-5p" | "date-to-market-price-to-year-2024-realized-price-ratio-99-9p" | "date-to-lth-90p-price-paid" | "date-to-up-to-15y-55p-price-paid" | "date-to-up-to-2y-value-created" | "date-to-megalodon-value-created" | "date-to-illiquid-25p-price-paid" | "date-to-fish-value-created" | "date-to-year-2015-60p-price-paid" | "date-to-up-to-3y-value-created" | "date-to-from-1w-to-1m-supply-in-loss" | "date-to-year-2020-realized-price-99p" | "date-to-from-4y-95p-price-paid" | "date-to-market-price-to-price-13d-sma-ratio-0-1p" | "date-to-year-2013-cumulative-realized-loss" | "date-to-year-2018-input-count" | "date-to-from-3m-to-6m-cumulative-net-realized-profit-and-loss" | "date-to-humpback-adjusted-value-created" | "date-to-market-price-to-price-2y-sma-ratio-1y-sma" | "date-to-up-to-1d-cumulative-realized-profit" | "date-to-from-1y-to-2y-value-created" | "date-to-market-price-to-year-2011-realized-price-ratio-0-5p" | "date-to-market-price-to-from-3m-to-6m-realized-price-ratio-99p" | "date-to-sth-cumulative-realized-profit" | "date-to-up-to-1w-supply" | "date-to-up-to-3m-80p-price-paid" | "date-to-shark-80p-price-paid" | "date-to-crab-supply" | "date-to-from-7y-to-10y-value-created" | "date-to-year-2024-cumulative-realized-loss" | "date-to-whale-10p-price-paid" | "date-to-market-price-to-year-2015-realized-price-ratio-1p" | "date-to-active-supply-net-change" | "date-to-fish-40p-price-paid" | "date-to-p2pkh-net-realized-profit-and-loss" | "date-to-from-1d-to-1w-value-destroyed" | "date-to-up-to-7y-cumulative-net-realized-profit-and-loss-1m-net-change" | "date-to-up-to-1w-adjusted-spent-output-profit-ratio" | "date-to-p2wpkh-input-volume" | "date-to-from-10y-to-15y-95p-price-paid" | "date-to-megalodon-supply-in-profit-to-own-supply-ratio" | "date-to-from-1w-to-1m-net-unrealized-profit-and-loss" | "date-to-market-price-to-up-to-5m-realized-price-ratio-0-1p" | "date-to-from-10y-to-15y-net-realized-profit-and-loss-to-market-cap-ratio" | "date-to-price-200w-sma" | "date-to-from-10y-realized-value" | "date-to-first-height" | "date-to-fish-supply-in-profit" | "date-to-from-10y-supply-in-profit-to-own-supply-ratio" | "date-to-p2wsh-unrealized-loss" | "date-to-plankton-input-volume" | "date-to-up-to-1m-55p-price-paid" | "date-to-up-to-1y-input-volume" | "date-to-year-2019-60p-price-paid" | "date-to-from-15y-net-unrealized-profit-and-loss" | "date-to-year-2019-adjusted-value-destroyed" | "date-to-up-to-1m-supply-to-circulating-supply-ratio" | "date-to-up-to-5m-halved-supply-to-circulating-supply-ratio" | "date-to-up-to-5y-15p-price-paid" | "date-to-year-2023-supply-in-loss" | "date-to-market-price-to-from-1y-realized-price-ratio-99p" | "date-to-market-price-to-humpback-realized-price-ratio" | "date-to-market-price-to-liquid-realized-price-ratio-1m-sma" | "date-to-megalodon-sell-side-risk-ratio" | "date-to-year-2012-net-realized-profit-and-loss-to-market-cap-ratio" | "date-to-p2wpkh-halved-supply" | "date-to-megalodon-realized-price-0-5p" | "date-to-p2pk-supply-in-loss" | "date-to-block-size-1d-sum" | "date-to-market-price-to-from-5y-to-7y-realized-price-ratio-1y-sma-momentum-oscillator" | "date-to-market-price-to-year-2013-realized-price-ratio-1p" | "date-to-up-to-1w-realized-price-99-9p" | "date-to-from-1d-to-1w-realized-price" | "date-to-up-to-3m-utxo-count" | "date-to-year-2013-sell-side-risk-ratio" | "date-to-p2wsh-85p-price-paid" | "date-to-from-1y-realized-price" | "date-to-year-2014-net-realized-profit-and-loss-to-market-cap-ratio" | "date-to-highly-liquid-80p-price-paid" | "date-to-from-1y-realized-price-0-5p" | "date-to-from-1y-to-2y-unrealized-loss" | "date-to-from-3y-to-5y-realized-loss" | "date-to-p2sh-realized-price-0-1p" | "date-to-up-to-1y-40p-price-paid" | "date-to-up-to-5y-realized-value" | "date-to-humpback-realized-cap-1m-net-change" | "date-to-up-to-10y-cumulative-net-realized-profit-and-loss" | "date-to-up-to-1m-supply-in-loss" | "date-to-year-2024-supply-in-loss-to-own-supply-ratio" | "date-to-p2wpkh-supply-in-loss-to-own-supply-ratio" | "date-to-p2sh-input-volume" | "date-to-from-3y-to-5y-sell-side-risk-ratio" | "date-to-from-3m-to-6m-halved-supply" | "date-to-from-1y-to-2y-75p-price-paid" | "date-to-year-2010-35p-price-paid" | "date-to-up-to-10y-realized-cap-1m-net-change" | "date-to-new-addresses" | "date-to-market-price-to-price-8d-sma-ratio-0-1p" | "date-to-up-to-2m-value-destroyed" | "date-to-year-2011-supply-in-loss-to-own-supply-ratio" | "date-to-p2wsh-adjusted-value-created" | "date-to-year-2009-supply-in-loss-to-circulating-supply-ratio" | "date-to-from-1y-60p-price-paid" | "date-to-from-1y-40p-price-paid" | "date-to-from-1y-cumulative-realized-loss" | "date-to-from-3m-to-6m-negative-unrealized-loss" | "date-to-from-6m-to-1y-95p-price-paid" | "date-to-market-price-to-price-89d-sma-ratio-99p" | "date-to-50" | "date-to-market-price-to-up-to-1m-realized-price-ratio" | "date-to-net-realized-profit-and-loss" | "date-to-sth-10p-price-paid" | "date-to-from-1d-to-1w-cumulative-net-realized-profit-and-loss" | "date-to-from-1d-to-1w-realized-value" | "date-to-from-2y-to-3y-halved-supply-to-circulating-supply-ratio" | "date-to-market-price-to-up-to-10y-realized-price-ratio-1y-sma-momentum-oscillator" | "date-to-p2pk-realized-loss" | "date-to-highly-liquid-15p-price-paid" | "date-to-p2tr-supply-to-circulating-supply-ratio" | "date-to-shark-cumulative-realized-loss" | "date-to-from-1m-to-3m-supply-in-loss-to-own-supply-ratio" | "date-to-up-to-3y-85p-price-paid" | "date-to-up-to-15y-halved-supply-to-circulating-supply-ratio" | "date-to-from-3y-to-5y-adjusted-spent-output-profit-ratio" | "date-to-fish-supply-in-profit-to-circulating-supply-ratio" | "date-to-lth-15p-price-paid" | "date-to-year-2019-net-unrealized-profit-and-loss-to-market-cap-ratio" | "date-to-from-3y-to-5y-realized-price-99-9p" | "date-to-up-to-1m-cumulative-net-realized-profit-and-loss-1m-net-change" | "date-to-market-price-to-from-5y-to-7y-realized-price-ratio-1p" | "date-to-up-to-2m-adjusted-spent-output-profit-ratio" | "date-to-year-2023-realized-price-99-5p" | "date-to-up-to-6m-realized-price" | "date-to-up-to-3y-cumulative-net-realized-profit-and-loss" | "date-to-year-2022-realized-profit" | "date-to-market-price-to-year-2013-realized-price-ratio-1m-sma" | "date-to-market-price-to-price-2y-sma-ratio-99-5p" | "date-to-illiquid-realized-loss" | "date-to-year-2016-realized-price-99-9p" | "date-to-from-7y-to-10y-unrealized-profit" | "date-to-up-to-2y-supply-in-loss-to-own-supply-ratio" | "date-to-up-to-5m-80p-price-paid" | "date-to-year-2014-negative-realized-loss" | "date-to-liquid-realized-value" | "date-to-up-to-1y-negative-realized-loss" | "date-to-whale-realized-price" | "date-to-up-to-3y-realized-price-0-1p" | "date-to-up-to-1w-realized-profit" | "date-to-year-2024-supply-in-profit" | "date-to-from-10y-to-15y-realized-price" | "date-to-from-2y-to-3y-supply-in-profit" | "date-to-highly-liquid-unrealized-profit" | "date-to-from-1y-65p-price-paid" | "date-to-year-2019-65p-price-paid" | "date-to-year-2022-60p-price-paid" | "date-to-year-2010-cumulative-realized-profit" | "date-to-up-to-10y-negative-unrealized-loss" | "date-to-year-2023-supply-to-circulating-supply-ratio" | "date-to-fish-negative-unrealized-loss" | "date-to-from-15y-value-created" | "date-to-market-price-to-from-10y-to-15y-realized-price-ratio-99p" | "date-to-from-1d-to-1w-85p-price-paid" | "date-to-year-2024-sell-side-risk-ratio" | "date-to-liquid-utxo-count" | "date-to-market-price-to-vaulted-price-ratio" | "date-to-up-to-1m-realized-price-99-9p" | "date-to-year-2009-cumulative-net-realized-profit-and-loss" | "date-to-whale-60p-price-paid" | "date-to-from-10y-to-15y-realized-price-99-9p" | "date-to-year-2019-input-count" | "date-to-from-3m-to-6m-realized-value" | "date-to-market-price-to-active-price-ratio-1p" | "date-to-up-to-2y-90p-price-paid" | "date-to-from-1y-to-2y-realized-price" | "date-to-plankton-70p-price-paid" | "date-to-price-13d-sma-0-5p" | "date-to-from-2y-realized-cap" | "date-to-year-2020-negative-realized-loss" | "date-to-price-3y-total-return" | "date-to-year-2021-40p-price-paid" | "date-to-from-1d-to-1w-supply-in-profit-to-own-supply-ratio" | "date-to-from-15y-median-price-paid" | "date-to-from-1w-to-1m-halved-supply-to-circulating-supply-ratio" | "date-to-from-10y-adjusted-value-destroyed" | "date-to-from-10y-cumulative-net-realized-profit-and-loss" | "date-to-lth-utxo-count" | "date-to-year-2010-55p-price-paid" | "date-to-year-2014-halved-supply" | "date-to-from-15y-10p-price-paid" | "date-to-price-4y-sma-1p" | "date-to-p2pkh-65p-price-paid" | "date-to-up-to-7y-realized-price-99-9p" | "date-to-up-to-5m-net-realized-profit-and-loss" | "date-to-up-to-10y-30p-price-paid" | "date-to-year-2013-80p-price-paid" | "date-to-year-2020-realized-value" | "date-to-p2wpkh-supply-in-profit" | "date-to-up-to-1d-halved-supply-to-circulating-supply-ratio" | "date-to-market-price-to-illiquid-realized-price-ratio-0-1p" | "date-to-up-to-3y-net-unrealized-profit-and-loss" | "date-to-up-to-6m-adjusted-spent-output-profit-ratio" | "date-to-up-to-3m-90p-price-paid" | "date-to-up-to-2m-cumulative-realized-profit" | "date-to-up-to-5m-cumulative-net-realized-profit-and-loss" | "date-to-market-price-to-p2tr-realized-price-ratio-99-9p" | "date-to-market-price-to-year-2015-realized-price-ratio-99p" | "date-to-halved-supply" | "date-to-from-10y-45p-price-paid" | "date-to-market-price-to-from-3y-to-5y-realized-price-ratio-1y-sma" | "date-to-from-10y-net-unrealized-profit-and-loss" | "date-to-shrimp-60p-price-paid" | "date-to-market-price-to-from-6m-to-1y-realized-price-ratio-1m-sma" | "date-to-sats-per-dollar" | "date-to-market-price-to-plankton-realized-price-ratio-1w-sma" | "date-to-up-to-1d-supply-in-profit-to-circulating-supply-ratio" | "date-to-humpback-median-price-paid" | "date-to-market-price-to-liquid-realized-price-ratio-0-5p" | "date-to-from-10y-to-15y-15p-price-paid" | "date-to-up-to-1y-cumulative-net-realized-profit-and-loss" | "date-to-crab-supply-in-profit-to-own-supply-ratio" | "date-to-up-to-4m-spent-output-profit-ratio" | "date-to-whale-adjusted-value-created" | "date-to-year-2010-negative-unrealized-loss" | "date-to-market-price-to-p2wpkh-realized-price-ratio-0-5p" | "date-to-year-2012-80p-price-paid" | "date-to-from-2y-input-count" | "date-to-from-4y-spent-output-profit-ratio" | "date-to-up-to-5m-median-price-paid" | "date-to-year-2024-realized-price-99-9p" | "date-to-market-price-to-from-3m-to-6m-realized-price-ratio-99-9p" | "date-to-market-price-to-whale-realized-price-ratio" | "date-to-year-2021-85p-price-paid" | "date-to-up-to-7y-input-volume" | "date-to-year-2020-halved-supply" | "date-to-from-10y-to-15y-cumulative-net-realized-profit-and-loss" | "date-to-lth-85p-price-paid" | "date-to-up-to-15y-realized-cap-1m-net-change" | "date-to-up-to-4m-net-unrealized-profit-and-loss-to-market-cap-ratio" | "date-to-sth-adjusted-value-created" | "date-to-year-2012-40p-price-paid" | "date-to-year-2015-80p-price-paid" | "date-to-blocks-mined-1w-target" | "date-to-fish-15p-price-paid" | "date-to-up-to-10y-35p-price-paid" | "date-to-humpback-realized-price-99p" | "date-to-from-6m-to-1y-supply-in-profit-to-own-supply-ratio" | "date-to-from-1m-to-3m-net-realized-profit-and-loss-to-market-cap-ratio" | "date-to-from-1m-to-3m-median-price-paid" | "date-to-market-price-to-from-1m-to-3m-realized-price-ratio-99-9p" | "date-to-sth-75p-price-paid" | "date-to-crab-25p-price-paid" | "date-to-lth-adjusted-spent-output-profit-ratio" | "date-to-block-interval-1d-average" | "date-to-market-price-to-from-3y-to-5y-realized-price-ratio-99p" | "date-to-lth-20p-price-paid" | "date-to-from-1y-to-2y-cumulative-net-realized-profit-and-loss-1m-net-change" | "date-to-from-1m-to-3m-supply-to-circulating-supply-ratio" | "date-to-up-to-1m-utxo-count" | "date-to-up-to-5m-75p-price-paid" | "date-to-from-7y-to-10y-realized-profit" | "date-to-year-2018-realized-price-99p" | "date-to-from-10y-to-15y-median-price-paid" | "date-to-shrimp-30p-price-paid" | "date-to-fish-realized-value" | "date-to-market-price-to-p2wsh-realized-price-ratio-0-1p" | "date-to-true-market-mean-99p" | "date-to-up-to-1d-45p-price-paid" | "date-to-from-3y-to-5y-supply-in-loss-to-own-supply-ratio" | "date-to-market-price-to-from-10y-to-15y-realized-price-ratio-99-5p" | "date-to-market-price-to-up-to-3m-realized-price-ratio-1m-sma" | "date-to-up-to-3m-realized-price-99p" | "date-to-p2pk-net-realized-profit-and-loss" | "date-to-market-price-to-from-2y-realized-price-ratio" | "date-to-p2tr-realized-cap-1m-net-change" | "date-to-from-2y-to-3y-45p-price-paid" | "date-to-year-2013-05p-price-paid" | "date-to-year-2018-realized-price-0-5p" | "date-to-year-2020-65p-price-paid" | "date-to-market-price-to-from-15y-realized-price-ratio-0-5p" | "date-to-year-2014-supply-in-profit" | "date-to-price-1w-sma-1p" | "date-to-p2wpkh-cumulative-realized-profit" | "date-to-year-2018-supply-in-profit" | "date-to-year-2022-realized-cap-1m-net-change" | "date-to-year-2014-supply-in-profit-to-own-supply-ratio" | "date-to-market-price-to-from-10y-realized-price-ratio-1y-sma-momentum-oscillator" | "date-to-from-2y-to-3y-unrealized-profit" | "date-to-from-1y-realized-price-99p" | "date-to-humpback-supply" | "date-to-from-4y-supply-in-loss-to-circulating-supply-ratio" | "date-to-from-7y-to-10y-realized-price" | "date-to-up-to-2m-40p-price-paid" | "date-to-whale-75p-price-paid" | "date-to-year-2010-halved-supply-to-circulating-supply-ratio" | "date-to-year-2023-85p-price-paid" | "date-to-from-1w-to-1m-negative-unrealized-loss" | "date-to-up-to-10y-45p-price-paid" | "date-to-market-price-to-year-2016-realized-price-ratio-1w-sma" | "date-to-from-5y-to-7y-realized-price-99-9p" | "date-to-price-8d-sma-99p" | "date-to-market-price-to-year-2019-realized-price-ratio-0-5p" | "date-to-year-2012-realized-price-99p" | "date-to-price-6m-total-return" | "date-to-year-2023-adjusted-value-destroyed" | "date-to-sth-realized-price-1p" | "date-to-market-price-to-up-to-4m-realized-price-ratio-0-1p" | "date-to-up-to-1y-realized-loss" | "date-to-from-2y-realized-price-99-5p" | "date-to-p2wpkh-utxo-count" | "date-to-price-34d-sma-99-5p" | "date-to-from-10y-cumulative-net-realized-profit-and-loss-1m-net-change" | "date-to-from-3y-to-5y-realized-price-0-1p" | "date-to-up-to-2y-30p-price-paid" | "date-to-liquid-55p-price-paid" | "date-to-from-4y-realized-price-0-5p" | "date-to-price-89d-sma-99p" | "date-to-market-price-to-from-15y-realized-price-ratio" | "date-to-price-1m-sma-99-9p" | "date-to-market-price-to-price-89d-sma-ratio-1y-sma-momentum-oscillator" | "date-to-up-to-6m-realized-loss" | "date-to-year-2016-sell-side-risk-ratio" | "date-to-year-2012-realized-price" | "date-to-year-2019-95p-price-paid" | "date-to-up-to-3m-realized-price-0-5p" | "date-to-whale-realized-cap" | "date-to-year-2018-sell-side-risk-ratio" | "date-to-market-price-to-cointime-price-ratio-1w-sma" | "date-to-p2tr-unrealized-profit" | "date-to-plankton-65p-price-paid" | "date-to-year-2021-realized-price-99p" | "date-to-market-price-to-year-2022-realized-price-ratio-1y-sma-momentum-oscillator" | "date-to-market-price-to-realized-price-ratio-99p" | "date-to-year-2015-40p-price-paid" | "date-to-from-1w-to-1m-adjusted-value-created" | "date-to-year-2019-realized-price-1p" | "date-to-market-price-to-liquid-realized-price-ratio-0-1p" | "date-to-up-to-6m-cumulative-realized-profit" | "date-to-crab-05p-price-paid" | "date-to-up-to-1w-realized-cap" | "date-to-shrimp-realized-loss" | "date-to-up-to-5y-supply-to-circulating-supply-ratio" | "date-to-up-to-1y-supply-in-profit-to-circulating-supply-ratio" | "date-to-from-1y-to-2y-halved-supply-to-circulating-supply-ratio" | "date-to-last-fees" | "date-to-market-price-to-year-2022-realized-price-ratio-0-5p" | "date-to-year-2019-20p-price-paid" | "date-to-market-price-to-whale-realized-price-ratio-0-1p" | "date-to-market-price-to-price-2y-sma-ratio-1p" | "date-to-up-to-2m-supply-in-loss-to-circulating-supply-ratio" | "date-to-up-to-5m-adjusted-value-created" | "date-to-market-price-to-p2tr-realized-price-ratio-1y-sma" | "date-to-price-1m-sma" | "date-to-from-4y-85p-price-paid" | "date-to-fish-realized-price-1p" | "date-to-year-2015-net-realized-profit-and-loss" | "date-to-from-2y-adjusted-value-destroyed" | "date-to-up-to-5m-20p-price-paid"; -export type HeightPath = "height-to-humpback-input-volume" | "height-to-market-price-to-from-5y-to-7y-realized-price-ratio-0-5p" | "height-to-megalodon-unrealized-loss" | "height-to-p2wsh-negative-unrealized-loss" | "height-to-shark-realized-profit" | "height-to-crab-halved-supply" | "height-to-plankton-net-realized-profit-and-loss" | "height-to-plankton-halved-supply-to-circulating-supply-ratio" | "height-to-up-to-15y-supply-in-profit" | "height-to-up-to-7y-input-count" | "height-to-year-2011-95p-price-paid" | "height-to-market-price-to-price-4y-sma-ratio-1y-sma-momentum-oscillator" | "height-to-fish-value-created" | "height-to-highly-liquid-cumulative-net-realized-profit-and-loss-1m-net-change" | "height-to-from-5y-to-7y-10p-price-paid" | "height-to-from-5y-to-7y-net-realized-profit-and-loss" | "height-to-from-7y-to-10y-20p-price-paid" | "height-to-total-cointime-value-created" | "height-to-up-to-4m-realized-price-0-5p" | "height-to-year-2011-60p-price-paid" | "height-to-up-to-4m-negative-unrealized-loss" | "height-to-up-to-5m-realized-price-99-5p" | "height-to-year-2013-realized-price-99p" | "height-to-up-to-2m-realized-price-0-1p" | "height-to-from-2y-supply" | "height-to-market-price-to-from-10y-to-15y-realized-price-ratio-1w-sma" | "height-to-up-to-1m-net-unrealized-profit-and-loss" | "height-to-up-to-3m-40p-price-paid" | "height-to-price-55d-sma" | "height-to-up-to-10y-net-unrealized-profit-and-loss-to-market-cap-ratio" | "height-to-up-to-3m-80p-price-paid" | "height-to-from-10y-to-15y-utxo-count" | "height-to-from-1m-to-3m-value-created" | "height-to-from-2y-realized-price-1p" | "height-to-up-to-1y-cumulative-realized-profit" | "height-to-year-2009-unrealized-profit" | "height-to-year-2011-80p-price-paid" | "height-to-year-2011-halved-supply-to-circulating-supply-ratio" | "height-to-from-2y-to-3y-60p-price-paid" | "height-to-year-2013-realized-price" | "height-to-year-2012-15p-price-paid" | "height-to-year-2017-supply-to-circulating-supply-ratio" | "height-to-block-vbytes" | "height-to-price-13d-sma-99-9p" | "height-to-p2pkh-25p-price-paid" | "height-to-market-price-to-year-2009-realized-price-ratio-1p" | "height-to-up-to-2m-halved-supply-to-circulating-supply-ratio" | "height-to-year-2015-realized-cap" | "height-to-from-6m-to-1y-median-price-paid" | "height-to-up-to-15y-value-created" | "height-to-shrimp-value-created" | "height-to-coinblocks-created" | "height-to-from-2y-to-3y-90p-price-paid" | "height-to-p2wpkh-supply-in-profit-to-own-supply-ratio" | "height-to-up-to-4m-90p-price-paid" | "height-to-up-to-5y-supply-in-loss" | "height-to-year-2017-realized-price-0-1p" | "height-to-highly-liquid-10p-price-paid" | "height-to-from-2y-cumulative-realized-profit" | "height-to-whale-cumulative-realized-profit" | "height-to-from-15y-negative-unrealized-loss" | "height-to-up-to-4m-value-destroyed" | "height-to-from-3m-to-6m-supply-to-circulating-supply-ratio" | "height-to-market-price-to-fish-realized-price-ratio" | "height-to-from-3y-to-5y-negative-unrealized-loss" | "height-to-from-1y-to-2y-net-realized-profit-and-loss" | "height-to-year-2009-unrealized-loss" | "height-to-p2tr-input-count" | "height-to-from-10y-to-15y-80p-price-paid" | "height-to-from-1y-to-2y-55p-price-paid" | "height-to-from-3m-to-6m-negative-unrealized-loss" | "height-to-p2wpkh-supply-to-circulating-supply-ratio" | "height-to-shark-realized-value" | "height-to-from-7y-to-10y-realized-loss" | "height-to-from-2y-supply-in-loss-to-circulating-supply-ratio" | "height-to-up-to-3y-60p-price-paid" | "height-to-year-2020-60p-price-paid" | "height-to-year-2021-supply-in-loss-to-circulating-supply-ratio" | "height-to-year-2021-supply-in-profit-to-own-supply-ratio" | "height-to-shark-value-created" | "height-to-up-to-1y-unrealized-profit" | "height-to-fish-input-volume" | "height-to-liquid-unrealized-loss" | "height-to-market-price-to-p2sh-realized-price-ratio-1p" | "height-to-up-to-1d-cumulative-net-realized-profit-and-loss-1m-net-change" | "height-to-up-to-1y-realized-price-1p" | "height-to-from-5y-to-7y-realized-cap" | "height-to-up-to-7y-value-destroyed" | "height-to-year-2016-unrealized-profit" | "height-to-year-2017-supply-in-loss-to-own-supply-ratio" | "height-to-sth-supply-in-loss-to-circulating-supply-ratio" | "height-to-up-to-1y-negative-realized-loss" | "height-to-up-to-7y-net-realized-profit-and-loss-to-market-cap-ratio" | "height-to-year-2019-supply-in-loss-to-own-supply-ratio" | "height-to-year-2021-supply-in-profit" | "height-to-year-2024-spent-output-profit-ratio" | "height-to-from-10y-to-15y-20p-price-paid" | "height-to-up-to-1m-supply-in-loss-to-circulating-supply-ratio" | "height-to-year-2011-20p-price-paid" | "height-to-market-price-to-up-to-2m-realized-price-ratio-1w-sma" | "height-to-market-price-to-up-to-5y-realized-price-ratio-0-1p" | "height-to-from-2y-supply-in-loss" | "height-to-shrimp-realized-value" | "height-to-year-2022-60p-price-paid" | "height-to-year-2009-realized-value" | "height-to-market-price-to-up-to-1m-realized-price-ratio" | "height-to-p2pk-realized-price-1p" | "height-to-from-10y-to-15y-cumulative-realized-profit" | "height-to-p2sh-supply-in-loss-to-circulating-supply-ratio" | "height-to-year-2010-net-unrealized-profit-and-loss" | "height-to-from-10y-to-15y-unrealized-loss" | "height-to-market-price-to-up-to-3m-realized-price-ratio" | "height-to-p2wsh-supply-in-profit" | "height-to-whale-cumulative-net-realized-profit-and-loss-1m-net-change" | "height-to-from-2y-to-3y-45p-price-paid" | "height-to-up-to-5y-90p-price-paid" | "height-to-p2tr-realized-price" | "height-to-up-to-6m-realized-price-0-1p" | "height-to-year-2014-20p-price-paid" | "height-to-year-2024-value-destroyed" | "height-to-up-to-1d-70p-price-paid" | "height-to-sth-median-price-paid" | "height-to-cumulative-coinbase-in-dollars" | "height-to-from-10y-85p-price-paid" | "height-to-illiquid-realized-price-99-5p" | "height-to-up-to-1m-realized-profit" | "height-to-from-1y-to-2y-supply-in-loss-to-circulating-supply-ratio" | "height-to-market-price-to-from-2y-to-3y-realized-price-ratio-1p" | "height-to-year-2010-supply" | "height-to-market-price-to-from-2y-to-3y-realized-price-ratio-0-1p" | "height-to-p2wpkh-realized-price-0-5p" | "height-to-megalodon-80p-price-paid" | "height-to-shrimp-utxo-count" | "height-to-market-price-to-price-8d-sma-ratio-0-5p" | "height-to-year-2013-80p-price-paid" | "height-to-lth-25p-price-paid" | "height-to-from-1m-to-3m-negative-unrealized-loss" | "height-to-year-2014-95p-price-paid" | "height-to-market-price-to-from-10y-to-15y-realized-price-ratio-99p" | "height-to-up-to-4m-realized-price-1p" | "height-to-from-7y-to-10y-supply-in-profit" | "height-to-year-2020-cumulative-net-realized-profit-and-loss" | "height-to-year-2022-10p-price-paid" | "height-to-year-2018-20p-price-paid" | "height-to-from-1d-to-1w-cumulative-net-realized-profit-and-loss-1m-net-change" | "height-to-liquid-realized-price-99-5p" | "height-to-year-2009-realized-price-0-1p" | "height-to-year-2009-supply-to-circulating-supply-ratio" | "height-to-from-1m-to-3m-net-realized-profit-and-loss-to-market-cap-ratio" | "height-to-year-2013-55p-price-paid" | "height-to-p2wsh-net-unrealized-profit-and-loss-to-market-cap-ratio" | "height-to-from-2y-to-3y-cumulative-net-realized-profit-and-loss" | "height-to-p2sh-cumulative-net-realized-profit-and-loss" | "height-to-shrimp-spent-output-profit-ratio" | "height-to-up-to-5y-supply-to-circulating-supply-ratio" | "height-to-illiquid-25p-price-paid" | "height-to-whale-realized-profit" | "height-to-year-2015-70p-price-paid" | "height-to-shrimp-realized-price-0-1p" | "height-to-p2sh-utxo-count" | "height-to-plankton-70p-price-paid" | "height-to-year-2012-negative-realized-loss" | "height-to-year-2015-60p-price-paid" | "height-to-from-15y-realized-price-0-5p" | "height-to-from-1d-to-1w-net-realized-profit-and-loss" | "height-to-year-2016-supply-in-loss-to-own-supply-ratio" | "height-to-fish-realized-profit" | "height-to-up-to-6m-value-created" | "height-to-year-2012-25p-price-paid" | "height-to-year-2018-supply-to-circulating-supply-ratio" | "height-to-up-to-10y-halved-supply-to-circulating-supply-ratio" | "height-to-year-2019-realized-price-0-1p" | "height-to-market-price-to-plankton-realized-price-ratio-99p" | "height-to-year-2023-value-destroyed" | "height-to-up-to-10y-realized-profit" | "height-to-year-2012-supply-in-profit-to-circulating-supply-ratio" | "height-to-year-2012-input-count" | "height-to-market-price-to-cointime-price-ratio-0-5p" | "height-to-year-2012-75p-price-paid" | "height-to-from-15y-95p-price-paid" | "height-to-p2wsh-realized-price-0-5p" | "height-to-from-1m-to-3m-10p-price-paid" | "height-to-whale-supply-in-profit" | "height-to-market-price-to-p2tr-realized-price-ratio-1w-sma" | "height-to-year-2016-95p-price-paid" | "height-to-market-price-to-price-89d-sma-ratio-0-1p" | "height-to-year-2017-realized-profit" | "height-to-year-2019-unrealized-profit" | "height-to-shrimp-net-unrealized-profit-and-loss" | "height-to-from-1m-to-3m-95p-price-paid" | "height-to-up-to-15y-net-unrealized-profit-and-loss" | "height-to-up-to-15y-supply-in-loss" | "height-to-market-price-to-vaulted-price-ratio-0-1p" | "height-to-from-1w-to-1m-realized-price-0-1p" | "height-to-market-price-to-year-2011-realized-price-ratio-0-5p" | "height-to-up-to-5y-value-destroyed" | "height-to-from-3y-to-5y-cumulative-realized-profit" | "height-to-year-2010-70p-price-paid" | "height-to-market-price-to-megalodon-realized-price-ratio-1p" | "height-to-year-2013-spent-output-profit-ratio" | "height-to-from-7y-to-10y-55p-price-paid" | "height-to-year-2017-realized-price-1p" | "height-to-from-7y-to-10y-35p-price-paid" | "height-to-from-1m-to-3m-input-volume" | "height-to-from-2y-95p-price-paid" | "height-to-from-3m-to-6m-60p-price-paid" | "height-to-market-price-to-from-6m-to-1y-realized-price-ratio-99-9p" | "height-to-up-to-3m-realized-price-99-5p" | "height-to-market-price-to-price-55d-sma-ratio-1p" | "height-to-year-2023-halved-supply-to-circulating-supply-ratio" | "height-to-up-to-1y-supply-in-loss-to-circulating-supply-ratio" | "height-to-market-price-to-up-to-4m-realized-price-ratio-1y-sma-momentum-oscillator" | "height-to-plankton-negative-realized-loss" | "height-to-from-6m-to-1y-75p-price-paid" | "height-to-p2tr-realized-price-0-5p" | "height-to-market-price-to-from-2y-realized-price-ratio-1p" | "height-to-from-10y-realized-price-0-5p" | "height-to-1" | "height-to-market-price-to-from-1y-realized-price-ratio-99-5p" | "height-to-year-2015-cumulative-net-realized-profit-and-loss-1m-net-change" | "height-to-from-3m-to-6m-45p-price-paid" | "height-to-market-price-to-up-to-1w-realized-price-ratio-1p" | "height-to-from-2y-to-3y-30p-price-paid" | "height-to-year-2020-supply-in-profit" | "height-to-from-10y-45p-price-paid" | "height-to-cumulative-block-size" | "height-to-sth-net-unrealized-profit-and-loss" | "height-to-up-to-3y-realized-profit" | "height-to-crab-realized-value" | "height-to-year-2021-halved-supply" | "height-to-year-2016-90p-price-paid" | "height-to-liquid-supply-in-loss" | "height-to-from-5y-to-7y-unrealized-loss" | "height-to-humpback-supply" | "height-to-megalodon-45p-price-paid" | "height-to-p2sh-realized-value" | "height-to-up-to-7y-median-price-paid" | "height-to-market-price-to-price-4y-sma-ratio-99p" | "height-to-year-2019-value-created" | "height-to-market-price-to-year-2024-realized-price-ratio-1w-sma" | "height-to-year-2020-40p-price-paid" | "height-to-market-price-to-up-to-5y-realized-price-ratio-1p" | "height-to-up-to-2y-supply-in-loss-to-own-supply-ratio" | "height-to-year-2015-75p-price-paid" | "height-to-year-2012-supply-in-loss-to-own-supply-ratio" | "height-to-lth-realized-cap-1m-net-change" | "height-to-year-2014-supply-in-loss-to-own-supply-ratio" | "height-to-from-4y-median-price-paid" | "height-to-from-10y-negative-realized-loss" | "height-to-market-price-to-price-34d-sma-ratio-99p" | "height-to-up-to-3y-realized-loss" | "height-to-from-2y-to-3y-55p-price-paid" | "height-to-from-6m-to-1y-realized-price-0-1p" | "height-to-fish-80p-price-paid" | "height-to-from-4y-halved-supply-to-circulating-supply-ratio" | "height-to-year-2015-10p-price-paid" | "height-to-market-price-to-year-2024-realized-price-ratio-1y-sma-momentum-oscillator" | "height-to-from-1m-to-3m-realized-price-0-5p" | "height-to-subsidy-in-dollars" | "height-to-cointime-value-created" | "height-to-market-price-to-up-to-1y-realized-price-ratio-99-9p" | "height-to-humpback-80p-price-paid" | "height-to-up-to-2m-negative-unrealized-loss" | "height-to-year-2013-net-unrealized-profit-and-loss-to-market-cap-ratio" | "height-to-plankton-unrealized-profit" | "height-to-year-2021-spent-output-profit-ratio" | "height-to-from-4y-realized-cap" | "height-to-year-2023-cumulative-net-realized-profit-and-loss" | "height-to-market-price-to-from-1w-to-1m-realized-price-ratio-1w-sma" | "height-to-year-2018-supply" | "height-to-from-7y-to-10y-60p-price-paid" | "height-to-illiquid-75p-price-paid" | "height-to-market-price-to-from-10y-realized-price-ratio-99-5p" | "height-to-up-to-1w-unrealized-loss" | "height-to-market-price-to-price-21d-sma-ratio-1w-sma" | "height-to-year-2021-utxo-count" | "height-to-lth-20p-price-paid" | "height-to-year-2020-realized-price-99p" | "height-to-from-10y-to-15y-65p-price-paid" | "height-to-year-2021-realized-price-0-1p" | "height-to-from-1d-to-1w-80p-price-paid" | "height-to-market-price-to-cointime-price-ratio-0-1p" | "height-to-liquid-cumulative-realized-loss" | "height-to-year-2014-spent-output-profit-ratio" | "height-to-year-2020-realized-price-99-5p" | "height-to-liquid-30p-price-paid" | "height-to-up-to-3m-net-realized-profit-and-loss-to-market-cap-ratio" | "height-to-year-2014-input-volume" | "height-to-illiquid-cumulative-realized-profit" | "height-to-from-1y-to-2y-realized-price-1p" | "height-to-crab-supply-in-loss" | "height-to-fish-65p-price-paid" | "height-to-year-2024-median-price-paid" | "height-to-year-2023-75p-price-paid" | "height-to-up-to-1w-55p-price-paid" | "height-to-year-2021-40p-price-paid" | "height-to-market-price-to-whale-realized-price-ratio" | "height-to-year-2013-75p-price-paid" | "height-to-market-price-to-price-144d-sma-ratio-0-5p" | "height-to-year-2021-unrealized-profit" | "height-to-market-price-to-year-2013-realized-price-ratio-1w-sma" | "height-to-liveliness-net-change-2w-median" | "height-to-year-2012-realized-loss" | "height-to-from-2y-unrealized-profit" | "height-to-lth-15p-price-paid" | "height-to-market-price-to-from-4y-realized-price-ratio-0-1p" | "height-to-price-13d-sma" | "height-to-megalodon-supply-to-circulating-supply-ratio" | "height-to-year-2023-cumulative-realized-profit" | "height-to-year-2024-90p-price-paid" | "height-to-highly-liquid-supply" | "height-to-market-price-to-year-2017-realized-price-ratio-0-1p" | "height-to-shrimp-55p-price-paid" | "height-to-up-to-2m-realized-price-99-5p" | "height-to-p2tr-10p-price-paid" | "height-to-megalodon-halved-supply" | "height-to-price-13d-sma-99p" | "height-to-up-to-2y-realized-profit" | "height-to-from-2y-net-realized-profit-and-loss-to-market-cap-ratio" | "height-to-p2pkh-supply" | "height-to-from-2y-to-3y-supply-to-circulating-supply-ratio" | "height-to-market-price-to-price-1m-sma-ratio-0-5p" | "height-to-p2wpkh-value-destroyed" | "height-to-year-2013-supply-in-loss-to-circulating-supply-ratio" | "height-to-year-2016-60p-price-paid" | "height-to-p2wpkh-supply-in-loss-to-own-supply-ratio" | "height-to-from-3y-to-5y-net-realized-profit-and-loss-to-market-cap-ratio" | "height-to-market-price-to-shark-realized-price-ratio-99-9p" | "height-to-price-34d-sma-1p" | "height-to-shark-halved-supply-to-circulating-supply-ratio" | "height-to-p2sh-median-price-paid" | "height-to-from-1y-20p-price-paid" | "height-to-humpback-75p-price-paid" | "height-to-year-2016-net-realized-profit-and-loss-to-market-cap-ratio" | "height-to-year-2016-value-created" | "height-to-from-1y-net-realized-profit-and-loss-to-market-cap-ratio" | "height-to-crab-net-realized-profit-and-loss" | "height-to-p2wpkh-realized-price-99-9p" | "height-to-year-2013-supply-in-profit-to-own-supply-ratio" | "height-to-year-2019-halved-supply" | "height-to-market-price-to-p2tr-realized-price-ratio-99-5p" | "height-to-year-2011-spent-output-profit-ratio" | "height-to-from-10y-60p-price-paid" | "height-to-market-price-to-from-7y-to-10y-realized-price-ratio-99p" | "height-to-p2wsh-net-realized-profit-and-loss-to-market-cap-ratio" | "height-to-up-to-7y-realized-price-99p" | "height-to-market-price-to-up-to-1y-realized-price-ratio-99-5p" | "height-to-market-price-to-year-2010-realized-price-ratio-99-9p" | "height-to-year-2012-realized-price-0-1p" | "height-to-market-price-to-highly-liquid-realized-price-ratio-99p" | "height-to-close" | "height-to-p2tr-supply-in-profit" | "height-to-p2wsh-85p-price-paid" | "height-to-whale-negative-realized-loss" | "height-to-from-5y-to-7y-net-unrealized-profit-and-loss-to-market-cap-ratio" | "height-to-market-price-to-year-2014-realized-price-ratio-1y-sma" | "height-to-market-price-to-price-8d-sma-ratio-99-9p" | "height-to-from-1d-to-1w-realized-price-1p" | "height-to-up-to-4m-net-unrealized-profit-and-loss-to-market-cap-ratio" | "height-to-year-2022-unrealized-loss" | "height-to-market-price-to-year-2009-realized-price-ratio-1m-sma" | "height-to-up-to-1y-halved-supply" | "height-to-p2pkh-halved-supply" | "height-to-year-2018-55p-price-paid" | "height-to-fish-30p-price-paid" | "height-to-year-2013-halved-supply" | "height-to-year-2010-10p-price-paid" | "height-to-market-price-to-from-1y-to-2y-realized-price-ratio-0-1p" | "height-to-from-1d-to-1w-40p-price-paid" | "height-to-up-to-1y-supply-in-profit-to-own-supply-ratio" | "height-to-up-to-1y-90p-price-paid" | "height-to-year-2022-realized-cap" | "height-to-from-7y-to-10y-halved-supply" | "height-to-from-7y-to-10y-median-price-paid" | "height-to-from-7y-to-10y-spent-output-profit-ratio" | "height-to-humpback-supply-in-loss-to-circulating-supply-ratio" | "height-to-market-price-to-from-1d-to-1w-realized-price-ratio-1p" | "height-to-market-price-to-shark-realized-price-ratio-0-1p" | "height-to-market-price-to-year-2024-realized-price-ratio-1y-sma" | "height-to-illiquid-realized-price-99-9p" | "height-to-market-price-to-year-2024-realized-price-ratio-99-5p" | "height-to-market-price-to-from-7y-to-10y-realized-price-ratio-1p" | "height-to-p2pk-unrealized-loss" | "height-to-up-to-2m-realized-price-1p" | "height-to-market-price-to-price-2y-sma-ratio-99-5p" | "height-to-plankton-realized-price-99-9p" | "height-to-year-2012-realized-price" | "height-to-from-3y-to-5y-realized-loss" | "height-to-from-5y-to-7y-net-realized-profit-and-loss-to-market-cap-ratio" | "height-to-market-price-to-year-2010-realized-price-ratio-1w-sma" | "height-to-from-1y-supply-to-circulating-supply-ratio" | "height-to-shark-cumulative-realized-loss" | "height-to-p2wpkh-unrealized-profit" | "height-to-from-3y-to-5y-input-volume" | "height-to-price-1w-sma-99-5p" | "height-to-up-to-1y-negative-unrealized-loss" | "height-to-year-2017-25p-price-paid" | "height-to-year-2019-median-price-paid" | "height-to-from-7y-to-10y-unrealized-loss" | "height-to-liquid-35p-price-paid" | "height-to-market-price-to-up-to-1m-realized-price-ratio-1m-sma" | "height-to-year-2024-cumulative-realized-loss" | "height-to-highly-liquid-realized-value" | "height-to-up-to-7y-realized-price-0-5p" | "height-to-from-10y-to-15y-90p-price-paid" | "height-to-p2tr-supply-in-profit-to-own-supply-ratio" | "height-to-market-price-to-up-to-3m-realized-price-ratio-99-5p" | "height-to-up-to-1y-realized-cap-1m-net-change" | "height-to-from-6m-to-1y-cumulative-realized-profit" | "height-to-year-2014-input-count" | "height-to-market-price-to-up-to-1w-realized-price-ratio-0-5p" | "height-to-p2pkh-35p-price-paid" | "height-to-year-2010-net-realized-profit-and-loss-to-market-cap-ratio" | "height-to-p2pkh-net-unrealized-profit-and-loss-to-market-cap-ratio" | "height-to-up-to-6m-supply-in-profit-to-circulating-supply-ratio" | "height-to-market-price-to-price-21d-sma-ratio-1y-sma-momentum-oscillator" | "height-to-up-to-2y-net-unrealized-profit-and-loss" | "height-to-year-2017-supply-in-loss" | "height-to-market-price-to-active-price-ratio-1y-sma" | "height-to-sth-95p-price-paid" | "height-to-up-to-1w-75p-price-paid" | "height-to-market-price-to-price-8d-sma-ratio-99p" | "height-to-year-2010-unrealized-loss" | "height-to-fish-70p-price-paid" | "height-to-market-price-to-from-2y-to-3y-realized-price-ratio-99-9p" | "height-to-market-price-to-shark-realized-price-ratio-1m-sma" | "height-to-market-price-to-price-1w-sma-ratio" | "height-to-humpback-unrealized-profit" | "height-to-transaction-volume-in-dollars-1m-sma" | "height-to-year-2015-halved-supply-to-circulating-supply-ratio" | "height-to-from-2y-80p-price-paid" | "height-to-up-to-3y-90p-price-paid" | "height-to-from-4y-85p-price-paid" | "height-to-liquid-realized-loss" | "height-to-from-10y-25p-price-paid" | "height-to-up-to-2y-realized-cap" | "height-to-concurrent-liveliness" | "height-to-up-to-4m-realized-profit" | "height-to-sth-65p-price-paid" | "height-to-up-to-1m-input-volume" | "height-to-year-2015-supply-in-loss-to-own-supply-ratio" | "height-to-year-2017-75p-price-paid" | "height-to-year-2022-realized-price-1p" | "height-to-shark-spent-output-profit-ratio" | "height-to-up-to-10y-unrealized-profit" | "height-to-up-to-3m-unrealized-profit" | "height-to-liquid-realized-price-99p" | "height-to-market-price-to-from-1y-realized-price-ratio-1y-sma" | "height-to-sth-85p-price-paid" | "height-to-year-2019-cumulative-realized-profit" | "height-to-year-2021-10p-price-paid" | "height-to-from-1d-to-1w-55p-price-paid" | "height-to-from-1y-cumulative-realized-profit" | "height-to-highly-liquid-value-destroyed" | "height-to-up-to-2y-halved-supply" | "height-to-market-price-to-megalodon-realized-price-ratio-99-5p" | "height-to-vaultedness" | "height-to-lth-supply-in-loss" | "height-to-up-to-5m-spent-output-profit-ratio" | "height-to-up-to-5y-supply-in-loss-to-circulating-supply-ratio" | "height-to-up-to-4m-supply-in-profit-to-circulating-supply-ratio" | "height-to-market-price-to-active-price-ratio-1m-sma" | "height-to-p2sh-15p-price-paid" | "height-to-from-10y-to-15y-value-created" | "height-to-year-2023-cumulative-realized-loss" | "height-to-year-2019-halved-supply-to-circulating-supply-ratio" | "height-to-market-price-to-liquid-realized-price-ratio-0-5p" | "height-to-year-2009-value-created" | "height-to-from-1w-to-1m-60p-price-paid" | "height-to-market-price-to-year-2019-realized-price-ratio-99-5p" | "height-to-from-10y-10p-price-paid" | "height-to-market-price-to-from-1y-realized-price-ratio-1w-sma" | "height-to-up-to-1y-25p-price-paid" | "height-to-up-to-6m-supply-in-loss-to-circulating-supply-ratio" | "height-to-market-price-to-from-7y-to-10y-realized-price-ratio-1y-sma-momentum-oscillator" | "height-to-up-to-3y-unrealized-loss" | "height-to-illiquid-cumulative-net-realized-profit-and-loss" | "height-to-from-4y-70p-price-paid" | "height-to-market-price-to-from-4y-realized-price-ratio-99-9p" | "height-to-from-1m-to-3m-45p-price-paid" | "height-to-from-1m-to-3m-cumulative-realized-loss" | "height-to-market-price-to-price-13d-sma-ratio-0-1p" | "height-to-liquid-net-realized-profit-and-loss-to-market-cap-ratio" | "height-to-market-price-to-up-to-3m-realized-price-ratio-1y-sma-momentum-oscillator" | "height-to-vaulted-price-1p" | "height-to-from-6m-to-1y-input-volume" | "height-to-up-to-4m-supply-to-circulating-supply-ratio" | "height-to-year-2014-halved-supply-to-circulating-supply-ratio" | "height-to-year-2015-40p-price-paid" | "height-to-lth-55p-price-paid" | "height-to-market-price-to-price-34d-sma-ratio-1y-sma" | "height-to-up-to-1d-40p-price-paid" | "height-to-plankton-supply-in-profit" | "height-to-market-price-to-year-2015-realized-price-ratio-0-1p" | "height-to-crab-25p-price-paid" | "height-to-up-to-3y-30p-price-paid" | "height-to-whale-80p-price-paid" | "height-to-price-4y-sma" | "height-to-p2tr-supply-in-loss" | "height-to-from-1y-to-2y-unrealized-loss" | "height-to-from-1w-to-1m-cumulative-net-realized-profit-and-loss" | "height-to-year-2013-supply-in-loss-to-own-supply-ratio" | "height-to-shark-utxo-count" | "height-to-up-to-1m-realized-price-0-5p" | "height-to-from-10y-to-15y-realized-price-0-1p" | "height-to-market-price-to-p2tr-realized-price-ratio-1y-sma" | "height-to-market-price-to-price-4y-sma-ratio-99-9p" | "height-to-market-price-to-up-to-2m-realized-price-ratio-1y-sma" | "height-to-up-to-15y-realized-price-99p" | "height-to-shrimp-70p-price-paid" | "height-to-market-price-to-fish-realized-price-ratio-99-9p" | "height-to-up-to-1d-supply-in-profit-to-circulating-supply-ratio" | "height-to-year-2015-supply-to-circulating-supply-ratio" | "height-to-from-15y-70p-price-paid" | "height-to-plankton-value-created" | "height-to-market-price-to-price-1m-sma-ratio-0-1p" | "height-to-up-to-1y-input-volume" | "height-to-up-to-3m-supply-to-circulating-supply-ratio" | "height-to-p2pk-utxo-count" | "height-to-up-to-3y-realized-cap-1m-net-change" | "height-to-year-2018-05p-price-paid" | "height-to-p2pkh-10p-price-paid" | "height-to-year-2019-realized-price-99-9p" | "height-to-fish-cumulative-realized-loss" | "height-to-up-to-15y-halved-supply-to-circulating-supply-ratio" | "height-to-market-price-to-up-to-3y-realized-price-ratio-99-5p" | "height-to-active-supply" | "height-to-p2wsh-median-price-paid" | "height-to-year-2014-15p-price-paid" | "height-to-year-2023-spent-output-profit-ratio" | "height-to-cointime-cap" | "height-to-from-7y-to-10y-15p-price-paid" | "height-to-market-price-to-price-8d-sma-ratio-1w-sma" | "height-to-from-10y-to-15y-supply-in-loss-to-own-supply-ratio" | "height-to-up-to-5y-85p-price-paid" | "height-to-fish-cumulative-net-realized-profit-and-loss-1m-net-change" | "height-to-market-price-to-year-2013-realized-price-ratio-99p" | "height-to-p2pk-address-count" | "height-to-p2pk-negative-unrealized-loss" | "height-to-shrimp-supply-in-profit" | "height-to-from-4y-supply-in-profit-to-own-supply-ratio" | "height-to-year-2011-supply-in-loss-to-own-supply-ratio" | "height-to-year-2022-supply-in-loss-to-circulating-supply-ratio" | "height-to-year-2014-realized-profit" | "height-to-highly-liquid-70p-price-paid" | "height-to-from-7y-to-10y-supply-to-circulating-supply-ratio" | "height-to-lth-cumulative-realized-profit" | "height-to-market-price-to-year-2014-realized-price-ratio-1y-sma-momentum-oscillator" | "height-to-p2wpkh-70p-price-paid" | "height-to-shark-90p-price-paid" | "height-to-whale-unrealized-loss" | "height-to-from-1w-to-1m-value-created" | "height-to-illiquid-supply-in-profit-to-own-supply-ratio" | "height-to-up-to-5m-05p-price-paid" | "height-to-up-to-5y-35p-price-paid" | "height-to-from-5y-to-7y-realized-loss" | "height-to-shark-input-count" | "height-to-up-to-7y-cumulative-net-realized-profit-and-loss" | "height-to-p2tr-85p-price-paid" | "height-to-fish-supply" | "height-to-market-price-to-realized-price-ratio-1m-sma" | "height-to-market-price-to-year-2017-realized-price-ratio-99-5p" | "height-to-whale-value-created" | "height-to-plankton-utxo-count" | "height-to-liquid-25p-price-paid" | "height-to-market-price-to-price-55d-sma-ratio-1w-sma" | "height-to-up-to-1w-net-realized-profit-and-loss" | "height-to-lth-input-count" | "height-to-humpback-net-realized-profit-and-loss-to-market-cap-ratio" | "height-to-up-to-1d-supply-in-loss-to-own-supply-ratio" | "height-to-market-price-to-price-144d-sma-ratio" | "height-to-market-price-to-year-2013-realized-price-ratio-1y-sma-momentum-oscillator" | "height-to-up-to-1w-halved-supply" | "height-to-year-2017-value-created" | "height-to-up-to-15y-supply-in-profit-to-own-supply-ratio" | "height-to-from-1y-to-2y-halved-supply-to-circulating-supply-ratio" | "height-to-from-10y-halved-supply" | "height-to-market-price-to-price-8d-sma-ratio" | "height-to-market-price-to-p2wsh-realized-price-ratio-99p" | "height-to-fees-in-dollars" | "height-to-up-to-3m-spent-output-profit-ratio" | "height-to-year-2011-05p-price-paid" | "height-to-year-2017-45p-price-paid" | "height-to-p2wpkh-55p-price-paid" | "height-to-shark-70p-price-paid" | "height-to-market-price-to-p2pk-realized-price-ratio-1y-sma" | "height-to-up-to-4m-supply-in-profit-to-own-supply-ratio" | "height-to-year-2023-supply-in-loss-to-circulating-supply-ratio" | "height-to-up-to-6m-net-unrealized-profit-and-loss-to-market-cap-ratio" | "height-to-up-to-1m-net-unrealized-profit-and-loss-to-market-cap-ratio" | "height-to-liquid-supply-in-profit-to-circulating-supply-ratio" | "height-to-market-price-to-p2sh-realized-price-ratio-1y-sma-momentum-oscillator" | "height-to-up-to-1w-realized-cap" | "height-to-up-to-4m-supply" | "height-to-year-2010-15p-price-paid" | "height-to-year-2014-value-destroyed" | "height-to-year-2019-35p-price-paid" | "height-to-from-1y-70p-price-paid" | "height-to-from-7y-to-10y-value-created" | "height-to-up-to-7y-75p-price-paid" | "height-to-year-2013-realized-cap-1m-net-change" | "height-to-market-price-to-price-1m-sma-ratio-99-9p" | "height-to-year-2021-realized-price-0-5p" | "height-to-up-to-2m-negative-realized-loss" | "height-to-up-to-1d-value-created" | "height-to-from-5y-to-7y-65p-price-paid" | "height-to-up-to-2y-spent-output-profit-ratio" | "height-to-up-to-1m-supply-in-profit-to-circulating-supply-ratio" | "height-to-market-price-to-illiquid-realized-price-ratio-1w-sma" | "height-to-from-1y-to-2y-30p-price-paid" | "height-to-market-price-to-price-144d-sma-ratio-1w-sma" | "height-to-market-price-to-year-2020-realized-price-ratio-0-1p" | "height-to-market-price-to-from-1d-to-1w-realized-price-ratio-99-5p" | "height-to-up-to-10y-net-realized-profit-and-loss" | "height-to-market-price-to-price-21d-sma-ratio-1m-sma" | "height-to-transaction-volume-1m-sma" | "height-to-year-2010-55p-price-paid" | "height-to-market-price-to-year-2023-realized-price-ratio-0-1p" | "height-to-up-to-7y-net-unrealized-profit-and-loss-to-market-cap-ratio" | "height-to-year-2015-supply-in-profit-to-own-supply-ratio" | "height-to-from-1y-to-2y-10p-price-paid" | "height-to-market-price-to-year-2019-realized-price-ratio-1y-sma-momentum-oscillator" | "height-to-year-2010-realized-price-1p" | "height-to-year-2019-cumulative-net-realized-profit-and-loss" | "height-to-from-3m-to-6m-20p-price-paid" | "height-to-p2pk-80p-price-paid" | "height-to-from-1y-cumulative-net-realized-profit-and-loss" | "height-to-fish-net-realized-profit-and-loss" | "height-to-p2tr-halved-supply" | "height-to-year-2022-cumulative-realized-profit" | "height-to-year-2024-60p-price-paid" | "height-to-up-to-2m-30p-price-paid" | "height-to-p2sh-realized-price-0-1p" | "height-to-up-to-2m-value-destroyed" | "height-to-from-15y-realized-price-99-5p" | "height-to-median-price-paid" | "height-to-from-3m-to-6m-supply-in-loss-to-circulating-supply-ratio" | "height-to-year-2021-supply-in-loss-to-own-supply-ratio" | "height-to-market-price-to-illiquid-realized-price-ratio-1p" | "height-to-from-1y-to-2y-05p-price-paid" | "height-to-p2pk-supply-to-circulating-supply-ratio" | "height-to-year-2023-95p-price-paid" | "height-to-year-2011-75p-price-paid" | "height-to-year-2018-supply-in-loss" | "height-to-from-3m-to-6m-realized-profit" | "height-to-year-2021-65p-price-paid" | "height-to-year-2009-negative-unrealized-loss" | "height-to-year-2009-supply-in-loss" | "height-to-liquid-55p-price-paid" | "height-to-up-to-5m-75p-price-paid" | "height-to-year-2016-supply-to-circulating-supply-ratio" | "height-to-year-2020-unrealized-loss" | "height-to-market-price-to-from-2y-realized-price-ratio-1y-sma" | "height-to-cointime-value-destroyed" | "height-to-from-2y-90p-price-paid" | "height-to-market-price-to-p2sh-realized-price-ratio-1y-sma" | "height-to-market-price-to-plankton-realized-price-ratio-1w-sma" | "height-to-p2pk-realized-cap-1m-net-change" | "height-to-up-to-3y-35p-price-paid" | "height-to-plankton-65p-price-paid" | "height-to-up-to-7y-05p-price-paid" | "height-to-year-2019-cumulative-net-realized-profit-and-loss-1m-net-change" | "height-to-year-2019-supply" | "height-to-from-1m-to-3m-realized-value" | "height-to-up-to-1d-cumulative-realized-profit" | "height-to-from-10y-95p-price-paid" | "height-to-year-2011-25p-price-paid" | "height-to-up-to-7y-cumulative-realized-profit" | "height-to-up-to-6m-45p-price-paid" | "height-to-p2wpkh-supply-in-profit" | "height-to-from-10y-to-15y-halved-supply-to-circulating-supply-ratio" | "height-to-from-5y-to-7y-45p-price-paid" | "height-to-plankton-value-destroyed" | "height-to-market-price-to-humpback-realized-price-ratio-0-1p" | "height-to-from-1m-to-3m-value-destroyed" | "height-to-market-price-to-p2pkh-realized-price-ratio-99-5p" | "height-to-from-3y-to-5y-realized-price-0-1p" | "height-to-from-6m-to-1y-realized-price-99-9p" | "height-to-from-1y-realized-profit" | "height-to-market-price-to-up-to-5m-realized-price-ratio-1m-sma" | "height-to-market-price-to-year-2018-realized-price-ratio-1w-sma" | "height-to-p2sh-25p-price-paid" | "height-to-crab-supply-in-loss-to-own-supply-ratio" | "height-to-up-to-1w-supply-in-loss" | "height-to-market-price-to-up-to-7y-realized-price-ratio-99p" | "height-to-year-2015-realized-price-99p" | "height-to-market-price-to-from-10y-realized-price-ratio-99p" | "height-to-up-to-5m-realized-price" | "height-to-market-price-to-from-6m-to-1y-realized-price-ratio-1y-sma-momentum-oscillator" | "height-to-from-15y-realized-price-1p" | "height-to-from-2y-cumulative-net-realized-profit-and-loss" | "height-to-market-price-to-year-2013-realized-price-ratio" | "height-to-year-2012-input-volume" | "height-to-from-1y-supply-in-profit" | "height-to-from-7y-to-10y-realized-price" | "height-to-year-2013-45p-price-paid" | "height-to-p2wpkh-cumulative-net-realized-profit-and-loss-1m-net-change" | "height-to-year-2010-95p-price-paid" | "height-to-year-2023-40p-price-paid" | "height-to-up-to-5y-halved-supply" | "height-to-from-10y-to-15y-25p-price-paid" | "height-to-from-5y-to-7y-net-unrealized-profit-and-loss" | "height-to-market-price-to-up-to-5y-realized-price-ratio-1y-sma-momentum-oscillator" | "height-to-from-1y-to-2y-supply-in-profit" | "height-to-cointime-price-0-5p" | "height-to-up-to-6m-realized-price-99-9p" | "height-to-year-2012-negative-unrealized-loss" | "height-to-from-4y-net-unrealized-profit-and-loss-to-market-cap-ratio" | "height-to-from-5y-to-7y-utxo-count" | "height-to-from-6m-to-1y-realized-profit" | "height-to-from-5y-to-7y-supply-in-loss-to-circulating-supply-ratio" | "height-to-up-to-1w-supply-in-profit" | "height-to-market-price-to-from-1y-realized-price-ratio-0-5p" | "height-to-p2pk-supply-in-profit-to-own-supply-ratio" | "height-to-year-2015-85p-price-paid" | "height-to-from-2y-to-3y-supply-in-loss-to-own-supply-ratio" | "height-to-year-2019-net-unrealized-profit-and-loss-to-market-cap-ratio" | "height-to-p2sh-halved-supply" | "height-to-year-2023-utxo-count" | "height-to-p2tr-70p-price-paid" | "height-to-shark-35p-price-paid" | "height-to-from-3m-to-6m-spent-output-profit-ratio" | "height-to-liquid-input-count" | "height-to-up-to-2y-utxo-count" | "height-to-market-price-to-lth-realized-price-ratio-0-5p" | "height-to-year-2019-60p-price-paid" | "height-to-up-to-5m-utxo-count" | "height-to-market-price-to-up-to-4m-realized-price-ratio-1m-sma" | "height-to-lth-utxo-count" | "height-to-highly-liquid-negative-unrealized-loss" | "height-to-liquid-halved-supply-to-circulating-supply-ratio" | "height-to-market-price-to-from-2y-to-3y-realized-price-ratio-1w-sma" | "height-to-market-price-to-price-89d-sma-ratio-1m-sma" | "height-to-year-2023-realized-value" | "height-to-up-to-7y-supply-in-loss-to-circulating-supply-ratio" | "height-to-market-price-to-up-to-2m-realized-price-ratio-99-9p" | "height-to-year-2023-55p-price-paid" | "height-to-megalodon-negative-realized-loss" | "height-to-market-price-to-liquid-realized-price-ratio-99-5p" | "height-to-year-2016-supply-in-profit-to-own-supply-ratio" | "height-to-up-to-10y-utxo-count" | "height-to-fish-75p-price-paid" | "height-to-up-to-7y-realized-price-99-9p" | "height-to-sth-supply-in-profit" | "height-to-whale-supply-to-circulating-supply-ratio" | "height-to-shrimp-address-count" | "height-to-p2tr-halved-supply-to-circulating-supply-ratio" | "height-to-crab-realized-cap-1m-net-change" | "height-to-year-2017-cumulative-realized-profit" | "height-to-price-21d-sma-99-5p" | "height-to-market-price-to-from-1w-to-1m-realized-price-ratio-99-5p" | "height-to-whale-supply-in-loss-to-own-supply-ratio" | "height-to-year-2016-35p-price-paid" | "height-to-humpback-20p-price-paid" | "height-to-from-4y-40p-price-paid" | "height-to-up-to-7y-realized-value" | "height-to-p2wsh-halved-supply-to-circulating-supply-ratio" | "height-to-vaulted-cap" | "height-to-year-2010-60p-price-paid" | "height-to-shark-value-destroyed" | "height-to-from-2y-realized-cap-1m-net-change" | "height-to-liveliness-net-change" | "height-to-year-2019-30p-price-paid" | "height-to-price-4y-sma-99p" | "height-to-up-to-5y-realized-cap-1m-net-change" | "height-to-p2wsh-70p-price-paid" | "height-to-year-2024-supply-in-loss-to-circulating-supply-ratio" | "height-to-sth-supply-in-profit-to-own-supply-ratio" | "height-to-from-1w-to-1m-supply-in-profit" | "height-to-price-1w-sma" | "height-to-year-2018-input-volume" | "height-to-from-1d-to-1w-supply-in-loss-to-own-supply-ratio" | "height-to-up-to-1w-95p-price-paid" | "height-to-year-2010-supply-in-profit" | "height-to-from-5y-to-7y-supply-in-loss-to-own-supply-ratio" | "height-to-price-8d-sma-1p" | "height-to-up-to-5m-halved-supply-to-circulating-supply-ratio" | "height-to-market-price-to-from-1y-realized-price-ratio" | "height-to-highly-liquid-supply-in-loss" | "height-to-price-89d-sma-0-1p" | "height-to-year-2011-10p-price-paid" | "height-to-market-price-to-crab-realized-price-ratio-99p" | "height-to-market-price-to-illiquid-realized-price-ratio-99-5p" | "height-to-sth-cumulative-net-realized-profit-and-loss" | "height-to-up-to-5y-input-count" | "height-to-whale-60p-price-paid" | "height-to-price-8d-sma" | "height-to-p2sh-35p-price-paid" | "height-to-year-2010-30p-price-paid" | "height-to-illiquid-net-realized-profit-and-loss-to-market-cap-ratio" | "height-to-from-1d-to-1w-60p-price-paid" | "height-to-up-to-10y-85p-price-paid" | "height-to-year-2018-realized-price-99p" | "height-to-shrimp-median-price-paid" | "height-to-market-price-to-lth-realized-price-ratio" | "height-to-from-1w-to-1m-30p-price-paid" | "height-to-year-2014-90p-price-paid" | "height-to-year-2023-realized-price-0-1p" | "height-to-up-to-2y-unrealized-loss" | "height-to-price-21d-sma-0-1p" | "height-to-year-2024-80p-price-paid" | "height-to-market-price-to-fish-realized-price-ratio-0-1p" | "height-to-from-3y-to-5y-cumulative-net-realized-profit-and-loss-1m-net-change" | "height-to-from-1d-to-1w-realized-cap-1m-net-change" | "height-to-year-2011-15p-price-paid" | "height-to-market-price-to-year-2015-realized-price-ratio-1y-sma-momentum-oscillator" | "height-to-year-2021-realized-value" | "height-to-year-2021-value-destroyed" | "height-to-from-1y-halved-supply-to-circulating-supply-ratio" | "height-to-market-price-to-year-2021-realized-price-ratio" | "height-to-year-2015-net-unrealized-profit-and-loss" | "height-to-up-to-3m-45p-price-paid" | "height-to-year-2010-realized-cap-1m-net-change" | "height-to-market-price-to-lth-realized-price-ratio-1w-sma" | "height-to-from-15y-supply-in-profit" | "height-to-p2wpkh-negative-unrealized-loss" | "height-to-true-market-mean-99-9p" | "height-to-up-to-2y-input-count" | "height-to-year-2021-supply" | "height-to-year-2015-realized-price" | "height-to-price-8d-sma-0-1p" | "height-to-realized-cap" | "height-to-market-price-to-humpback-realized-price-ratio-1y-sma" | "height-to-shrimp-30p-price-paid" | "height-to-price-4y-sma-99-9p" | "height-to-supply-in-loss" | "height-to-cointime-price-0-1p" | "height-to-from-15y-55p-price-paid" | "height-to-market-price-to-up-to-10y-realized-price-ratio-99-9p" | "height-to-from-10y-to-15y-net-realized-profit-and-loss" | "height-to-market-price-to-from-15y-realized-price-ratio-99-5p" | "height-to-price-13d-sma-0-5p" | "height-to-up-to-15y-supply-in-profit-to-circulating-supply-ratio" | "height-to-market-price-to-whale-realized-price-ratio-1p" | "height-to-up-to-15y-45p-price-paid" | "height-to-up-to-1y-45p-price-paid" | "height-to-from-2y-to-3y-median-price-paid" | "height-to-market-price-to-up-to-6m-realized-price-ratio" | "height-to-up-to-15y-supply-in-loss-to-own-supply-ratio" | "height-to-year-2009-10p-price-paid" | "height-to-year-2020-value-created" | "height-to-year-2023-25p-price-paid" | "height-to-market-price-to-price-2y-sma-ratio-1p" | "height-to-price-8d-sma-0-5p" | "height-to-year-2010-realized-price-0-5p" | "height-to-from-10y-to-15y-spent-output-profit-ratio" | "height-to-year-2012-cumulative-net-realized-profit-and-loss-1m-net-change" | "height-to-from-6m-to-1y-realized-price" | "height-to-highly-liquid-85p-price-paid" | "height-to-up-to-4m-net-realized-profit-and-loss-to-market-cap-ratio" | "height-to-from-3y-to-5y-20p-price-paid" | "height-to-market-price-to-up-to-3y-realized-price-ratio-99p" | "height-to-market-price-to-year-2012-realized-price-ratio" | "height-to-megalodon-realized-price" | "height-to-market-price-to-up-to-5m-realized-price-ratio-0-5p" | "height-to-market-price-to-price-2y-sma-ratio-99-9p" | "height-to-from-2y-realized-price-99-9p" | "height-to-sth-realized-cap-1m-net-change" | "height-to-market-price-to-year-2019-realized-price-ratio" | "height-to-up-to-10y-65p-price-paid" | "height-to-year-2020-75p-price-paid" | "height-to-highly-liquid-40p-price-paid" | "height-to-up-to-5m-supply" | "height-to-fish-realized-cap-1m-net-change" | "height-to-illiquid-35p-price-paid" | "height-to-crab-address-count" | "height-to-whale-85p-price-paid" | "height-to-p2sh-net-unrealized-profit-and-loss" | "height-to-market-price-to-year-2018-realized-price-ratio" | "height-to-megalodon-supply-in-loss-to-circulating-supply-ratio" | "height-to-market-price-to-up-to-6m-realized-price-ratio-1y-sma" | "height-to-from-4y-realized-price-99p" | "height-to-year-2019-20p-price-paid" | "height-to-year-2022-80p-price-paid" | "height-to-from-1y-unrealized-profit" | "height-to-year-2020-halved-supply-to-circulating-supply-ratio" | "height-to-market-price-to-from-1d-to-1w-realized-price-ratio-99-9p" | "height-to-up-to-15y-negative-realized-loss" | "height-to-year-2011-net-unrealized-profit-and-loss" | "height-to-from-3m-to-6m-net-unrealized-profit-and-loss" | "height-to-up-to-10y-net-realized-profit-and-loss-to-market-cap-ratio" | "height-to-up-to-1w-negative-realized-loss" | "height-to-market-price-to-price-1w-sma-ratio-1p" | "height-to-up-to-1d-unrealized-profit" | "height-to-year-2021-net-unrealized-profit-and-loss-to-market-cap-ratio" | "height-to-p2tr-address-count" | "height-to-up-to-6m-85p-price-paid" | "height-to-year-2021-85p-price-paid" | "height-to-active-price-0-1p" | "height-to-from-10y-realized-price-99-9p" | "height-to-year-2014-30p-price-paid" | "height-to-25p-price-paid" | "height-to-supply" | "height-to-market-price-to-year-2011-realized-price-ratio-99-9p" | "height-to-illiquid-halved-supply-to-circulating-supply-ratio" | "height-to-market-price-to-p2sh-realized-price-ratio" | "height-to-from-1m-to-3m-unrealized-loss" | "height-to-market-price-to-up-to-5y-realized-price-ratio-0-5p" | "height-to-market-price-to-year-2023-realized-price-ratio-1y-sma" | "height-to-p2pkh-negative-unrealized-loss" | "height-to-p2tr-35p-price-paid" | "height-to-sth-net-realized-profit-and-loss-to-market-cap-ratio" | "height-to-up-to-10y-cumulative-realized-loss" | "height-to-year-2010-supply-in-profit-to-own-supply-ratio" | "height-to-market-price-to-p2tr-realized-price-ratio-0-5p" | "height-to-shark-65p-price-paid" | "height-to-from-15y-supply-in-loss-to-circulating-supply-ratio" | "height-to-shrimp-95p-price-paid" | "height-to-market-price-to-plankton-realized-price-ratio-1m-sma" | "height-to-year-2010-cumulative-net-realized-profit-and-loss" | "height-to-year-2011-cumulative-realized-profit" | "height-to-up-to-7y-95p-price-paid" | "height-to-market-price-to-price-200w-sma-ratio-1y-sma" | "height-to-humpback-halved-supply" | "height-to-market-price-to-up-to-1d-realized-price-ratio-99-9p" | "height-to-up-to-5m-realized-price-1p" | "height-to-crab-supply" | "height-to-crab-75p-price-paid" | "height-to-humpback-realized-price-99-9p" | "height-to-up-to-2m-cumulative-realized-profit" | "height-to-market-price-to-year-2009-realized-price-ratio-99-9p" | "height-to-market-price-to-p2pk-realized-price-ratio-99p" | "height-to-market-price-to-year-2023-realized-price-ratio" | "height-to-price-144d-sma-1p" | "height-to-supply-in-profit" | "height-to-up-to-15y-25p-price-paid" | "height-to-shrimp-05p-price-paid" | "height-to-year-2015-utxo-count" | "height-to-market-price-to-up-to-2m-realized-price-ratio-0-1p" | "height-to-p2wsh-55p-price-paid" | "height-to-year-2018-80p-price-paid" | "height-to-up-to-3y-negative-realized-loss" | "height-to-plankton-supply-to-circulating-supply-ratio" | "height-to-market-price-to-up-to-15y-realized-price-ratio-0-1p" | "height-to-up-to-5m-realized-profit" | "height-to-up-to-5m-25p-price-paid" | "height-to-up-to-1w-realized-value" | "height-to-up-to-6m-20p-price-paid" | "height-to-year-2014-net-unrealized-profit-and-loss-to-market-cap-ratio" | "height-to-from-15y-value-destroyed" | "height-to-from-1m-to-3m-30p-price-paid" | "height-to-up-to-15y-75p-price-paid" | "height-to-up-to-1w-65p-price-paid" | "height-to-p2tr-15p-price-paid" | "height-to-up-to-6m-65p-price-paid" | "height-to-illiquid-spent-output-profit-ratio" | "height-to-year-2017-negative-unrealized-loss" | "height-to-market-price-to-from-15y-realized-price-ratio-99-9p" | "height-to-up-to-10y-realized-price" | "height-to-market-price-to-from-1w-to-1m-realized-price-ratio" | "height-to-whale-median-price-paid" | "height-to-from-1y-realized-cap-1m-net-change" | "height-to-from-15y-65p-price-paid" | "height-to-from-10y-to-15y-cumulative-net-realized-profit-and-loss-1m-net-change" | "height-to-year-2019-05p-price-paid" | "height-to-year-2017-10p-price-paid" | "height-to-up-to-15y-realized-profit" | "height-to-fish-realized-price-0-1p" | "height-to-lth-realized-value" | "height-to-up-to-3y-95p-price-paid" | "height-to-p2pkh-input-count" | "height-to-from-5y-to-7y-cumulative-realized-profit" | "height-to-market-price-to-price-89d-sma-ratio-99p" | "height-to-market-price-to-up-to-6m-realized-price-ratio-1w-sma" | "height-to-year-2016-realized-cap" | "height-to-year-2024-30p-price-paid" | "height-to-market-price-to-illiquid-realized-price-ratio-99-9p" | "height-to-price-1m-sma-99-5p" | "height-to-up-to-1w-value-created" | "height-to-up-to-4m-cumulative-realized-loss" | "height-to-up-to-5m-realized-price-99-9p" | "height-to-market-price-to-true-market-mean-ratio-1y-sma-momentum-oscillator" | "height-to-lth-cumulative-net-realized-profit-and-loss" | "height-to-market-price-to-shrimp-realized-price-ratio-1y-sma" | "height-to-up-to-7y-net-unrealized-profit-and-loss" | "height-to-year-2011-cumulative-net-realized-profit-and-loss-1m-net-change" | "height-to-year-2016-halved-supply-to-circulating-supply-ratio" | "height-to-year-2016-median-price-paid" | "height-to-p2sh-supply" | "height-to-year-2019-spent-output-profit-ratio" | "height-to-from-3y-to-5y-median-price-paid" | "height-to-up-to-7y-55p-price-paid" | "height-to-sth-realized-price-99-9p" | "height-to-plankton-negative-unrealized-loss" | "height-to-price-89d-sma-1p" | "height-to-transaction-volume-in-dollars-1w-sma" | "height-to-from-7y-to-10y-net-unrealized-profit-and-loss-to-market-cap-ratio" | "height-to-from-2y-to-3y-70p-price-paid" | "height-to-from-1y-to-2y-40p-price-paid" | "height-to-from-2y-to-3y-realized-price-0-1p" | "height-to-up-to-1m-input-count" | "height-to-from-1d-to-1w-30p-price-paid" | "height-to-up-to-4m-unrealized-profit" | "height-to-up-to-1m-cumulative-realized-loss" | "height-to-up-to-5m-realized-price-99p" | "height-to-plankton-cumulative-realized-loss" | "height-to-whale-realized-price-99p" | "height-to-year-2015-negative-realized-loss" | "height-to-year-2022-35p-price-paid" | "height-to-up-to-15y-30p-price-paid" | "height-to-year-2024-halved-supply" | "height-to-from-1w-to-1m-realized-price-99p" | "height-to-highly-liquid-input-volume" | "height-to-market-price-to-from-5y-to-7y-realized-price-ratio" | "height-to-up-to-5m-30p-price-paid" | "height-to-from-5y-to-7y-realized-price-99-9p" | "height-to-yearly-inflation-rate" | "height-to-up-to-1w-supply-to-circulating-supply-ratio" | "height-to-up-to-7y-cumulative-net-realized-profit-and-loss-1m-net-change" | "height-to-year-2017-55p-price-paid" | "height-to-market-price-to-shrimp-realized-price-ratio-99-9p" | "height-to-up-to-1m-realized-price" | "height-to-up-to-1w-realized-price-99-9p" | "height-to-year-2024-realized-price-99-5p" | "height-to-from-3y-to-5y-unrealized-loss" | "height-to-humpback-15p-price-paid" | "height-to-fish-cumulative-realized-profit" | "height-to-p2pk-40p-price-paid" | "height-to-from-2y-median-price-paid" | "height-to-from-10y-to-15y-median-price-paid" | "height-to-up-to-10y-negative-unrealized-loss" | "height-to-35p-price-paid" | "height-to-market-price-to-from-3m-to-6m-realized-price-ratio" | "height-to-year-2023-realized-price" | "height-to-fees" | "height-to-from-4y-realized-cap-1m-net-change" | "height-to-year-2015-80p-price-paid" | "height-to-year-2024-35p-price-paid" | "height-to-from-15y-median-price-paid" | "height-to-humpback-value-destroyed" | "height-to-market-price-to-from-5y-to-7y-realized-price-ratio-1y-sma-momentum-oscillator" | "height-to-sth-input-count" | "height-to-from-3y-to-5y-supply-in-loss" | "height-to-market-price-to-whale-realized-price-ratio-1y-sma-momentum-oscillator" | "height-to-market-price-to-from-3y-to-5y-realized-price-ratio-1y-sma" | "height-to-up-to-3m-realized-price-99p" | "height-to-year-2014-cumulative-net-realized-profit-and-loss-1m-net-change" | "height-to-from-2y-to-3y-supply-in-profit-to-own-supply-ratio" | "height-to-market-price-to-from-10y-to-15y-realized-price-ratio-1p" | "height-to-year-2022-95p-price-paid" | "height-to-year-2024-realized-cap" | "height-to-year-2011-realized-price-0-1p" | "height-to-from-3m-to-6m-90p-price-paid" | "height-to-from-7y-to-10y-negative-unrealized-loss" | "height-to-from-1w-to-1m-supply" | "height-to-market-price-to-year-2011-realized-price-ratio-0-1p" | "height-to-up-to-5y-negative-unrealized-loss" | "height-to-year-2015-realized-price-99-5p" | "height-to-spent-output-profit-ratio" | "height-to-block-interval" | "height-to-market-price-to-from-3y-to-5y-realized-price-ratio-99-9p" | "height-to-up-to-1w-30p-price-paid" | "height-to-up-to-1w-value-destroyed" | "height-to-market-price-to-price-1w-sma-ratio-99-9p" | "height-to-from-1y-to-2y-realized-price" | "height-to-humpback-net-realized-profit-and-loss" | "height-to-market-price-to-true-market-mean-ratio-0-5p" | "height-to-realized-price-99-5p" | "height-to-year-2014-value-created" | "height-to-market-price-to-price-1y-sma-ratio-1p" | "height-to-liquid-utxo-count" | "height-to-up-to-1d-halved-supply" | "height-to-crab-realized-price-99-9p" | "height-to-market-price-to-from-10y-realized-price-ratio-99-9p" | "height-to-market-price-to-year-2022-realized-price-ratio-1p" | "height-to-year-2012-10p-price-paid" | "height-to-p2tr-cumulative-realized-profit" | "height-to-year-2018-unrealized-loss" | "height-to-humpback-cumulative-realized-profit" | "height-to-humpback-supply-in-profit-to-circulating-supply-ratio" | "height-to-shrimp-input-volume" | "height-to-year-2020-70p-price-paid" | "height-to-highly-liquid-supply-in-profit" | "height-to-market-price-to-from-7y-to-10y-realized-price-ratio-0-5p" | "height-to-year-2020-halved-supply" | "height-to-from-1w-to-1m-value-destroyed" | "height-to-fish-supply-in-profit-to-own-supply-ratio" | "height-to-shark-supply" | "height-to-year-2022-unrealized-profit" | "height-to-plankton-realized-price-99-5p" | "height-to-up-to-2y-cumulative-realized-profit" | "height-to-megalodon-cumulative-net-realized-profit-and-loss-1m-net-change" | "height-to-plankton-80p-price-paid" | "height-to-from-1w-to-1m-realized-loss" | "height-to-market-price-to-liquid-realized-price-ratio-1y-sma-momentum-oscillator" | "height-to-active-cap" | "height-to-p2wpkh-cumulative-realized-loss" | "height-to-market-price-to-year-2009-realized-price-ratio-0-1p" | "height-to-from-15y-input-count" | "height-to-market-price-to-shark-realized-price-ratio-99-5p" | "height-to-price-21d-sma-99p" | "height-to-year-2011-90p-price-paid" | "height-to-lth-supply-in-loss-to-circulating-supply-ratio" | "height-to-up-to-4m-10p-price-paid" | "height-to-year-2020-65p-price-paid" | "height-to-highly-liquid-realized-profit" | "height-to-sth-realized-profit" | "height-to-market-price-to-up-to-1d-realized-price-ratio-99-5p" | "height-to-market-price-to-year-2022-realized-price-ratio-99-9p" | "height-to-market-price-to-price-1w-sma-ratio-0-1p" | "height-to-from-3y-to-5y-realized-price-99-9p" | "height-to-market-price-to-fish-realized-price-ratio-0-5p" | "height-to-sth-realized-loss" | "height-to-liquid-45p-price-paid" | "height-to-up-to-3m-net-unrealized-profit-and-loss-to-market-cap-ratio" | "height-to-sth-realized-price-99p" | "height-to-price-8d-sma-99-9p" | "height-to-year-2024-net-realized-profit-and-loss" | "height-to-up-to-15y-95p-price-paid" | "height-to-highly-liquid-unrealized-profit" | "height-to-year-2018-75p-price-paid" | "height-to-from-2y-to-3y-supply-in-loss" | "height-to-from-3m-to-6m-cumulative-realized-profit" | "height-to-realized-price-99p" | "height-to-from-1y-to-2y-cumulative-net-realized-profit-and-loss-1m-net-change" | "height-to-from-1y-95p-price-paid" | "height-to-from-4y-input-volume" | "height-to-from-1d-to-1w-value-created" | "height-to-market-price-to-shark-realized-price-ratio-0-5p" | "height-to-from-6m-to-1y-realized-price-99p" | "height-to-year-2022-cumulative-net-realized-profit-and-loss" | "height-to-from-6m-to-1y-net-unrealized-profit-and-loss" | "height-to-market-price-to-up-to-1d-realized-price-ratio" | "height-to-up-to-1d-realized-profit" | "height-to-year-2023-negative-realized-loss" | "height-to-p2pkh-45p-price-paid" | "height-to-year-2010-cumulative-realized-loss" | "height-to-sth-unrealized-loss" | "height-to-up-to-1m-realized-value" | "height-to-market-price-to-from-1w-to-1m-realized-price-ratio-0-1p" | "height-to-market-price-to-shark-realized-price-ratio" | "height-to-market-price-to-active-price-ratio-0-1p" | "height-to-year-2009-supply-in-loss-to-own-supply-ratio" | "height-to-from-6m-to-1y-halved-supply-to-circulating-supply-ratio" | "height-to-p2sh-realized-price-99-5p" | "height-to-year-2016-net-unrealized-profit-and-loss-to-market-cap-ratio" | "height-to-up-to-7y-realized-cap" | "height-to-true-market-mean-0-5p" | "height-to-year-2012-unrealized-loss" | "height-to-from-1y-to-2y-supply-in-loss" | "height-to-year-2018-value-created" | "height-to-from-15y-90p-price-paid" | "height-to-year-2016-realized-price-1p" | "height-to-from-1y-to-2y-value-created" | "height-to-market-price-to-from-2y-to-3y-realized-price-ratio-1y-sma-momentum-oscillator" | "height-to-market-price-to-year-2023-realized-price-ratio-0-5p" | "height-to-market-price-to-liquid-realized-price-ratio-1y-sma" | "height-to-negative-unrealized-loss" | "height-to-market-price-to-year-2024-realized-price-ratio-0-5p" | "height-to-up-to-1y-net-realized-profit-and-loss" | "height-to-up-to-6m-75p-price-paid" | "height-to-up-to-2y-realized-price-99-5p" | "height-to-up-to-5y-75p-price-paid" | "height-to-up-to-1w-input-volume" | "height-to-from-1m-to-3m-supply-in-loss-to-own-supply-ratio" | "height-to-from-1d-to-1w-net-realized-profit-and-loss-to-market-cap-ratio" | "height-to-from-2y-realized-loss" | "height-to-highly-liquid-unrealized-loss" | "height-to-market-price-to-year-2022-realized-price-ratio-99p" | "height-to-lth-realized-cap" | "height-to-from-1y-to-2y-supply" | "height-to-market-price-to-price-2y-sma-ratio-0-5p" | "height-to-market-price-to-up-to-15y-realized-price-ratio" | "height-to-from-1w-to-1m-unrealized-loss" | "height-to-plankton-20p-price-paid" | "height-to-up-to-5m-input-count" | "height-to-market-price-to-liquid-realized-price-ratio-0-1p" | "height-to-market-price-to-from-10y-to-15y-realized-price-ratio-0-5p" | "height-to-market-price-to-shark-realized-price-ratio-1w-sma" | "height-to-p2pkh-supply-in-profit" | "height-to-p2pkh-realized-cap" | "height-to-fish-realized-price" | "height-to-from-2y-to-3y-spent-output-profit-ratio" | "height-to-p2pkh-realized-price-99-5p" | "height-to-p2tr-realized-price-0-1p" | "height-to-lth-40p-price-paid" | "height-to-up-to-6m-05p-price-paid" | "height-to-year-2009-25p-price-paid" | "height-to-year-2020-cumulative-realized-profit" | "height-to-from-1y-55p-price-paid" | "height-to-price-89d-sma-0-5p" | "height-to-from-5y-to-7y-realized-price-0-5p" | "height-to-market-price-to-lth-realized-price-ratio-1p" | "height-to-humpback-cumulative-net-realized-profit-and-loss" | "height-to-up-to-1w-input-count" | "height-to-year-2024-realized-price-0-1p" | "height-to-market-price-to-year-2015-realized-price-ratio-99-5p" | "height-to-95p-price-paid" | "height-to-p2pkh-75p-price-paid" | "height-to-market-price-to-price-13d-sma-ratio-1m-sma" | "height-to-from-5y-to-7y-80p-price-paid" | "height-to-market-price-to-from-4y-realized-price-ratio-1p" | "height-to-up-to-10y-95p-price-paid" | "height-to-up-to-5m-net-realized-profit-and-loss-to-market-cap-ratio" | "height-to-crab-realized-price" | "height-to-from-5y-to-7y-60p-price-paid" | "height-to-50" | "height-to-plankton-05p-price-paid" | "height-to-up-to-10y-05p-price-paid" | "height-to-up-to-1d-net-unrealized-profit-and-loss" | "height-to-from-10y-to-15y-realized-price-1p" | "height-to-market-price-to-up-to-6m-realized-price-ratio-0-1p" | "height-to-price-1y-sma-0-5p" | "height-to-transaction-volume" | "height-to-year-2017-median-price-paid" | "height-to-market-price-to-from-5y-to-7y-realized-price-ratio-1m-sma" | "height-to-market-price-to-from-7y-to-10y-realized-price-ratio-1w-sma" | "height-to-from-6m-to-1y-supply-in-profit-to-own-supply-ratio" | "height-to-from-4y-realized-price-0-1p" | "height-to-from-10y-supply-to-circulating-supply-ratio" | "height-to-up-to-10y-realized-value" | "height-to-up-to-6m-negative-realized-loss" | "height-to-year-2012-20p-price-paid" | "height-to-year-2014-55p-price-paid" | "height-to-from-1d-to-1w-realized-price-99-5p" | "height-to-market-price-to-price-200w-sma-ratio-0-5p" | "height-to-year-2018-60p-price-paid" | "height-to-from-3y-to-5y-cumulative-realized-loss" | "height-to-market-price-to-price-1w-sma-ratio-0-5p" | "height-to-year-2021-negative-realized-loss" | "height-to-up-to-2y-value-destroyed" | "height-to-market-price-to-up-to-4m-realized-price-ratio-99p" | "height-to-up-to-6m-unrealized-loss" | "height-to-market-price-to-from-1w-to-1m-realized-price-ratio-99-9p" | "height-to-from-15y-realized-cap" | "height-to-up-to-1y-60p-price-paid" | "height-to-up-to-6m-halved-supply" | "height-to-market-price-to-from-10y-to-15y-realized-price-ratio-99-5p" | "height-to-year-2024-realized-price-99p" | "height-to-from-15y-net-realized-profit-and-loss-to-market-cap-ratio" | "height-to-p2tr-realized-profit" | "height-to-p2wpkh-realized-value" | "height-to-up-to-1w-halved-supply-to-circulating-supply-ratio" | "height-to-up-to-5y-value-created" | "height-to-from-2y-to-3y-net-realized-profit-and-loss-to-market-cap-ratio" | "height-to-from-6m-to-1y-25p-price-paid" | "height-to-p2pk-supply-in-profit-to-circulating-supply-ratio" | "height-to-up-to-6m-40p-price-paid" | "height-to-from-7y-to-10y-40p-price-paid" | "height-to-from-7y-to-10y-realized-price-99-9p" | "height-to-market-price-to-from-1m-to-3m-realized-price-ratio-1p" | "height-to-market-price-to-price-13d-sma-ratio-0-5p" | "height-to-fish-net-realized-profit-and-loss-to-market-cap-ratio" | "height-to-market-price-to-up-to-15y-realized-price-ratio-1y-sma-momentum-oscillator" | "height-to-market-price-to-from-3y-to-5y-realized-price-ratio-1m-sma" | "height-to-market-price-to-p2wpkh-realized-price-ratio" | "height-to-from-10y-unrealized-profit" | "height-to-from-3y-to-5y-supply-in-profit-to-circulating-supply-ratio" | "height-to-true-market-mean" | "height-to-year-2020-35p-price-paid" | "height-to-market-price-to-whale-realized-price-ratio-0-1p" | "height-to-up-to-7y-supply-in-loss-to-own-supply-ratio" | "height-to-up-to-5y-median-price-paid" | "height-to-cumulative-realized-loss" | "height-to-from-3m-to-6m-unrealized-loss" | "height-to-up-to-1y-realized-price-0-1p" | "height-to-market-price-to-price-144d-sma-ratio-0-1p" | "height-to-shark-60p-price-paid" | "height-to-up-to-7y-85p-price-paid" | "height-to-market-price-to-year-2017-realized-price-ratio-0-5p" | "height-to-plankton-supply-in-loss" | "height-to-market-price-to-year-2009-realized-price-ratio-99-5p" | "height-to-market-price-to-up-to-1m-realized-price-ratio-1y-sma-momentum-oscillator" | "height-to-market-price-to-year-2013-realized-price-ratio-1p" | "height-to-year-2010-realized-profit" | "height-to-market-price-to-from-15y-realized-price-ratio-1m-sma" | "height-to-up-to-15y-negative-unrealized-loss" | "height-to-year-2017-supply-in-profit-to-circulating-supply-ratio" | "height-to-year-2024-55p-price-paid" | "height-to-market-price-to-from-6m-to-1y-realized-price-ratio-1w-sma" | "height-to-market-price-to-year-2021-realized-price-ratio-99-5p" | "height-to-market-price-to-year-2019-realized-price-ratio-0-1p" | "height-to-from-15y-cumulative-realized-profit" | "height-to-market-price-to-year-2021-realized-price-ratio-1p" | "height-to-year-2009-realized-price-99-5p" | "height-to-market-price-to-year-2016-realized-price-ratio-1p" | "height-to-market-price-to-from-1m-to-3m-realized-price-ratio-1y-sma" | "height-to-up-to-15y-realized-cap-1m-net-change" | "height-to-market-price-to-p2wpkh-realized-price-ratio-99p" | "height-to-up-to-1w-net-unrealized-profit-and-loss-to-market-cap-ratio" | "height-to-year-2011-70p-price-paid" | "height-to-market-price-to-plankton-realized-price-ratio-1y-sma-momentum-oscillator" | "height-to-year-2020-cumulative-realized-loss" | "height-to-up-to-4m-value-created" | "height-to-year-2017-realized-cap" | "height-to-year-2018-realized-price-0-5p" | "height-to-annualized-transaction-volume-in-dollars" | "height-to-market-price-to-crab-realized-price-ratio-1m-sma" | "height-to-from-1w-to-1m-realized-value" | "height-to-year-2023-median-price-paid" | "height-to-from-6m-to-1y-supply-in-loss" | "height-to-from-6m-to-1y-realized-price-99-5p" | "height-to-market-price-to-up-to-4m-realized-price-ratio-0-5p" | "height-to-market-price-to-year-2024-realized-price-ratio-99p" | "height-to-from-1m-to-3m-90p-price-paid" | "height-to-up-to-1y-value-created" | "height-to-sth-utxo-count" | "height-to-shark-net-unrealized-profit-and-loss-to-market-cap-ratio" | "height-to-market-price-to-true-market-mean-ratio-0-1p" | "height-to-year-2011-value-created" | "height-to-up-to-2m-05p-price-paid" | "height-to-0" | "height-to-year-2022-supply-in-profit-to-own-supply-ratio" | "height-to-year-2010-cumulative-realized-profit" | "height-to-p2wpkh-realized-price" | "height-to-up-to-1w-supply" | "height-to-lth-90p-price-paid" | "height-to-shark-supply-in-loss-to-own-supply-ratio" | "height-to-up-to-5y-unrealized-loss" | "height-to-up-to-15y-net-realized-profit-and-loss-to-market-cap-ratio" | "height-to-vaulted-price-99-5p" | "height-to-year-2015-value-destroyed" | "height-to-p2wsh-65p-price-paid" | "height-to-year-2016-cumulative-realized-loss" | "height-to-market-price-to-p2pk-realized-price-ratio-99-5p" | "height-to-market-price-to-year-2012-realized-price-ratio-1m-sma" | "height-to-up-to-6m-cumulative-realized-profit" | "height-to-market-price-to-megalodon-realized-price-ratio-1y-sma-momentum-oscillator" | "height-to-highly-liquid-05p-price-paid" | "height-to-market-price-to-price-200w-sma-ratio-99p" | "height-to-liquid-address-count" | "height-to-year-2018-supply-in-loss-to-circulating-supply-ratio" | "height-to-market-price-to-up-to-6m-realized-price-ratio-1m-sma" | "height-to-year-2020-input-count" | "height-to-market-price-to-highly-liquid-realized-price-ratio" | "height-to-market-price-to-price-1w-sma-ratio-99-5p" | "height-to-from-2y-to-3y-value-created" | "height-to-market-price-to-year-2018-realized-price-ratio-0-1p" | "height-to-shark-cumulative-net-realized-profit-and-loss-1m-net-change" | "height-to-sth-unrealized-profit" | "height-to-up-to-3m-55p-price-paid" | "height-to-up-to-5m-realized-loss" | "height-to-year-2017-15p-price-paid" | "height-to-p2tr-80p-price-paid" | "height-to-up-to-1y-95p-price-paid" | "height-to-up-to-2y-supply" | "height-to-market-price-to-up-to-3m-realized-price-ratio-99p" | "height-to-highly-liquid-cumulative-realized-loss" | "height-to-from-1d-to-1w-65p-price-paid" | "height-to-market-price-to-price-8d-sma-ratio-0-1p" | "height-to-year-2021-realized-price-99-5p" | "height-to-from-1y-to-2y-net-unrealized-profit-and-loss" | "height-to-from-1w-to-1m-supply-in-loss-to-own-supply-ratio" | "height-to-p2tr-supply" | "height-to-year-2015-supply-in-profit" | "height-to-market-price-to-from-5y-to-7y-realized-price-ratio-1p" | "height-to-year-2014-realized-loss" | "height-to-year-2014-realized-price-99p" | "height-to-year-2017-realized-price-99-5p" | "height-to-p2wsh-supply-in-loss-to-circulating-supply-ratio" | "height-to-year-2020-net-unrealized-profit-and-loss-to-market-cap-ratio" | "height-to-market-price-to-from-1w-to-1m-realized-price-ratio-1m-sma" | "height-to-from-10y-to-15y-55p-price-paid" | "height-to-market-price-to-up-to-7y-realized-price-ratio-1m-sma" | "height-to-market-price-to-up-to-3y-realized-price-ratio-1w-sma" | "height-to-from-4y-realized-price-1p" | "height-to-year-2009-utxo-count" | "height-to-from-10y-supply-in-loss-to-circulating-supply-ratio" | "height-to-up-to-3y-70p-price-paid" | "height-to-year-2016-supply-in-loss-to-circulating-supply-ratio" | "height-to-market-price-to-from-3m-to-6m-realized-price-ratio-1y-sma" | "height-to-year-2017-cumulative-net-realized-profit-and-loss-1m-net-change" | "height-to-up-to-1w-median-price-paid" | "height-to-sth-25p-price-paid" | "height-to-up-to-4m-input-count" | "height-to-year-2018-cumulative-net-realized-profit-and-loss" | "height-to-highly-liquid-address-count" | "height-to-from-1d-to-1w-supply" | "height-to-year-2016-cumulative-net-realized-profit-and-loss-1m-net-change" | "height-to-year-2023-unrealized-profit" | "height-to-year-2024-realized-profit" | "height-to-year-2016-negative-realized-loss" | "height-to-from-1w-to-1m-supply-in-loss-to-circulating-supply-ratio" | "height-to-market-price-to-sth-realized-price-ratio-99p" | "height-to-p2wpkh-90p-price-paid" | "height-to-up-to-4m-halved-supply" | "height-to-market-price-to-up-to-2y-realized-price-ratio-1w-sma" | "height-to-crab-realized-cap" | "height-to-up-to-10y-realized-price-99-9p" | "height-to-up-to-2m-supply-to-circulating-supply-ratio" | "height-to-lth-realized-profit" | "height-to-year-2021-35p-price-paid" | "height-to-market-price-to-up-to-1d-realized-price-ratio-99p" | "height-to-year-2018-input-count" | "height-to-market-price-to-price-2y-sma-ratio" | "height-to-price-1m-sma-1p" | "height-to-up-to-1d-negative-realized-loss" | "height-to-market-price-to-up-to-2m-realized-price-ratio-99-5p" | "height-to-up-to-15y-net-unrealized-profit-and-loss-to-market-cap-ratio" | "height-to-market-price-to-up-to-15y-realized-price-ratio-1y-sma" | "height-to-up-to-2m-input-count" | "height-to-highly-liquid-median-price-paid" | "height-to-from-2y-to-3y-realized-loss" | "height-to-from-1y-to-2y-halved-supply" | "height-to-market-price-to-lth-realized-price-ratio-99p" | "height-to-up-to-1y-realized-price-99-9p" | "height-to-up-to-3m-median-price-paid" | "height-to-market-price-to-from-10y-realized-price-ratio-0-5p" | "height-to-up-to-2y-60p-price-paid" | "height-to-up-to-3y-80p-price-paid" | "height-to-up-to-5m-unrealized-profit" | "height-to-transaction-count-1w-sma" | "height-to-p2pkh-85p-price-paid" | "height-to-price-2y-sma-99p" | "height-to-up-to-1y-supply" | "height-to-from-2y-85p-price-paid" | "height-to-year-2023-supply" | "height-to-market-price-to-up-to-6m-realized-price-ratio-1p" | "height-to-from-15y-cumulative-net-realized-profit-and-loss-1m-net-change" | "height-to-crab-35p-price-paid" | "height-to-illiquid-value-created" | "height-to-from-10y-net-unrealized-profit-and-loss-to-market-cap-ratio" | "height-to-market-price-to-from-1m-to-3m-realized-price-ratio-1y-sma-momentum-oscillator" | "height-to-market-price-to-humpback-realized-price-ratio-99-9p" | "height-to-market-price-to-plankton-realized-price-ratio-99-9p" | "height-to-market-price-to-year-2021-realized-price-ratio-0-1p" | "height-to-liquid-supply-to-circulating-supply-ratio" | "height-to-p2wsh-halved-supply" | "height-to-from-10y-15p-price-paid" | "height-to-market-price-to-illiquid-realized-price-ratio-1m-sma" | "height-to-market-price-to-up-to-1y-realized-price-ratio" | "height-to-year-2014-net-realized-profit-and-loss-to-market-cap-ratio" | "height-to-p2pk-median-price-paid" | "height-to-up-to-1d-45p-price-paid" | "height-to-up-to-3m-05p-price-paid" | "height-to-market-price-to-year-2020-realized-price-ratio" | "height-to-shrimp-supply-in-loss" | "height-to-market-price-to-price-1m-sma-ratio" | "height-to-up-to-3m-90p-price-paid" | "height-to-shrimp-cumulative-net-realized-profit-and-loss-1m-net-change" | "height-to-year-2016-negative-unrealized-loss" | "height-to-year-2014-85p-price-paid" | "height-to-market-price-to-from-5y-to-7y-realized-price-ratio-99-9p" | "height-to-up-to-2m-15p-price-paid" | "height-to-p2pkh-90p-price-paid" | "height-to-year-2011-supply" | "height-to-up-to-1m-net-realized-profit-and-loss" | "height-to-up-to-1m-cumulative-net-realized-profit-and-loss-1m-net-change" | "height-to-up-to-1y-net-unrealized-profit-and-loss-to-market-cap-ratio" | "height-to-market-price-to-lth-realized-price-ratio-1m-sma" | "height-to-lth-cumulative-realized-loss" | "height-to-market-price-to-from-1y-to-2y-realized-price-ratio-1p" | "height-to-crab-realized-profit" | "height-to-up-to-5m-60p-price-paid" | "height-to-market-price-to-whale-realized-price-ratio-1m-sma" | "height-to-up-to-2y-net-unrealized-profit-and-loss-to-market-cap-ratio" | "height-to-year-2023-supply-in-loss" | "height-to-from-10y-median-price-paid" | "height-to-year-2017-realized-price" | "height-to-year-2024-realized-price-1p" | "height-to-liquid-value-destroyed" | "height-to-market-price-to-price-1y-sma-ratio-99-9p" | "height-to-market-price-to-up-to-7y-realized-price-ratio-1y-sma-momentum-oscillator" | "height-to-from-1d-to-1w-unrealized-profit" | "height-to-up-to-3y-supply-in-loss-to-own-supply-ratio" | "height-to-thermo-cap" | "height-to-highly-liquid-95p-price-paid" | "height-to-negative-realized-loss" | "height-to-up-to-3y-cumulative-realized-loss" | "height-to-up-to-10y-40p-price-paid" | "height-to-humpback-negative-unrealized-loss" | "height-to-market-price-to-up-to-6m-realized-price-ratio-1y-sma-momentum-oscillator" | "height-to-year-2021-20p-price-paid" | "height-to-from-15y-cumulative-realized-loss" | "height-to-market-price-to-realized-price-ratio-1w-sma" | "height-to-market-price-to-cointime-price-ratio" | "height-to-market-price-to-up-to-10y-realized-price-ratio-99-5p" | "height-to-market-price-to-plankton-realized-price-ratio-1y-sma" | "height-to-from-1m-to-3m-input-count" | "height-to-p2pkh-cumulative-realized-loss" | "height-to-up-to-10y-realized-price-0-5p" | "height-to-year-2010-unrealized-profit" | "height-to-up-to-2y-halved-supply-to-circulating-supply-ratio" | "height-to-year-2014-median-price-paid" | "height-to-liquid-negative-unrealized-loss" | "height-to-from-1y-negative-unrealized-loss" | "height-to-year-2024-supply-to-circulating-supply-ratio" | "height-to-up-to-15y-cumulative-realized-loss" | "height-to-up-to-5m-net-unrealized-profit-and-loss-to-market-cap-ratio" | "height-to-crab-utxo-count" | "height-to-up-to-5m-supply-in-profit-to-circulating-supply-ratio" | "height-to-market-price-to-sth-realized-price-ratio-99-5p" | "height-to-year-2012-60p-price-paid" | "height-to-year-2022-realized-cap-1m-net-change" | "height-to-up-to-3y-supply-in-profit-to-circulating-supply-ratio" | "height-to-market-price-to-from-2y-to-3y-realized-price-ratio-1y-sma" | "height-to-humpback-cumulative-net-realized-profit-and-loss-1m-net-change" | "height-to-market-price-to-year-2010-realized-price-ratio" | "height-to-up-to-1y-cumulative-net-realized-profit-and-loss" | "height-to-year-2015-95p-price-paid" | "height-to-year-2019-realized-price" | "height-to-block-weight" | "height-to-up-to-10y-cumulative-net-realized-profit-and-loss" | "height-to-p2pk-95p-price-paid" | "height-to-from-1m-to-3m-70p-price-paid" | "height-to-megalodon-address-count" | "height-to-from-5y-to-7y-supply-to-circulating-supply-ratio" | "height-to-from-6m-to-1y-realized-cap" | "height-to-illiquid-65p-price-paid" | "height-to-market-price-to-up-to-1y-realized-price-ratio-0-1p" | "height-to-up-to-1y-10p-price-paid" | "height-to-up-to-3y-realized-price" | "height-to-up-to-5y-input-volume" | "height-to-lth-net-realized-profit-and-loss-to-market-cap-ratio" | "height-to-from-1d-to-1w-70p-price-paid" | "height-to-market-price-to-price-13d-sma-ratio-99p" | "height-to-lth-value-destroyed" | "height-to-highly-liquid-65p-price-paid" | "height-to-year-2024-85p-price-paid" | "height-to-sth-net-unrealized-profit-and-loss-to-market-cap-ratio" | "height-to-from-3y-to-5y-45p-price-paid" | "height-to-up-to-4m-realized-cap" | "height-to-year-2016-realized-loss" | "height-to-from-1w-to-1m-55p-price-paid" | "height-to-year-2014-supply-in-loss-to-circulating-supply-ratio" | "height-to-market-price-to-realized-price-ratio-0-5p" | "height-to-up-to-5y-realized-cap" | "height-to-highly-liquid-value-created" | "height-to-p2wsh-realized-price" | "height-to-from-1d-to-1w-cumulative-net-realized-profit-and-loss" | "height-to-up-to-15y-85p-price-paid" | "height-to-fish-45p-price-paid" | "height-to-illiquid-realized-price-0-5p" | "height-to-up-to-2y-cumulative-net-realized-profit-and-loss-1m-net-change" | "height-to-from-4y-05p-price-paid" | "height-to-from-10y-to-15y-45p-price-paid" | "height-to-from-1d-to-1w-realized-value" | "height-to-market-price-to-year-2012-realized-price-ratio-1y-sma" | "height-to-p2pk-value-destroyed" | "height-to-up-to-7y-realized-cap-1m-net-change" | "height-to-p2pk-realized-cap" | "height-to-shrimp-75p-price-paid" | "height-to-year-2022-net-unrealized-profit-and-loss-to-market-cap-ratio" | "height-to-lth-45p-price-paid" | "height-to-humpback-cumulative-realized-loss" | "height-to-year-2009-net-unrealized-profit-and-loss-to-market-cap-ratio" | "height-to-from-3m-to-6m-30p-price-paid" | "height-to-from-7y-to-10y-supply-in-profit-to-circulating-supply-ratio" | "height-to-up-to-1d-55p-price-paid" | "height-to-whale-halved-supply-to-circulating-supply-ratio" | "height-to-p2tr-spent-output-profit-ratio" | "height-to-up-to-6m-supply" | "height-to-price-55d-sma-99p" | "height-to-megalodon-realized-price-0-1p" | "height-to-up-to-3m-realized-price" | "height-to-up-to-15y-15p-price-paid" | "height-to-up-to-2y-negative-realized-loss" | "height-to-market-price-to-price-21d-sma-ratio" | "height-to-p2tr-supply-in-profit-to-circulating-supply-ratio" | "height-to-p2sh-05p-price-paid" | "height-to-market-price-to-year-2020-realized-price-ratio-99p" | "height-to-from-2y-cumulative-net-realized-profit-and-loss-1m-net-change" | "height-to-realized-loss" | "height-to-up-to-3y-10p-price-paid" | "height-to-whale-10p-price-paid" | "height-to-up-to-15y-realized-loss" | "height-to-up-to-1m-spent-output-profit-ratio" | "height-to-up-to-1m-supply-in-profit-to-own-supply-ratio" | "height-to-year-2017-negative-realized-loss" | "height-to-up-to-3m-value-destroyed" | "height-to-market-price-to-cointime-price-ratio-1w-sma" | "height-to-from-1w-to-1m-70p-price-paid" | "height-to-year-2019-realized-cap-1m-net-change" | "height-to-year-2017-40p-price-paid" | "height-to-p2sh-45p-price-paid" | "height-to-from-10y-to-15y-85p-price-paid" | "height-to-from-3y-to-5y-net-realized-profit-and-loss" | "height-to-cumulative-net-realized-profit-and-loss" | "height-to-year-2015-supply-in-loss-to-circulating-supply-ratio" | "height-to-total-cointime-value-stored" | "height-to-up-to-1d-realized-price-99-9p" | "height-to-up-to-1y-30p-price-paid" | "height-to-supply-in-profit-to-own-supply-ratio" | "height-to-from-3y-to-5y-15p-price-paid" | "height-to-plankton-realized-cap-1m-net-change" | "height-to-up-to-1d-net-realized-profit-and-loss-to-market-cap-ratio" | "height-to-realized-profit" | "height-to-up-to-1w-realized-price-99-5p" | "height-to-up-to-5m-90p-price-paid" | "height-to-year-2021-realized-profit" | "height-to-year-2018-35p-price-paid" | "height-to-year-2020-80p-price-paid" | "height-to-from-10y-70p-price-paid" | "height-to-illiquid-realized-value" | "height-to-market-price-to-up-to-2m-realized-price-ratio" | "height-to-p2pk-realized-price-0-1p" | "height-to-shrimp-cumulative-realized-loss" | "height-to-year-2022-70p-price-paid" | "height-to-p2tr-realized-cap" | "height-to-from-10y-cumulative-net-realized-profit-and-loss-1m-net-change" | "height-to-shrimp-80p-price-paid" | "height-to-up-to-3m-supply-in-profit-to-own-supply-ratio" | "height-to-up-to-15y-unrealized-loss" | "height-to-shrimp-supply-to-circulating-supply-ratio" | "height-to-from-2y-value-destroyed" | "height-to-from-2y-halved-supply-to-circulating-supply-ratio" | "height-to-market-price-to-price-1m-sma-ratio-99p" | "height-to-from-1y-to-2y-80p-price-paid" | "height-to-up-to-2y-realized-loss" | "height-to-shark-input-volume" | "height-to-up-to-1y-supply-in-loss-to-own-supply-ratio" | "height-to-up-to-1y-supply-in-loss" | "height-to-up-to-6m-realized-price-99p" | "height-to-shrimp-negative-unrealized-loss" | "height-to-whale-input-volume" | "height-to-market-price-to-year-2019-realized-price-ratio-0-5p" | "height-to-megalodon-median-price-paid" | "height-to-year-2010-supply-to-circulating-supply-ratio" | "height-to-market-price-to-year-2017-realized-price-ratio-1p" | "height-to-price-1m-sma-0-1p" | "height-to-up-to-1m-70p-price-paid" | "height-to-market-price-to-from-6m-to-1y-realized-price-ratio-99p" | "height-to-sth-value-created" | "height-to-up-to-5y-cumulative-realized-profit" | "height-to-year-2024-supply-in-profit" | "height-to-up-to-1d-net-realized-profit-and-loss" | "height-to-year-2011-negative-realized-loss" | "height-to-p2pkh-realized-price-99p" | "height-to-p2wsh-utxo-count" | "height-to-from-3y-to-5y-utxo-count" | "height-to-illiquid-60p-price-paid" | "height-to-liquid-95p-price-paid" | "height-to-up-to-7y-90p-price-paid" | "height-to-market-price-to-sth-realized-price-ratio-1p" | "height-to-crab-realized-loss" | "height-to-from-1m-to-3m-net-realized-profit-and-loss" | "height-to-market-price-to-price-200w-sma-ratio-1p" | "height-to-up-to-2m-90p-price-paid" | "height-to-from-1d-to-1w-net-unrealized-profit-and-loss-to-market-cap-ratio" | "height-to-up-to-5m-value-created" | "height-to-up-to-10y-55p-price-paid" | "height-to-year-2011-55p-price-paid" | "height-to-p2tr-supply-to-circulating-supply-ratio" | "height-to-year-2016-net-unrealized-profit-and-loss" | "height-to-sth-90p-price-paid" | "height-to-from-1y-to-2y-90p-price-paid" | "height-to-from-10y-net-realized-profit-and-loss" | "height-to-from-1y-supply-in-loss-to-own-supply-ratio" | "height-to-from-3m-to-6m-median-price-paid" | "height-to-highly-liquid-spent-output-profit-ratio" | "height-to-market-price-to-from-10y-realized-price-ratio-1y-sma" | "height-to-market-price-to-price-8d-sma-ratio-1y-sma" | "height-to-market-price-to-vaulted-price-ratio-99p" | "height-to-market-price-to-vaulted-price-ratio-1y-sma" | "height-to-market-price-to-year-2010-realized-price-ratio-99p" | "height-to-market-price-to-p2pkh-realized-price-ratio-99p" | "height-to-market-price-to-fish-realized-price-ratio-99-5p" | "height-to-up-to-1y-supply-in-profit-to-circulating-supply-ratio" | "height-to-market-price-to-price-13d-sma-ratio-1p" | "height-to-up-to-1m-value-destroyed" | "height-to-date" | "height-to-whale-utxo-count" | "height-to-year-2013-negative-unrealized-loss" | "height-to-year-2016-realized-price-99-9p" | "height-to-year-2022-45p-price-paid" | "height-to-market-price-to-crab-realized-price-ratio-1p" | "height-to-year-2022-realized-loss" | "height-to-whale-realized-value" | "height-to-from-1w-to-1m-35p-price-paid" | "height-to-from-10y-cumulative-realized-profit" | "height-to-year-2013-utxo-count" | "height-to-up-to-7y-20p-price-paid" | "height-to-from-2y-to-3y-15p-price-paid" | "height-to-from-5y-to-7y-85p-price-paid" | "height-to-year-2013-realized-loss" | "height-to-from-3m-to-6m-realized-price-99p" | "height-to-market-price-to-p2wpkh-realized-price-ratio-1w-sma" | "height-to-from-4y-realized-loss" | "height-to-up-to-1d-spent-output-profit-ratio" | "height-to-whale-supply" | "height-to-megalodon-75p-price-paid" | "height-to-illiquid-unrealized-profit" | "height-to-from-1y-realized-price-99-5p" | "height-to-cumulative-coinblocks-stored" | "height-to-up-to-5y-realized-price-1p" | "height-to-market-price-to-price-21d-sma-ratio-0-1p" | "height-to-year-2023-supply-in-profit-to-own-supply-ratio" | "height-to-from-7y-to-10y-input-volume" | "height-to-market-price-to-from-15y-realized-price-ratio-0-5p" | "height-to-from-6m-to-1y-65p-price-paid" | "height-to-year-2017-unrealized-loss" | "height-to-up-to-2m-10p-price-paid" | "height-to-from-4y-unrealized-profit" | "height-to-producerness" | "height-to-fish-realized-cap" | "height-to-from-10y-to-15y-halved-supply" | "height-to-from-6m-to-1y-net-realized-profit-and-loss-to-market-cap-ratio" | "height-to-up-to-1y-median-price-paid" | "height-to-year-2009-cumulative-net-realized-profit-and-loss-1m-net-change" | "height-to-activity-to-vaultedness-ratio" | "height-to-up-to-1d-30p-price-paid" | "height-to-market-price-to-p2tr-realized-price-ratio-1m-sma" | "height-to-from-1y-to-2y-negative-realized-loss" | "height-to-year-2016-unrealized-loss" | "height-to-crab-realized-price-1p" | "height-to-fish-35p-price-paid" | "height-to-p2pk-realized-price-99p" | "height-to-year-2021-realized-price" | "height-to-from-1y-45p-price-paid" | "height-to-market-price-to-highly-liquid-realized-price-ratio-99-5p" | "height-to-market-price-to-price-13d-sma-ratio-1y-sma-momentum-oscillator" | "height-to-highly-liquid-utxo-count" | "height-to-sth-realized-price-1p" | "height-to-year-2018-realized-price-99-9p" | "height-to-plankton-realized-loss" | "height-to-market-price-to-from-2y-realized-price-ratio-1w-sma" | "height-to-illiquid-20p-price-paid" | "height-to-p2pk-supply-in-loss-to-circulating-supply-ratio" | "height-to-up-to-2m-realized-price" | "height-to-whale-net-unrealized-profit-and-loss-to-market-cap-ratio" | "height-to-from-10y-to-15y-60p-price-paid" | "height-to-from-1w-to-1m-80p-price-paid" | "height-to-price-8d-sma-99-5p" | "height-to-humpback-halved-supply-to-circulating-supply-ratio" | "height-to-market-price-to-from-1m-to-3m-realized-price-ratio-99-5p" | "height-to-market-price-to-liquid-realized-price-ratio" | "height-to-from-1d-to-1w-45p-price-paid" | "height-to-lth-halved-supply-to-circulating-supply-ratio" | "height-to-market-price-to-up-to-3m-realized-price-ratio-0-1p" | "height-to-market-price-to-up-to-7y-realized-price-ratio-1y-sma" | "height-to-up-to-6m-30p-price-paid" | "height-to-whale-unrealized-profit" | "height-to-year-2009-input-count" | "height-to-transactions-per-second-1w-sma" | "height-to-year-2014-supply-in-profit-to-circulating-supply-ratio" | "height-to-from-1y-90p-price-paid" | "height-to-market-price-to-price-89d-sma-ratio-1y-sma-momentum-oscillator" | "height-to-from-1d-to-1w-supply-in-profit-to-own-supply-ratio" | "height-to-from-1w-to-1m-net-realized-profit-and-loss-to-market-cap-ratio" | "height-to-p2tr-median-price-paid" | "height-to-from-4y-supply-in-loss-to-own-supply-ratio" | "height-to-price-1y-sma-1p" | "height-to-plankton-realized-price-0-5p" | "height-to-year-2015-supply-in-loss" | "height-to-fish-supply-in-loss-to-own-supply-ratio" | "height-to-year-2020-90p-price-paid" | "height-to-from-1y-to-2y-utxo-count" | "height-to-year-2016-spent-output-profit-ratio" | "height-to-up-to-2y-input-volume" | "height-to-liquid-realized-cap-1m-net-change" | "height-to-from-1m-to-3m-cumulative-net-realized-profit-and-loss-1m-net-change" | "height-to-up-to-7y-supply-in-profit-to-own-supply-ratio" | "height-to-fish-net-unrealized-profit-and-loss-to-market-cap-ratio" | "height-to-from-10y-35p-price-paid" | "height-to-market-price-to-p2wsh-realized-price-ratio" | "height-to-market-price-to-up-to-7y-realized-price-ratio-99-9p" | "height-to-market-price-to-year-2019-realized-price-ratio-99-9p" | "height-to-fish-supply-in-profit" | "height-to-shark-realized-price-99-5p" | "height-to-whale-05p-price-paid" | "height-to-liquid-spent-output-profit-ratio" | "height-to-up-to-1m-realized-price-99-9p" | "height-to-year-2009-70p-price-paid" | "height-to-year-2015-cumulative-realized-profit" | "height-to-year-2015-realized-loss" | "height-to-market-price-to-from-5y-to-7y-realized-price-ratio-99p" | "height-to-from-1w-to-1m-realized-price-99-9p" | "height-to-whale-halved-supply" | "height-to-year-2018-unrealized-profit" | "height-to-up-to-5m-supply-in-loss-to-own-supply-ratio" | "height-to-p2sh-net-realized-profit-and-loss" | "height-to-p2pk-65p-price-paid" | "height-to-up-to-2y-cumulative-net-realized-profit-and-loss" | "height-to-from-7y-to-10y-supply-in-loss" | "height-to-humpback-supply-in-loss-to-own-supply-ratio" | "height-to-illiquid-supply-in-loss-to-own-supply-ratio" | "height-to-from-2y-to-3y-65p-price-paid" | "height-to-megalodon-35p-price-paid" | "height-to-up-to-7y-utxo-count" | "height-to-year-2009-cumulative-net-realized-profit-and-loss" | "height-to-year-2018-25p-price-paid" | "height-to-shrimp-halved-supply-to-circulating-supply-ratio" | "height-to-up-to-1y-supply-to-circulating-supply-ratio" | "height-to-p2wsh-net-realized-profit-and-loss" | "height-to-year-2009-45p-price-paid" | "height-to-year-2023-30p-price-paid" | "height-to-market-price-to-from-2y-realized-price-ratio-0-5p" | "height-to-up-to-5m-negative-realized-loss" | "height-to-year-2022-net-realized-profit-and-loss-to-market-cap-ratio" | "height-to-market-price-to-year-2021-realized-price-ratio-99p" | "height-to-market-price-to-up-to-1d-realized-price-ratio-1p" | "height-to-year-2023-net-unrealized-profit-and-loss-to-market-cap-ratio" | "height-to-from-2y-to-3y-supply-in-profit-to-circulating-supply-ratio" | "height-to-year-2011-65p-price-paid" | "height-to-market-price-to-year-2011-realized-price-ratio-1y-sma" | "height-to-year-2013-net-unrealized-profit-and-loss" | "height-to-market-price-to-liquid-realized-price-ratio-99-9p" | "height-to-from-2y-realized-price-99p" | "height-to-up-to-7y-65p-price-paid" | "height-to-from-10y-to-15y-net-realized-profit-and-loss-to-market-cap-ratio" | "height-to-from-7y-to-10y-net-unrealized-profit-and-loss" | "height-to-year-2023-65p-price-paid" | "height-to-year-2009-75p-price-paid" | "height-to-p2wpkh-35p-price-paid" | "height-to-up-to-1w-70p-price-paid" | "height-to-from-2y-supply-in-profit-to-own-supply-ratio" | "height-to-shark-80p-price-paid" | "height-to-from-2y-to-3y-value-destroyed" | "height-to-from-2y-realized-price-0-5p" | "height-to-up-to-1d-realized-value" | "height-to-from-3m-to-6m-supply-in-profit" | "height-to-liquid-realized-value" | "height-to-up-to-6m-cumulative-realized-loss" | "height-to-up-to-7y-45p-price-paid" | "height-to-net-realized-profit-and-loss" | "height-to-humpback-65p-price-paid" | "height-to-lth-value-created" | "height-to-up-to-5m-cumulative-net-realized-profit-and-loss-1m-net-change" | "height-to-liquid-supply-in-profit" | "height-to-up-to-1w-realized-loss" | "height-to-p2pkh-55p-price-paid" | "height-to-up-to-1d-75p-price-paid" | "height-to-year-2018-negative-realized-loss" | "height-to-market-price-to-price-1m-sma-ratio-1y-sma" | "height-to-from-3y-to-5y-35p-price-paid" | "height-to-up-to-5m-cumulative-net-realized-profit-and-loss" | "height-to-year-2015-15p-price-paid" | "height-to-illiquid-70p-price-paid" | "height-to-shark-realized-cap" | "height-to-year-2013-40p-price-paid" | "height-to-year-2017-halved-supply-to-circulating-supply-ratio" | "height-to-market-price-to-year-2014-realized-price-ratio-99-9p" | "height-to-from-5y-to-7y-median-price-paid" | "height-to-market-price-to-from-1m-to-3m-realized-price-ratio-99p" | "height-to-market-price-to-year-2015-realized-price-ratio-99p" | "height-to-market-price-to-year-2022-realized-price-ratio-1w-sma" | "height-to-from-10y-realized-price-99-5p" | "height-to-market-price-to-price-144d-sma-ratio-1m-sma" | "height-to-liquid-supply-in-loss-to-own-supply-ratio" | "height-to-from-1m-to-3m-utxo-count" | "height-to-up-to-3y-utxo-count" | "height-to-market-price-to-from-7y-to-10y-realized-price-ratio" | "height-to-year-2013-15p-price-paid" | "height-to-year-2014-25p-price-paid" | "height-to-fish-input-count" | "height-to-market-price-to-year-2014-realized-price-ratio-0-1p" | "height-to-p2pkh-realized-cap-1m-net-change" | "height-to-year-2012-30p-price-paid" | "height-to-p2wpkh-supply" | "height-to-from-1d-to-1w-25p-price-paid" | "height-to-year-2021-45p-price-paid" | "height-to-market-price-to-crab-realized-price-ratio-0-1p" | "height-to-market-price-to-whale-realized-price-ratio-1y-sma" | "height-to-year-2022-cumulative-realized-loss" | "height-to-p2wsh-realized-profit" | "height-to-sth-cumulative-realized-loss" | "height-to-up-to-5y-80p-price-paid" | "height-to-year-2016-realized-price-0-1p" | "height-to-market-price-to-up-to-1w-realized-price-ratio-99-9p" | "height-to-from-1m-to-3m-25p-price-paid" | "height-to-p2tr-net-realized-profit-and-loss" | "height-to-year-2012-05p-price-paid" | "height-to-year-2019-75p-price-paid" | "height-to-lth-net-realized-profit-and-loss" | "height-to-from-4y-negative-unrealized-loss" | "height-to-shrimp-90p-price-paid" | "height-to-from-7y-to-10y-80p-price-paid" | "height-to-up-to-2m-realized-price-0-5p" | "height-to-market-price-to-megalodon-realized-price-ratio-0-1p" | "height-to-market-price-to-up-to-1d-realized-price-ratio-1y-sma-momentum-oscillator" | "height-to-up-to-4m-realized-price-99-5p" | "height-to-megalodon-value-created" | "height-to-from-10y-net-unrealized-profit-and-loss" | "height-to-year-2018-realized-cap" | "height-to-from-3m-to-6m-realized-price-1p" | "height-to-p2tr-55p-price-paid" | "height-to-year-2017-90p-price-paid" | "height-to-from-7y-to-10y-realized-price-0-5p" | "height-to-up-to-3y-halved-supply-to-circulating-supply-ratio" | "height-to-from-2y-to-3y-85p-price-paid" | "height-to-sth-halved-supply" | "height-to-up-to-2y-70p-price-paid" | "height-to-up-to-6m-cumulative-net-realized-profit-and-loss-1m-net-change" | "height-to-year-2010-supply-in-loss-to-circulating-supply-ratio" | "height-to-year-2015-halved-supply" | "height-to-year-2020-net-unrealized-profit-and-loss" | "height-to-highly-liquid-supply-in-loss-to-circulating-supply-ratio" | "height-to-market-price-to-from-10y-to-15y-realized-price-ratio-1y-sma-momentum-oscillator" | "height-to-year-2021-unrealized-loss" | "height-to-market-price-to-lth-realized-price-ratio-1y-sma" | "height-to-megalodon-halved-supply-to-circulating-supply-ratio" | "height-to-highly-liquid-35p-price-paid" | "height-to-market-price-to-year-2024-realized-price-ratio" | "height-to-year-2010-input-count" | "height-to-price-21d-sma-99-9p" | "height-to-market-price-to-up-to-10y-realized-price-ratio-1y-sma" | "height-to-from-15y-net-unrealized-profit-and-loss" | "height-to-from-1d-to-1w-cumulative-realized-profit" | "height-to-up-to-2y-supply-in-profit-to-own-supply-ratio" | "height-to-p2wpkh-10p-price-paid" | "height-to-from-2y-to-3y-realized-price-99-9p" | "height-to-lth-realized-price-0-1p" | "height-to-p2pk-20p-price-paid" | "height-to-year-2023-realized-price-0-5p" | "height-to-megalodon-25p-price-paid" | "height-to-market-price-to-price-34d-sma-ratio-1w-sma" | "height-to-up-to-3y-realized-price-99-5p" | "height-to-year-2020-negative-realized-loss" | "height-to-up-to-3y-supply" | "height-to-year-2023-70p-price-paid" | "height-to-year-2010-40p-price-paid" | "height-to-fish-value-destroyed" | "height-to-from-3m-to-6m-65p-price-paid" | "height-to-up-to-2y-15p-price-paid" | "height-to-year-2020-45p-price-paid" | "height-to-liquid-median-price-paid" | "height-to-up-to-15y-realized-price-1p" | "height-to-market-price-to-from-1m-to-3m-realized-price-ratio-1m-sma" | "height-to-market-price-to-up-to-2y-realized-price-ratio-99-5p" | "height-to-up-to-4m-supply-in-loss" | "height-to-from-10y-input-volume" | "height-to-year-2021-cumulative-net-realized-profit-and-loss" | "height-to-year-2017-cumulative-realized-loss" | "height-to-year-2021-70p-price-paid" | "height-to-from-1y-80p-price-paid" | "height-to-lth-realized-price-1p" | "height-to-megalodon-supply-in-loss-to-own-supply-ratio" | "height-to-year-2014-supply" | "height-to-p2wsh-supply-to-circulating-supply-ratio" | "height-to-up-to-1d-supply-to-circulating-supply-ratio" | "height-to-up-to-2y-unrealized-profit" | "height-to-from-4y-supply" | "height-to-up-to-7y-negative-unrealized-loss" | "height-to-year-2019-cumulative-realized-loss" | "height-to-up-to-3m-realized-cap" | "height-to-year-2022-supply-in-loss" | "height-to-vaulted-price-0-1p" | "height-to-plankton-30p-price-paid" | "height-to-from-2y-unrealized-loss" | "height-to-market-price-to-up-to-3y-realized-price-ratio-1y-sma" | "height-to-05p-price-paid" | "height-to-up-to-1m-value-created" | "height-to-market-price-to-illiquid-realized-price-ratio-0-1p" | "height-to-market-price-to-year-2014-realized-price-ratio-99-5p" | "height-to-market-price-to-price-55d-sma-ratio-1m-sma" | "height-to-from-15y-60p-price-paid" | "height-to-up-to-2y-realized-price-0-5p" | "height-to-market-price-to-lth-realized-price-ratio-1y-sma-momentum-oscillator" | "height-to-crab-unrealized-loss" | "height-to-market-price-to-vaulted-price-ratio-1m-sma" | "height-to-from-3m-to-6m-negative-realized-loss" | "height-to-up-to-3m-10p-price-paid" | "height-to-highly-liquid-halved-supply-to-circulating-supply-ratio" | "height-to-sth-realized-price-0-5p" | "height-to-up-to-3m-95p-price-paid" | "height-to-from-2y-negative-unrealized-loss" | "height-to-illiquid-net-unrealized-profit-and-loss-to-market-cap-ratio" | "height-to-year-2024-supply-in-profit-to-circulating-supply-ratio" | "height-to-shark-15p-price-paid" | "height-to-cumulative-fees-in-dollars" | "height-to-from-1w-to-1m-15p-price-paid" | "height-to-up-to-15y-net-realized-profit-and-loss" | "height-to-up-to-1m-95p-price-paid" | "height-to-year-2015-realized-price-1p" | "height-to-p2wsh-cumulative-net-realized-profit-and-loss-1m-net-change" | "height-to-up-to-3y-85p-price-paid" | "height-to-year-2013-65p-price-paid" | "height-to-sth-supply" | "height-to-net-realized-profit-and-loss-to-market-cap-ratio" | "height-to-from-1w-to-1m-40p-price-paid" | "height-to-plankton-supply-in-loss-to-own-supply-ratio" | "height-to-market-price-to-up-to-1w-realized-price-ratio-1w-sma" | "height-to-up-to-5y-10p-price-paid" | "height-to-from-10y-to-15y-realized-cap" | "height-to-from-1m-to-3m-85p-price-paid" | "height-to-from-3y-to-5y-realized-profit" | "height-to-year-2012-supply" | "height-to-from-4y-25p-price-paid" | "height-to-p2sh-30p-price-paid" | "height-to-from-5y-to-7y-value-destroyed" | "height-to-shark-net-realized-profit-and-loss-to-market-cap-ratio" | "height-to-year-2019-realized-cap" | "height-to-from-1m-to-3m-realized-price-0-1p" | "height-to-90p-price-paid" | "height-to-from-2y-35p-price-paid" | "height-to-market-price-to-price-1m-sma-ratio-1y-sma-momentum-oscillator" | "height-to-up-to-2m-halved-supply" | "height-to-market-price-to-price-144d-sma-ratio-1y-sma" | "height-to-market-price-to-price-4y-sma-ratio-0-1p" | "height-to-up-to-1d-15p-price-paid" | "height-to-total-cointime-value-destroyed" | "height-to-p2pkh-median-price-paid" | "height-to-year-2016-utxo-count" | "height-to-humpback-supply-in-profit" | "height-to-up-to-7y-realized-price-99-5p" | "height-to-up-to-15y-utxo-count" | "height-to-crab-supply-in-profit" | "height-to-from-1m-to-3m-realized-price-99-9p" | "height-to-whale-55p-price-paid" | "height-to-market-price-to-year-2012-realized-price-ratio-1y-sma-momentum-oscillator" | "height-to-from-1y-to-2y-15p-price-paid" | "height-to-year-2021-value-created" | "height-to-liquid-realized-price-0-1p" | "height-to-from-2y-to-3y-cumulative-realized-loss" | "height-to-market-price-to-price-34d-sma-ratio-1p" | "height-to-from-1y-to-2y-realized-cap-1m-net-change" | "height-to-from-3y-to-5y-30p-price-paid" | "height-to-up-to-5y-realized-price-0-1p" | "height-to-up-to-7y-supply-in-profit" | "height-to-year-2012-median-price-paid" | "height-to-illiquid-90p-price-paid" | "height-to-up-to-7y-30p-price-paid" | "height-to-up-to-2m-supply-in-loss-to-own-supply-ratio" | "height-to-vaulted-supply-3m-net-change" | "height-to-market-price-to-shrimp-realized-price-ratio" | "height-to-from-5y-to-7y-cumulative-realized-loss" | "height-to-from-6m-to-1y-supply-in-profit" | "height-to-p2tr-input-volume" | "height-to-from-15y-20p-price-paid" | "height-to-p2tr-realized-loss" | "height-to-p2wpkh-25p-price-paid" | "height-to-price-200w-sma-99-9p" | "height-to-up-to-2y-value-created" | "height-to-fish-realized-price-99-9p" | "height-to-shrimp-60p-price-paid" | "height-to-year-2011-input-volume" | "height-to-shark-negative-realized-loss" | "height-to-p2wsh-supply-in-profit-to-own-supply-ratio" | "height-to-up-to-1w-cumulative-realized-profit" | "height-to-year-2010-35p-price-paid" | "height-to-year-2020-95p-price-paid" | "height-to-crab-60p-price-paid" | "height-to-from-1y-cumulative-realized-loss" | "height-to-from-1y-to-2y-60p-price-paid" | "height-to-from-1d-to-1w-realized-price-99-9p" | "height-to-up-to-1w-realized-price-0-1p" | "height-to-market-price-to-price-13d-sma-ratio-1w-sma" | "height-to-up-to-5m-realized-value" | "height-to-up-to-1y-cumulative-net-realized-profit-and-loss-1m-net-change" | "height-to-up-to-5m-value-destroyed" | "height-to-year-2019-supply-in-profit-to-own-supply-ratio" | "height-to-year-2009-30p-price-paid" | "height-to-from-2y-to-3y-40p-price-paid" | "height-to-from-3m-to-6m-10p-price-paid" | "height-to-year-2011-net-unrealized-profit-and-loss-to-market-cap-ratio" | "height-to-market-price-to-active-price-ratio-1y-sma-momentum-oscillator" | "height-to-market-price-to-whale-realized-price-ratio-0-5p" | "height-to-market-price-to-from-1y-to-2y-realized-price-ratio-1y-sma-momentum-oscillator" | "height-to-p2pkh-supply-in-profit-to-circulating-supply-ratio" | "height-to-up-to-2y-realized-price-99-9p" | "height-to-p2wsh-address-count" | "height-to-market-price-to-year-2018-realized-price-ratio-99p" | "height-to-shark-55p-price-paid" | "height-to-from-2y-to-3y-utxo-count" | "height-to-from-5y-to-7y-halved-supply" | "height-to-year-2010-utxo-count" | "height-to-megalodon-realized-price-1p" | "height-to-from-1w-to-1m-net-unrealized-profit-and-loss" | "height-to-plankton-input-volume" | "height-to-from-1w-to-1m-cumulative-net-realized-profit-and-loss-1m-net-change" | "height-to-from-1y-to-2y-95p-price-paid" | "height-to-up-to-10y-supply-in-profit" | "height-to-market-price-to-from-6m-to-1y-realized-price-ratio-0-1p" | "height-to-crab-value-created" | "height-to-market-price-to-up-to-5y-realized-price-ratio-1m-sma" | "height-to-up-to-15y-realized-price-99-9p" | "height-to-market-price-to-p2wsh-realized-price-ratio-1y-sma-momentum-oscillator" | "height-to-megalodon-net-realized-profit-and-loss-to-market-cap-ratio" | "height-to-from-2y-to-3y-realized-profit" | "height-to-from-1y-to-2y-realized-profit" | "height-to-market-price-to-price-200w-sma-ratio-1w-sma" | "height-to-up-to-10y-realized-price-0-1p" | "height-to-up-to-1m-40p-price-paid" | "height-to-year-2019-10p-price-paid" | "height-to-from-10y-supply" | "height-to-from-1y-halved-supply" | "height-to-shark-realized-price" | "height-to-from-1y-75p-price-paid" | "height-to-from-3y-to-5y-realized-price-99-5p" | "height-to-illiquid-supply-in-loss" | "height-to-transaction-volume-in-dollars" | "height-to-year-2014-unrealized-loss" | "height-to-market-price-to-year-2017-realized-price-ratio-99p" | "height-to-market-price-to-year-2024-realized-price-ratio-0-1p" | "height-to-100" | "height-to-humpback-45p-price-paid" | "height-to-price-34d-sma-0-5p" | "height-to-up-to-1m-supply-in-loss-to-own-supply-ratio" | "height-to-sth-75p-price-paid" | "height-to-from-3m-to-6m-input-count" | "height-to-humpback-realized-price-0-5p" | "height-to-from-1y-to-2y-cumulative-realized-loss" | "height-to-illiquid-halved-supply" | "height-to-fish-95p-price-paid" | "height-to-market-price-to-crab-realized-price-ratio-0-5p" | "height-to-p2pk-cumulative-realized-profit" | "height-to-from-2y-to-3y-supply" | "height-to-up-to-1d-60p-price-paid" | "height-to-year-2013-supply" | "height-to-cumulative-realized-profit" | "height-to-year-2018-realized-price-0-1p" | "height-to-from-4y-80p-price-paid" | "height-to-market-price-to-up-to-7y-realized-price-ratio-0-1p" | "height-to-up-to-15y-05p-price-paid" | "height-to-from-1d-to-1w-realized-profit" | "height-to-price-1y-sma-99p" | "height-to-whale-realized-price-0-5p" | "height-to-from-6m-to-1y-supply-in-loss-to-own-supply-ratio" | "height-to-year-2018-supply-in-profit-to-circulating-supply-ratio" | "height-to-shrimp-10p-price-paid" | "height-to-up-to-2y-realized-value" | "height-to-p2tr-negative-unrealized-loss" | "height-to-up-to-2y-realized-price-0-1p" | "height-to-lth-75p-price-paid" | "height-to-year-2016-10p-price-paid" | "height-to-up-to-2m-realized-price-99-9p" | "height-to-from-10y-to-15y-30p-price-paid" | "height-to-humpback-median-price-paid" | "height-to-plankton-75p-price-paid" | "height-to-shrimp-net-realized-profit-and-loss" | "height-to-from-3y-to-5y-supply-to-circulating-supply-ratio" | "height-to-year-2018-negative-unrealized-loss" | "height-to-humpback-realized-cap" | "height-to-market-price-to-from-10y-realized-price-ratio-0-1p" | "height-to-from-1w-to-1m-realized-cap" | "height-to-up-to-15y-80p-price-paid" | "height-to-market-price-to-up-to-4m-realized-price-ratio-1p" | "height-to-up-to-7y-halved-supply-to-circulating-supply-ratio" | "height-to-year-2013-realized-price-0-1p" | "height-to-year-2024-realized-cap-1m-net-change" | "height-to-sth-spent-output-profit-ratio" | "height-to-from-1m-to-3m-20p-price-paid" | "height-to-megalodon-10p-price-paid" | "height-to-from-1y-realized-price-99-9p" | "height-to-market-price-to-megalodon-realized-price-ratio-1m-sma" | "height-to-crab-median-price-paid" | "height-to-year-2009-value-destroyed" | "height-to-liquid-supply-in-loss-to-circulating-supply-ratio" | "height-to-from-6m-to-1y-supply" | "height-to-market-price-to-p2wsh-realized-price-ratio-0-1p" | "height-to-year-2017-realized-price-99-9p" | "height-to-year-2017-supply-in-profit-to-own-supply-ratio" | "height-to-market-price-to-up-to-3m-realized-price-ratio-1w-sma" | "height-to-price-55d-sma-99-9p" | "height-to-up-to-3y-45p-price-paid" | "height-to-year-2012-net-realized-profit-and-loss" | "height-to-from-3y-to-5y-supply" | "height-to-year-2012-supply-to-circulating-supply-ratio" | "height-to-up-to-3m-net-unrealized-profit-and-loss" | "height-to-market-price-to-year-2010-realized-price-ratio-0-1p" | "height-to-lth-input-volume" | "height-to-from-1d-to-1w-realized-price-99p" | "height-to-year-2009-realized-price-1p" | "height-to-from-3m-to-6m-35p-price-paid" | "height-to-year-2011-realized-value" | "height-to-up-to-7y-10p-price-paid" | "height-to-from-1y-to-2y-median-price-paid" | "height-to-humpback-realized-price" | "height-to-year-2022-realized-price-99-5p" | "height-to-market-price-to-from-10y-to-15y-realized-price-ratio-1m-sma" | "height-to-year-2015-30p-price-paid" | "height-to-shrimp-net-unrealized-profit-and-loss-to-market-cap-ratio" | "height-to-illiquid-85p-price-paid" | "height-to-from-4y-55p-price-paid" | "height-to-up-to-1w-60p-price-paid" | "height-to-up-to-3m-realized-profit" | "height-to-up-to-5y-supply-in-profit" | "height-to-up-to-10y-input-count" | "height-to-market-price-to-active-price-ratio-99p" | "height-to-year-2013-halved-supply-to-circulating-supply-ratio" | "height-to-market-price-to-year-2023-realized-price-ratio-1w-sma" | "height-to-year-2024-25p-price-paid" | "height-to-vaulting-rate" | "height-to-up-to-1m-realized-cap" | "height-to-p2wpkh-net-unrealized-profit-and-loss" | "height-to-market-price-to-year-2024-realized-price-ratio-99-9p" | "height-to-year-2012-35p-price-paid" | "height-to-year-2012-cumulative-net-realized-profit-and-loss" | "height-to-up-to-2m-supply-in-profit-to-own-supply-ratio" | "height-to-year-2022-spent-output-profit-ratio" | "height-to-up-to-5y-realized-price-0-5p" | "height-to-coinbase" | "height-to-year-2018-supply-in-profit-to-own-supply-ratio" | "height-to-from-2y-20p-price-paid" | "height-to-from-1y-to-2y-realized-price-99-9p" | "height-to-from-4y-cumulative-net-realized-profit-and-loss" | "height-to-plankton-60p-price-paid" | "height-to-market-price-to-price-1m-sma-ratio-1w-sma" | "height-to-shrimp-halved-supply" | "height-to-up-to-5m-net-realized-profit-and-loss" | "height-to-year-2016-20p-price-paid" | "height-to-up-to-10y-supply-in-profit-to-own-supply-ratio" | "height-to-year-2017-realized-loss" | "height-to-year-2024-realized-price" | "height-to-p2wpkh-cumulative-net-realized-profit-and-loss" | "height-to-up-to-5m-10p-price-paid" | "height-to-p2wsh-40p-price-paid" | "height-to-p2wsh-cumulative-net-realized-profit-and-loss" | "height-to-lth-05p-price-paid" | "height-to-year-2017-supply-in-loss-to-circulating-supply-ratio" | "height-to-shark-median-price-paid" | "height-to-up-to-3y-negative-unrealized-loss" | "height-to-market-price-to-price-144d-sma-ratio-1p" | "height-to-from-3y-to-5y-10p-price-paid" | "height-to-from-4y-cumulative-net-realized-profit-and-loss-1m-net-change" | "height-to-market-price-to-year-2022-realized-price-ratio-1y-sma-momentum-oscillator" | "height-to-market-price-to-vaulted-price-ratio-1p" | "height-to-year-2016-cumulative-realized-profit" | "height-to-fish-90p-price-paid" | "height-to-fish-negative-realized-loss" | "height-to-shrimp-20p-price-paid" | "height-to-market-price-to-p2pk-realized-price-ratio-0-5p" | "height-to-market-price-to-from-4y-realized-price-ratio-1w-sma" | "height-to-up-to-1d-supply-in-profit" | "height-to-from-10y-90p-price-paid" | "height-to-liquid-85p-price-paid" | "height-to-from-7y-to-10y-75p-price-paid" | "height-to-market-price-to-from-4y-realized-price-ratio-1y-sma" | "height-to-fish-supply-in-loss" | "height-to-market-price-to-year-2018-realized-price-ratio-1y-sma" | "height-to-up-to-1d-05p-price-paid" | "height-to-up-to-1w-supply-in-profit-to-own-supply-ratio" | "height-to-year-2011-median-price-paid" | "height-to-year-2019-utxo-count" | "height-to-from-6m-to-1y-30p-price-paid" | "height-to-market-price-to-price-13d-sma-ratio-99-5p" | "height-to-liquid-40p-price-paid" | "height-to-p2tr-value-destroyed" | "height-to-up-to-1m-negative-realized-loss" | "height-to-up-to-3m-realized-price-0-5p" | "height-to-from-3m-to-6m-15p-price-paid" | "height-to-shrimp-supply" | "height-to-market-price-to-realized-price-ratio-1y-sma-momentum-oscillator" | "height-to-p2pk-75p-price-paid" | "height-to-up-to-2m-25p-price-paid" | "height-to-year-2016-halved-supply" | "height-to-market-price-to-shrimp-realized-price-ratio-0-1p" | "height-to-crab-net-unrealized-profit-and-loss" | "height-to-market-price-to-year-2011-realized-price-ratio-99p" | "height-to-from-6m-to-1y-10p-price-paid" | "height-to-from-2y-45p-price-paid" | "height-to-up-to-4m-net-realized-profit-and-loss" | "height-to-year-2013-median-price-paid" | "height-to-market-price-to-price-8d-sma-ratio-1y-sma-momentum-oscillator" | "height-to-from-10y-to-15y-supply-in-loss" | "height-to-megalodon-realized-cap" | "height-to-from-3y-to-5y-25p-price-paid" | "height-to-year-2013-supply-in-profit" | "height-to-crab-15p-price-paid" | "height-to-from-2y-spent-output-profit-ratio" | "height-to-from-2y-cumulative-realized-loss" | "height-to-market-price-to-from-1y-realized-price-ratio-1y-sma-momentum-oscillator" | "height-to-realized-price-0-1p" | "height-to-up-to-6m-net-realized-profit-and-loss" | "height-to-year-2010-realized-price-99p" | "height-to-p2pkh-supply-in-loss-to-own-supply-ratio" | "height-to-year-2009-realized-price-99p" | "height-to-up-to-2y-net-realized-profit-and-loss" | "height-to-from-10y-80p-price-paid" | "height-to-up-to-1y-realized-price-0-5p" | "height-to-whale-realized-price-99-5p" | "height-to-from-1w-to-1m-20p-price-paid" | "height-to-humpback-supply-in-profit-to-own-supply-ratio" | "height-to-up-to-3y-75p-price-paid" | "height-to-up-to-6m-supply-in-profit" | "height-to-year-2020-input-volume" | "height-to-up-to-1w-supply-in-loss-to-circulating-supply-ratio" | "height-to-cumulative-coinbase" | "height-to-market-price-to-from-7y-to-10y-realized-price-ratio-1m-sma" | "height-to-from-10y-realized-profit" | "height-to-illiquid-supply-in-profit" | "height-to-megalodon-net-realized-profit-and-loss" | "height-to-year-2014-net-realized-profit-and-loss" | "height-to-market-price-to-year-2017-realized-price-ratio-1w-sma" | "height-to-from-15y-net-realized-profit-and-loss" | "height-to-up-to-3m-supply-in-loss-to-circulating-supply-ratio" | "height-to-from-2y-to-3y-80p-price-paid" | "height-to-crab-70p-price-paid" | "height-to-from-2y-input-count" | "height-to-from-1y-to-2y-value-destroyed" | "height-to-p2pk-70p-price-paid" | "height-to-market-price-to-price-21d-sma-ratio-99p" | "height-to-from-1y-to-2y-supply-to-circulating-supply-ratio" | "height-to-market-price-to-price-144d-sma-ratio-99-5p" | "height-to-year-2023-supply-in-profit" | "height-to-crab-negative-realized-loss" | "height-to-from-1w-to-1m-05p-price-paid" | "height-to-market-price-to-year-2022-realized-price-ratio-0-5p" | "height-to-p2wsh-35p-price-paid" | "height-to-from-10y-net-realized-profit-and-loss-to-market-cap-ratio" | "height-to-year-2015-20p-price-paid" | "height-to-year-2011-input-count" | "height-to-from-1d-to-1w-85p-price-paid" | "height-to-market-price-to-up-to-1y-realized-price-ratio-1p" | "height-to-market-price-to-year-2018-realized-price-ratio-99-5p" | "height-to-up-to-6m-supply-to-circulating-supply-ratio" | "height-to-year-2015-realized-value" | "height-to-from-4y-15p-price-paid" | "height-to-up-to-7y-supply-in-profit-to-circulating-supply-ratio" | "height-to-p2sh-75p-price-paid" | "height-to-up-to-1w-15p-price-paid" | "height-to-up-to-3y-25p-price-paid" | "height-to-year-2010-median-price-paid" | "height-to-p2wpkh-input-volume" | "height-to-year-2024-net-unrealized-profit-and-loss-to-market-cap-ratio" | "height-to-market-price-to-price-8d-sma-ratio-1m-sma" | "height-to-from-1m-to-3m-spent-output-profit-ratio" | "height-to-up-to-15y-20p-price-paid" | "height-to-humpback-35p-price-paid" | "height-to-year-2018-cumulative-realized-loss" | "height-to-market-price-to-crab-realized-price-ratio-1y-sma-momentum-oscillator" | "height-to-shark-supply-in-profit-to-own-supply-ratio" | "height-to-year-2023-net-realized-profit-and-loss" | "height-to-year-2018-net-unrealized-profit-and-loss-to-market-cap-ratio" | "height-to-fish-median-price-paid" | "height-to-fish-realized-price-99p" | "height-to-up-to-1y-input-count" | "height-to-up-to-3y-net-realized-profit-and-loss-to-market-cap-ratio" | "height-to-vaulted-supply-net-change" | "height-to-up-to-2y-supply-in-loss-to-circulating-supply-ratio" | "height-to-market-price-to-plankton-realized-price-ratio-0-1p" | "height-to-year-2009-85p-price-paid" | "height-to-market-price-to-year-2017-realized-price-ratio-99-9p" | "height-to-year-2013-value-destroyed" | "height-to-p2wpkh-realized-price-99p" | "height-to-up-to-1w-spent-output-profit-ratio" | "height-to-year-2014-cumulative-realized-profit" | "height-to-market-price-to-up-to-6m-realized-price-ratio-99-5p" | "height-to-up-to-3y-realized-value" | "height-to-p2wpkh-supply-in-loss" | "height-to-illiquid-80p-price-paid" | "height-to-market-price-to-vaulted-price-ratio-1y-sma-momentum-oscillator" | "height-to-market-price-to-year-2009-realized-price-ratio-1y-sma-momentum-oscillator" | "height-to-price-200w-sma" | "height-to-up-to-5m-15p-price-paid" | "height-to-from-3m-to-6m-supply-in-profit-to-own-supply-ratio" | "height-to-from-1d-to-1w-15p-price-paid" | "height-to-from-2y-to-3y-negative-realized-loss" | "height-to-up-to-5y-net-realized-profit-and-loss" | "height-to-year-2016-05p-price-paid" | "height-to-p2tr-40p-price-paid" | "height-to-p2tr-cumulative-net-realized-profit-and-loss-1m-net-change" | "height-to-p2wpkh-40p-price-paid" | "height-to-unrealized-profit" | "height-to-transaction-count" | "height-to-up-to-1m-80p-price-paid" | "height-to-from-1d-to-1w-value-destroyed" | "height-to-up-to-7y-60p-price-paid" | "height-to-whale-70p-price-paid" | "height-to-from-5y-to-7y-40p-price-paid" | "height-to-from-2y-realized-price-99-5p" | "height-to-p2tr-net-unrealized-profit-and-loss" | "height-to-fish-negative-unrealized-loss" | "height-to-megalodon-realized-price-99p" | "height-to-market-price-to-p2wsh-realized-price-ratio-1m-sma" | "height-to-year-2023-realized-cap-1m-net-change" | "height-to-up-to-5m-65p-price-paid" | "height-to-from-5y-to-7y-negative-realized-loss" | "height-to-p2pk-net-realized-profit-and-loss-to-market-cap-ratio" | "height-to-year-2019-realized-value" | "height-to-from-7y-to-10y-65p-price-paid" | "height-to-from-1d-to-1w-35p-price-paid" | "height-to-market-price-to-from-15y-realized-price-ratio-1y-sma-momentum-oscillator" | "height-to-crab-30p-price-paid" | "height-to-up-to-1w-85p-price-paid" | "height-to-up-to-7y-15p-price-paid" | "height-to-market-price-to-from-1d-to-1w-realized-price-ratio-99p" | "height-to-from-7y-to-10y-45p-price-paid" | "height-to-from-2y-10p-price-paid" | "height-to-10p-price-paid" | "height-to-market-price-to-from-3y-to-5y-realized-price-ratio-99-5p" | "height-to-market-price-to-price-4y-sma-ratio-1m-sma" | "height-to-from-15y-40p-price-paid" | "height-to-market-price-to-price-1y-sma-ratio" | "height-to-market-price-to-year-2020-realized-price-ratio-99-9p" | "height-to-p2pk-15p-price-paid" | "height-to-market-price-to-price-200w-sma-ratio" | "height-to-from-10y-to-15y-supply" | "height-to-sth-20p-price-paid" | "height-to-up-to-2y-supply-in-profit-to-circulating-supply-ratio" | "height-to-year-2014-75p-price-paid" | "height-to-market-price-to-sth-realized-price-ratio-0-5p" | "height-to-up-to-7y-unrealized-profit" | "height-to-year-2020-net-realized-profit-and-loss-to-market-cap-ratio" | "height-to-from-5y-to-7y-realized-price-99-5p" | "height-to-market-price-to-up-to-10y-realized-price-ratio-1p" | "height-to-market-price-to-from-1m-to-3m-realized-price-ratio" | "height-to-p2pk-net-unrealized-profit-and-loss" | "height-to-from-3m-to-6m-40p-price-paid" | "height-to-p2wpkh-realized-cap" | "height-to-true-market-mean-1p" | "height-to-market-price-to-shark-realized-price-ratio-1p" | "height-to-from-15y-realized-profit" | "height-to-from-7y-to-10y-30p-price-paid" | "height-to-liquid-negative-realized-loss" | "height-to-price-1w-sma-0-5p" | "height-to-from-1y-to-2y-negative-unrealized-loss" | "height-to-price-55d-sma-0-5p" | "height-to-from-10y-65p-price-paid" | "height-to-from-1w-to-1m-25p-price-paid" | "height-to-whale-15p-price-paid" | "height-to-up-to-4m-realized-loss" | "height-to-humpback-unrealized-loss" | "height-to-from-7y-to-10y-value-destroyed" | "height-to-market-price-to-year-2016-realized-price-ratio-1m-sma" | "height-to-up-to-6m-realized-price-99-5p" | "height-to-year-2010-supply-in-loss-to-own-supply-ratio" | "height-to-from-10y-to-15y-realized-cap-1m-net-change" | "height-to-market-price-to-active-price-ratio-1p" | "height-to-p2pkh-95p-price-paid" | "height-to-market-price-to-from-2y-to-3y-realized-price-ratio-0-5p" | "height-to-price-1m-sma-0-5p" | "height-to-year-2020-30p-price-paid" | "height-to-market-price-to-up-to-15y-realized-price-ratio-0-5p" | "height-to-up-to-3m-25p-price-paid" | "height-to-p2pk-unrealized-profit" | "height-to-market-price-to-cointime-price-ratio-1p" | "height-to-from-1y-net-unrealized-profit-and-loss-to-market-cap-ratio" | "height-to-p2sh-realized-price" | "height-to-up-to-1d-utxo-count" | "height-to-market-price-to-year-2016-realized-price-ratio" | "height-to-up-to-2y-supply-in-profit" | "height-to-up-to-2m-cumulative-net-realized-profit-and-loss" | "height-to-year-2024-net-realized-profit-and-loss-to-market-cap-ratio" | "height-to-market-price-to-year-2020-realized-price-ratio-99-5p" | "height-to-from-2y-realized-profit" | "height-to-from-3m-to-6m-realized-cap" | "height-to-from-1w-to-1m-spent-output-profit-ratio" | "height-to-price-21d-sma-0-5p" | "height-to-from-2y-to-3y-unrealized-profit" | "height-to-price-4y-sma-0-1p" | "height-to-up-to-3m-realized-price-99-9p" | "height-to-from-3y-to-5y-realized-price-1p" | "height-to-from-6m-to-1y-net-unrealized-profit-and-loss-to-market-cap-ratio" | "height-to-whale-75p-price-paid" | "height-to-from-1y-to-2y-45p-price-paid" | "height-to-from-1m-to-3m-realized-loss" | "height-to-market-price-to-year-2021-realized-price-ratio-99-9p" | "height-to-from-1m-to-3m-median-price-paid" | "height-to-market-price-to-up-to-10y-realized-price-ratio-0-5p" | "height-to-shark-address-count" | "height-to-up-to-5m-net-unrealized-profit-and-loss" | "height-to-year-2016-supply" | "height-to-market-price-to-up-to-5m-realized-price-ratio-99p" | "height-to-year-2021-realized-loss" | "height-to-up-to-2m-unrealized-profit" | "height-to-up-to-1d-supply" | "height-to-year-2024-supply-in-loss" | "height-to-market-price-to-p2pkh-realized-price-ratio-1w-sma" | "height-to-up-to-1m-utxo-count" | "height-to-from-5y-to-7y-realized-price-0-1p" | "height-to-up-to-3y-supply-in-profit" | "height-to-from-10y-to-15y-40p-price-paid" | "height-to-year-2022-05p-price-paid" | "height-to-market-price-to-p2wsh-realized-price-ratio-1p" | "height-to-from-1w-to-1m-90p-price-paid" | "height-to-market-price-to-illiquid-realized-price-ratio-1y-sma" | "height-to-up-to-5y-spent-output-profit-ratio" | "height-to-from-1y-65p-price-paid" | "height-to-market-price-to-up-to-1d-realized-price-ratio-0-1p" | "height-to-fish-supply-in-profit-to-circulating-supply-ratio" | "height-to-lth-realized-price-99-5p" | "height-to-year-2011-realized-price-99p" | "height-to-up-to-5m-unrealized-loss" | "height-to-fish-10p-price-paid" | "height-to-highly-liquid-supply-to-circulating-supply-ratio" | "height-to-year-2015-negative-unrealized-loss" | "height-to-from-7y-to-10y-utxo-count" | "height-to-from-2y-to-3y-realized-cap" | "height-to-market-price-to-up-to-4m-realized-price-ratio" | "height-to-crab-20p-price-paid" | "height-to-up-to-1w-10p-price-paid" | "height-to-year-2024-unrealized-loss" | "height-to-from-7y-to-10y-05p-price-paid" | "height-to-up-to-15y-median-price-paid" | "height-to-year-2012-realized-price-99-5p" | "height-to-from-10y-to-15y-supply-to-circulating-supply-ratio" | "height-to-liquid-70p-price-paid" | "height-to-from-1m-to-3m-75p-price-paid" | "height-to-from-3y-to-5y-65p-price-paid" | "height-to-market-price-to-price-89d-sma-ratio-99-5p" | "height-to-year-2018-realized-value" | "height-to-up-to-15y-90p-price-paid" | "height-to-shrimp-realized-price-99-5p" | "height-to-p2wsh-realized-cap-1m-net-change" | "height-to-fish-40p-price-paid" | "height-to-from-3m-to-6m-supply-in-profit-to-circulating-supply-ratio" | "height-to-from-2y-to-3y-supply-in-profit" | "height-to-year-2023-90p-price-paid" | "height-to-from-10y-supply-in-loss-to-own-supply-ratio" | "height-to-market-price-to-price-34d-sma-ratio-1y-sma-momentum-oscillator" | "height-to-from-1y-30p-price-paid" | "height-to-p2wsh-realized-cap" | "height-to-market-price-to-p2sh-realized-price-ratio-1w-sma" | "height-to-market-price-to-year-2009-realized-price-ratio-1y-sma" | "height-to-market-price-to-year-2015-realized-price-ratio-99-9p" | "height-to-price-34d-sma-99-5p" | "height-to-up-to-4m-25p-price-paid" | "height-to-year-2009-cumulative-realized-profit" | "height-to-year-2009-realized-price" | "height-to-p2wpkh-supply-in-loss-to-circulating-supply-ratio" | "height-to-market-price-to-from-15y-realized-price-ratio-1w-sma" | "height-to-market-price-to-p2pk-realized-price-ratio-1w-sma" | "height-to-up-to-7y-70p-price-paid" | "height-to-year-2012-utxo-count" | "height-to-price-13d-sma-0-1p" | "height-to-year-2013-cumulative-net-realized-profit-and-loss-1m-net-change" | "height-to-market-price-to-year-2015-realized-price-ratio-0-5p" | "height-to-from-5y-to-7y-20p-price-paid" | "height-to-from-2y-utxo-count" | "height-to-up-to-1y-unrealized-loss" | "height-to-cumulative-coinblocks-created" | "height-to-price-144d-sma-0-5p" | "height-to-market-price-to-sth-realized-price-ratio" | "height-to-market-price-to-crab-realized-price-ratio" | "height-to-from-2y-15p-price-paid" | "height-to-market-price-to-p2wpkh-realized-price-ratio-99-9p" | "height-to-market-price-to-price-1w-sma-ratio-99p" | "height-to-year-2010-net-unrealized-profit-and-loss-to-market-cap-ratio" | "height-to-cointime-adjusted-yearly-inflation-rate" | "height-to-liquid-supply" | "height-to-from-15y-input-volume" | "height-to-from-1m-to-3m-supply" | "height-to-up-to-2y-30p-price-paid" | "height-to-megalodon-05p-price-paid" | "height-to-up-to-3y-halved-supply" | "height-to-from-10y-cumulative-net-realized-profit-and-loss" | "height-to-from-10y-halved-supply-to-circulating-supply-ratio" | "height-to-up-to-10y-75p-price-paid" | "height-to-from-7y-to-10y-cumulative-net-realized-profit-and-loss-1m-net-change" | "height-to-up-to-5y-15p-price-paid" | "height-to-p2tr-45p-price-paid" | "height-to-market-price-to-from-7y-to-10y-realized-price-ratio-99-9p" | "height-to-from-15y-supply-in-profit-to-circulating-supply-ratio" | "height-to-market-price-to-from-3y-to-5y-realized-price-ratio" | "height-to-megalodon-90p-price-paid" | "height-to-shrimp-negative-realized-loss" | "height-to-cointime-price-1p" | "height-to-fish-realized-price-99-5p" | "height-to-created-addresses" | "height-to-p2tr-realized-cap-1m-net-change" | "height-to-up-to-1m-55p-price-paid" | "height-to-market-price-to-shrimp-realized-price-ratio-99-5p" | "height-to-up-to-3m-supply" | "height-to-from-4y-60p-price-paid" | "height-to-up-to-4m-realized-cap-1m-net-change" | "height-to-from-10y-negative-unrealized-loss" | "height-to-from-1m-to-3m-net-unrealized-profit-and-loss" | "height-to-halved-supply-to-circulating-supply-ratio" | "height-to-up-to-5m-95p-price-paid" | "height-to-highly-liquid-supply-in-loss-to-own-supply-ratio" | "height-to-up-to-5y-net-realized-profit-and-loss-to-market-cap-ratio" | "height-to-up-to-1m-unrealized-loss" | "height-to-fish-utxo-count" | "height-to-year-2011-cumulative-net-realized-profit-and-loss" | "height-to-year-2010-input-volume" | "height-to-p2wsh-negative-realized-loss" | "height-to-sth-supply-in-loss" | "height-to-year-2015-net-unrealized-profit-and-loss-to-market-cap-ratio" | "height-to-year-2020-realized-cap-1m-net-change" | "height-to-from-1d-to-1w-realized-cap" | "height-to-market-price-to-price-4y-sma-ratio-1p" | "height-to-from-1m-to-3m-unrealized-profit" | "height-to-p2sh-85p-price-paid" | "height-to-up-to-6m-realized-price-0-5p" | "height-to-year-2021-90p-price-paid" | "height-to-market-price-to-lth-realized-price-ratio-99-5p" | "height-to-p2sh-60p-price-paid" | "height-to-whale-30p-price-paid" | "height-to-year-2022-realized-price" | "height-to-from-7y-to-10y-supply-in-loss-to-circulating-supply-ratio" | "height-to-market-price-to-up-to-3m-realized-price-ratio-0-5p" | "height-to-year-2024-supply-in-profit-to-own-supply-ratio" | "height-to-from-2y-to-3y-05p-price-paid" | "height-to-from-10y-to-15y-realized-price-99p" | "height-to-p2tr-20p-price-paid" | "height-to-lth-realized-price-99-9p" | "height-to-lth-60p-price-paid" | "height-to-p2sh-supply-in-profit-to-circulating-supply-ratio" | "height-to-from-1y-spent-output-profit-ratio" | "height-to-illiquid-realized-loss" | "height-to-p2wsh-unrealized-loss" | "height-to-plankton-supply" | "height-to-year-2014-70p-price-paid" | "height-to-year-2022-utxo-count" | "height-to-from-2y-to-3y-input-volume" | "height-to-market-price-to-year-2016-realized-price-ratio-1w-sma" | "height-to-up-to-10y-60p-price-paid" | "height-to-market-price-to-year-2016-realized-price-ratio-1y-sma-momentum-oscillator" | "height-to-from-10y-to-15y-realized-price" | "height-to-market-price-to-up-to-6m-realized-price-ratio-0-5p" | "height-to-p2pk-realized-price-99-5p" | "height-to-up-to-1m-cumulative-realized-profit" | "height-to-crab-40p-price-paid" | "height-to-market-price-to-crab-realized-price-ratio-1y-sma" | "height-to-market-price-to-up-to-6m-realized-price-ratio-99-9p" | "height-to-from-1d-to-1w-spent-output-profit-ratio" | "height-to-p2wpkh-15p-price-paid" | "height-to-year-2022-realized-price-0-5p" | "height-to-market-price-to-from-10y-realized-price-ratio-1w-sma" | "height-to-crab-input-volume" | "height-to-from-1w-to-1m-unrealized-profit" | "height-to-p2pkh-realized-price-1p" | "height-to-market-price-to-cointime-price-ratio-99-5p" | "height-to-up-to-2m-realized-value" | "height-to-up-to-4m-net-unrealized-profit-and-loss" | "height-to-up-to-5m-realized-price-0-5p" | "height-to-year-2024-20p-price-paid" | "height-to-annualized-transaction-volume" | "height-to-market-price-to-from-10y-realized-price-ratio" | "height-to-highly-liquid-75p-price-paid" | "height-to-year-2018-70p-price-paid" | "height-to-from-10y-supply-in-profit-to-own-supply-ratio" | "height-to-subsidy-to-coinbase-ratio" | "height-to-megalodon-realized-price-99-9p" | "height-to-p2tr-realized-value" | "height-to-subsidy" | "height-to-up-to-3y-net-realized-profit-and-loss" | "height-to-from-6m-to-1y-utxo-count" | "height-to-market-price-to-illiquid-realized-price-ratio-0-5p" | "height-to-from-1d-to-1w-realized-price" | "height-to-crab-unrealized-profit" | "height-to-market-price-to-from-2y-realized-price-ratio-1m-sma" | "height-to-from-3m-to-6m-80p-price-paid" | "height-to-from-3m-to-6m-input-volume" | "height-to-up-to-5y-unrealized-profit" | "height-to-up-to-1d-realized-price" | "height-to-active-price-0-5p" | "height-to-from-2y-to-3y-realized-price-1p" | "height-to-p2pk-realized-price" | "height-to-year-2022-25p-price-paid" | "height-to-up-to-1m-65p-price-paid" | "height-to-from-3y-to-5y-value-created" | "height-to-year-2018-supply-in-profit" | "height-to-year-2020-net-realized-profit-and-loss" | "height-to-lth-supply-in-profit-to-circulating-supply-ratio" | "height-to-market-price-to-price-34d-sma-ratio-0-1p" | "height-to-p2tr-supply-in-loss-to-own-supply-ratio" | "height-to-up-to-4m-input-volume" | "height-to-fish-cumulative-net-realized-profit-and-loss" | "height-to-from-1w-to-1m-65p-price-paid" | "height-to-p2tr-utxo-count" | "height-to-up-to-2y-20p-price-paid" | "height-to-from-6m-to-1y-unrealized-profit" | "height-to-active-price-99-5p" | "height-to-from-3m-to-6m-85p-price-paid" | "height-to-market-price-to-from-6m-to-1y-realized-price-ratio" | "height-to-coinbase-in-dollars" | "height-to-from-7y-to-10y-25p-price-paid" | "height-to-from-1m-to-3m-negative-realized-loss" | "height-to-from-3m-to-6m-55p-price-paid" | "height-to-market-price-to-year-2009-realized-price-ratio-99p" | "height-to-up-to-3m-supply-in-loss" | "height-to-up-to-5m-40p-price-paid" | "height-to-lth-realized-price-0-5p" | "height-to-year-2013-realized-price-99-9p" | "height-to-up-to-2m-supply-in-loss" | "height-to-year-2017-realized-price-99p" | "height-to-year-2020-supply-in-loss-to-circulating-supply-ratio" | "height-to-market-price-to-true-market-mean-ratio-1y-sma" | "height-to-up-to-3y-40p-price-paid" | "height-to-up-to-1y-value-destroyed" | "height-to-realized-price-0-5p" | "height-to-p2wsh-realized-loss" | "height-to-market-price-to-p2wsh-realized-price-ratio-0-5p" | "height-to-year-2011-supply-in-loss" | "height-to-market-price-to-cointime-price-ratio-1m-sma" | "height-to-up-to-5m-negative-unrealized-loss" | "height-to-from-1m-to-3m-65p-price-paid" | "height-to-market-price-to-cointime-price-ratio-1y-sma" | "height-to-p2pk-supply-in-profit" | "height-to-fish-25p-price-paid" | "height-to-market-price-to-up-to-15y-realized-price-ratio-99-9p" | "height-to-market-price-to-price-1y-sma-ratio-99-5p" | "height-to-megalodon-input-count" | "height-to-year-2021-input-count" | "height-to-p2wpkh-address-count" | "height-to-up-to-1y-cumulative-realized-loss" | "height-to-from-4y-net-realized-profit-and-loss-to-market-cap-ratio" | "height-to-market-price-to-true-market-mean-ratio" | "height-to-year-2024-utxo-count" | "height-to-p2sh-supply-in-loss" | "height-to-up-to-4m-55p-price-paid" | "height-to-up-to-7y-25p-price-paid" | "height-to-year-2019-realized-price-0-5p" | "height-to-up-to-3y-input-volume" | "height-to-price-55d-sma-0-1p" | "height-to-shrimp-net-realized-profit-and-loss-to-market-cap-ratio" | "height-to-from-10y-realized-value" | "height-to-highly-liquid-15p-price-paid" | "height-to-from-1y-to-2y-realized-cap" | "height-to-from-3m-to-6m-realized-loss" | "height-to-crab-realized-price-99p" | "height-to-up-to-1m-25p-price-paid" | "height-to-up-to-1m-net-realized-profit-and-loss-to-market-cap-ratio" | "height-to-year-2019-55p-price-paid" | "height-to-p2wsh-05p-price-paid" | "height-to-year-2022-supply-in-profit" | "height-to-market-price-to-up-to-1w-realized-price-ratio-0-1p" | "height-to-market-price-to-up-to-1y-realized-price-ratio-1w-sma" | "height-to-market-price-to-from-2y-realized-price-ratio-1y-sma-momentum-oscillator" | "height-to-p2sh-cumulative-realized-loss" | "height-to-year-2010-cumulative-net-realized-profit-and-loss-1m-net-change" | "height-to-up-to-2y-65p-price-paid" | "height-to-up-to-5y-supply" | "height-to-megalodon-net-unrealized-profit-and-loss" | "height-to-up-to-5m-median-price-paid" | "height-to-shark-net-realized-profit-and-loss" | "height-to-up-to-7y-input-volume" | "height-to-shark-unrealized-loss" | "height-to-up-to-1d-value-destroyed" | "height-to-45p-price-paid" | "height-to-up-to-2m-value-created" | "height-to-up-to-2m-95p-price-paid" | "height-to-up-to-1d-net-unrealized-profit-and-loss-to-market-cap-ratio" | "height-to-highly-liquid-net-realized-profit-and-loss" | "height-to-up-to-4m-80p-price-paid" | "height-to-year-2013-10p-price-paid" | "height-to-year-2017-60p-price-paid" | "height-to-year-2022-cumulative-net-realized-profit-and-loss-1m-net-change" | "height-to-up-to-2m-75p-price-paid" | "height-to-up-to-6m-realized-price" | "height-to-up-to-3m-85p-price-paid" | "height-to-p2wpkh-75p-price-paid" | "height-to-up-to-3m-unrealized-loss" | "height-to-up-to-3y-supply-in-loss" | "height-to-year-2009-35p-price-paid" | "height-to-from-6m-to-1y-supply-in-loss-to-circulating-supply-ratio" | "height-to-year-2011-utxo-count" | "height-to-price-1w-sma-1p" | "height-to-up-to-2y-negative-unrealized-loss" | "height-to-from-2y-25p-price-paid" | "height-to-market-price-to-up-to-1y-realized-price-ratio-1y-sma" | "height-to-net-unrealized-profit-and-loss-to-market-cap-ratio" | "height-to-market-price-to-year-2010-realized-price-ratio-1m-sma" | "height-to-p2wsh-supply-in-loss" | "height-to-year-2022-30p-price-paid" | "height-to-market-price-to-year-2014-realized-price-ratio-0-5p" | "height-to-from-5y-to-7y-halved-supply-to-circulating-supply-ratio" | "height-to-up-to-7y-supply-to-circulating-supply-ratio" | "height-to-from-15y-value-created" | "height-to-up-to-6m-value-destroyed" | "height-to-from-2y-supply-in-loss-to-own-supply-ratio" | "height-to-p2pk-05p-price-paid" | "height-to-up-to-3m-75p-price-paid" | "height-to-from-2y-value-created" | "height-to-from-2y-to-3y-cumulative-net-realized-profit-and-loss-1m-net-change" | "height-to-from-3y-to-5y-net-unrealized-profit-and-loss-to-market-cap-ratio" | "height-to-humpback-05p-price-paid" | "height-to-market-price-to-up-to-5m-realized-price-ratio-1y-sma" | "height-to-year-2013-35p-price-paid" | "height-to-up-to-1y-realized-loss" | "height-to-up-to-4m-40p-price-paid" | "height-to-year-2021-05p-price-paid" | "height-to-market-price-to-year-2011-realized-price-ratio-1p" | "height-to-up-to-6m-median-price-paid" | "height-to-up-to-1m-85p-price-paid" | "height-to-year-2023-input-volume" | "height-to-plankton-85p-price-paid" | "height-to-market-price-to-price-200w-sma-ratio-1m-sma" | "height-to-up-to-1w-realized-profit" | "height-to-shrimp-realized-price" | "height-to-up-to-4m-85p-price-paid" | "height-to-from-6m-to-1y-value-destroyed" | "height-to-market-price-to-year-2017-realized-price-ratio" | "height-to-from-1d-to-1w-supply-in-loss-to-circulating-supply-ratio" | "height-to-market-price-to-up-to-3m-realized-price-ratio-99-9p" | "height-to-from-2y-40p-price-paid" | "height-to-up-to-10y-20p-price-paid" | "height-to-from-2y-to-3y-realized-value" | "height-to-market-price-to-p2pkh-realized-price-ratio-1y-sma" | "height-to-p2pkh-realized-price-0-1p" | "height-to-year-2019-negative-realized-loss" | "height-to-market-price-to-year-2022-realized-price-ratio-1m-sma" | "height-to-crab-negative-unrealized-loss" | "height-to-up-to-6m-realized-cap" | "height-to-p2pkh-70p-price-paid" | "height-to-from-10y-to-15y-negative-unrealized-loss" | "height-to-up-to-3m-cumulative-realized-profit" | "height-to-year-2013-30p-price-paid" | "height-to-from-1m-to-3m-realized-price" | "height-to-shark-cumulative-net-realized-profit-and-loss" | "height-to-from-1y-net-realized-profit-and-loss" | "height-to-year-2020-supply-in-loss-to-own-supply-ratio" | "height-to-up-to-2y-80p-price-paid" | "height-to-up-to-4m-65p-price-paid" | "height-to-year-2013-unrealized-profit" | "height-to-market-price-to-from-5y-to-7y-realized-price-ratio-1w-sma" | "height-to-year-2020-85p-price-paid" | "height-to-from-10y-to-15y-value-destroyed" | "height-to-from-1m-to-3m-55p-price-paid" | "height-to-up-to-4m-realized-price-0-1p" | "height-to-from-4y-supply-in-loss-to-circulating-supply-ratio" | "height-to-up-to-10y-realized-loss" | "height-to-lth-65p-price-paid" | "height-to-market-price-to-from-6m-to-1y-realized-price-ratio-1m-sma" | "height-to-up-to-6m-input-volume" | "height-to-market-price-to-year-2012-realized-price-ratio-99-5p" | "height-to-from-2y-to-3y-10p-price-paid" | "height-to-p2sh-55p-price-paid" | "height-to-market-price-to-price-34d-sma-ratio-0-5p" | "height-to-illiquid-input-volume" | "height-to-market-price-to-from-1y-to-2y-realized-price-ratio-99p" | "height-to-from-1d-to-1w-input-count" | "height-to-from-2y-to-3y-net-realized-profit-and-loss" | "height-to-year-2023-value-created" | "height-to-up-to-1w-negative-unrealized-loss" | "height-to-year-2015-median-price-paid" | "height-to-shrimp-supply-in-loss-to-own-supply-ratio" | "height-to-shrimp-realized-price-99p" | "height-to-shark-05p-price-paid" | "height-to-sth-supply-in-loss-to-own-supply-ratio" | "height-to-year-2019-negative-unrealized-loss" | "height-to-year-2010-realized-value" | "height-to-year-2019-net-unrealized-profit-and-loss" | "height-to-up-to-1m-realized-price-99-5p" | "height-to-up-to-1m-60p-price-paid" | "height-to-market-price-to-up-to-5m-realized-price-ratio" | "height-to-market-price-to-from-5y-to-7y-realized-price-ratio-0-1p" | "height-to-market-price-to-true-market-mean-ratio-99p" | "height-to-p2pk-10p-price-paid" | "height-to-from-6m-to-1y-realized-price-1p" | "height-to-lth-cumulative-net-realized-profit-and-loss-1m-net-change" | "height-to-market-price-to-true-market-mean-ratio-1p" | "height-to-year-2020-25p-price-paid" | "height-to-price-200w-sma-99p" | "height-to-year-2014-supply-in-profit-to-own-supply-ratio" | "height-to-from-3y-to-5y-realized-cap" | "height-to-market-price-to-up-to-1w-realized-price-ratio" | "height-to-liquid-60p-price-paid" | "height-to-year-2024-95p-price-paid" | "height-to-p2sh-supply-in-loss-to-own-supply-ratio" | "height-to-p2sh-value-created" | "height-to-market-price-to-up-to-2y-realized-price-ratio-1m-sma" | "height-to-up-to-2y-net-realized-profit-and-loss-to-market-cap-ratio" | "height-to-up-to-4m-supply-in-loss-to-circulating-supply-ratio" | "height-to-from-1y-realized-value" | "height-to-highly-liquid-realized-cap" | "height-to-year-2012-85p-price-paid" | "height-to-from-3y-to-5y-supply-in-profit-to-own-supply-ratio" | "height-to-p2wsh-95p-price-paid" | "height-to-crab-95p-price-paid" | "height-to-up-to-2m-utxo-count" | "height-to-from-1y-to-2y-supply-in-loss-to-own-supply-ratio" | "height-to-from-1y-05p-price-paid" | "height-to-year-2020-cumulative-net-realized-profit-and-loss-1m-net-change" | "height-to-market-price-to-price-200w-sma-ratio-1y-sma-momentum-oscillator" | "height-to-from-3y-to-5y-90p-price-paid" | "height-to-up-to-1w-45p-price-paid" | "height-to-market-price-to-shark-realized-price-ratio-1y-sma" | "height-to-p2wpkh-unrealized-loss" | "height-to-market-price-to-price-55d-sma-ratio-99-5p" | "height-to-year-2010-supply-in-profit-to-circulating-supply-ratio" | "height-to-market-price-to-whale-realized-price-ratio-99p" | "height-to-from-2y-to-3y-realized-price-99-5p" | "height-to-highly-liquid-80p-price-paid" | "height-to-market-price-to-p2pk-realized-price-ratio-1p" | "height-to-up-to-5y-40p-price-paid" | "height-to-year-2018-value-destroyed" | "height-to-market-price-to-from-15y-realized-price-ratio-1p" | "height-to-sth-realized-price-0-1p" | "height-to-market-price-to-price-1y-sma-ratio-0-1p" | "height-to-market-price-to-year-2015-realized-price-ratio-1w-sma" | "height-to-p2sh-40p-price-paid" | "height-to-cointime-price" | "height-to-price-21d-sma" | "height-to-year-2015-cumulative-net-realized-profit-and-loss" | "height-to-year-2016-25p-price-paid" | "height-to-cumulative-subsidy-in-dollars" | "height-to-p2pk-30p-price-paid" | "height-to-market-price-to-vaulted-price-ratio" | "height-to-p2pkh-cumulative-net-realized-profit-and-loss" | "height-to-year-2023-realized-price-99-9p" | "height-to-market-price-to-cointime-price-ratio-99-9p" | "height-to-price" | "height-to-up-to-15y-10p-price-paid" | "height-to-p2tr-75p-price-paid" | "height-to-40p-price-paid" | "height-to-up-to-2y-realized-price-99p" | "height-to-p2sh-65p-price-paid" | "height-to-sth-value-destroyed" | "height-to-year-2014-65p-price-paid" | "height-to-up-to-5m-supply-in-loss" | "height-to-from-1y-supply-in-profit-to-circulating-supply-ratio" | "height-to-up-to-1y-05p-price-paid" | "height-to-new-addresses" | "height-to-from-10y-to-15y-net-unrealized-profit-and-loss-to-market-cap-ratio" | "height-to-year-2013-05p-price-paid" | "height-to-market-price-to-from-3y-to-5y-realized-price-ratio-1p" | "height-to-up-to-1d-realized-price-0-5p" | "height-to-market-price-to-humpback-realized-price-ratio-1p" | "height-to-from-2y-supply-in-profit" | "height-to-from-1d-to-1w-20p-price-paid" | "height-to-price-34d-sma-0-1p" | "height-to-humpback-realized-price-1p" | "height-to-from-4y-20p-price-paid" | "height-to-from-2y-65p-price-paid" | "height-to-market-price-to-from-1m-to-3m-realized-price-ratio-99-9p" | "height-to-market-price-to-from-3m-to-6m-realized-price-ratio-99-9p" | "height-to-market-price-to-up-to-15y-realized-price-ratio-1m-sma" | "height-to-market-price-to-up-to-1w-realized-price-ratio-1y-sma" | "height-to-plankton-realized-price-1p" | "height-to-crab-supply-in-profit-to-circulating-supply-ratio" | "height-to-up-to-1w-25p-price-paid" | "height-to-from-1m-to-3m-halved-supply-to-circulating-supply-ratio" | "height-to-from-1m-to-3m-supply-in-loss" | "height-to-from-10y-supply-in-profit-to-circulating-supply-ratio" | "height-to-market-price-to-from-2y-to-3y-realized-price-ratio-99-5p" | "height-to-shark-net-unrealized-profit-and-loss" | "height-to-supply-to-circulating-supply-ratio" | "height-to-up-to-5m-cumulative-realized-profit" | "height-to-year-2014-realized-cap" | "height-to-megalodon-supply-in-profit-to-circulating-supply-ratio" | "height-to-price-4y-sma-1p" | "height-to-year-2011-realized-price-99-9p" | "height-to-from-1d-to-1w-75p-price-paid" | "height-to-market-price-to-up-to-7y-realized-price-ratio-99-5p" | "height-to-market-price-to-megalodon-realized-price-ratio" | "height-to-highly-liquid-cumulative-realized-profit" | "height-to-crab-cumulative-net-realized-profit-and-loss" | "height-to-illiquid-supply-to-circulating-supply-ratio" | "height-to-megalodon-supply-in-loss" | "height-to-plankton-unrealized-loss" | "height-to-year-2009-15p-price-paid" | "height-to-year-2009-95p-price-paid" | "height-to-illiquid-cumulative-realized-loss" | "height-to-market-price-to-from-1w-to-1m-realized-price-ratio-0-5p" | "height-to-market-price-to-year-2015-realized-price-ratio-1y-sma" | "height-to-p2tr-net-unrealized-profit-and-loss-to-market-cap-ratio" | "height-to-sth-55p-price-paid" | "height-to-p2wsh-unrealized-profit" | "height-to-up-to-15y-input-count" | "height-to-up-to-4m-realized-price" | "height-to-year-2020-realized-value" | "height-to-price-89d-sma-99p" | "height-to-vaulted-supply" | "height-to-p2tr-realized-price-1p" | "height-to-from-3y-to-5y-40p-price-paid" | "height-to-crab-65p-price-paid" | "height-to-from-1w-to-1m-45p-price-paid" | "height-to-from-1y-to-2y-85p-price-paid" | "height-to-from-7y-to-10y-cumulative-realized-profit" | "height-to-market-price-to-megalodon-realized-price-ratio-0-5p" | "height-to-market-price-to-year-2016-realized-price-ratio-99-5p" | "height-to-market-price-to-year-2018-realized-price-ratio-1p" | "height-to-from-1w-to-1m-75p-price-paid" | "height-to-shark-realized-price-99-9p" | "height-to-up-to-1m-unrealized-profit" | "height-to-market-price-to-price-89d-sma-ratio" | "height-to-p2pkh-value-destroyed" | "height-to-up-to-3y-supply-to-circulating-supply-ratio" | "height-to-up-to-2m-80p-price-paid" | "height-to-from-15y-supply-in-loss" | "height-to-up-to-4m-median-price-paid" | "height-to-market-price-to-p2sh-realized-price-ratio-1m-sma" | "height-to-from-4y-45p-price-paid" | "height-to-up-to-5y-65p-price-paid" | "height-to-year-2012-40p-price-paid" | "height-to-p2sh-halved-supply-to-circulating-supply-ratio" | "height-to-humpback-realized-value" | "height-to-year-2019-95p-price-paid" | "height-to-year-2023-10p-price-paid" | "height-to-market-price-to-from-1y-to-2y-realized-price-ratio-0-5p" | "height-to-market-price-to-p2pk-realized-price-ratio-0-1p" | "height-to-from-10y-to-15y-cumulative-net-realized-profit-and-loss" | "height-to-fish-unrealized-loss" | "height-to-year-2009-55p-price-paid" | "height-to-year-2021-55p-price-paid" | "height-to-up-to-1m-halved-supply-to-circulating-supply-ratio" | "height-to-up-to-4m-spent-output-profit-ratio" | "height-to-value-created" | "height-to-year-2010-net-realized-profit-and-loss" | "height-to-year-2016-realized-price" | "height-to-year-2013-realized-price-0-5p" | "height-to-year-2022-negative-realized-loss" | "height-to-price-1m-sma" | "height-to-from-4y-cumulative-realized-loss" | "height-to-up-to-2y-90p-price-paid" | "height-to-year-2009-cumulative-realized-loss" | "height-to-p2sh-70p-price-paid" | "height-to-year-2019-net-realized-profit-and-loss-to-market-cap-ratio" | "height-to-p2pk-halved-supply-to-circulating-supply-ratio" | "height-to-market-price-to-p2wpkh-realized-price-ratio-1p" | "height-to-from-1y-realized-cap" | "height-to-plankton-10p-price-paid" | "height-to-up-to-15y-realized-price-0-1p" | "height-to-up-to-1d-median-price-paid" | "height-to-up-to-5y-net-unrealized-profit-and-loss" | "height-to-market-price-to-from-10y-realized-price-ratio-1p" | "height-to-whale-spent-output-profit-ratio" | "height-to-up-to-10y-cumulative-net-realized-profit-and-loss-1m-net-change" | "height-to-year-2013-realized-value" | "height-to-up-to-1w-realized-price" | "height-to-p2wpkh-utxo-count" | "height-to-up-to-10y-supply" | "height-to-megalodon-value-destroyed" | "height-to-up-to-1d-supply-in-profit-to-own-supply-ratio" | "height-to-price-55d-sma-1p" | "height-to-up-to-2y-75p-price-paid" | "height-to-up-to-2y-realized-price-1p" | "height-to-year-2022-20p-price-paid" | "height-to-year-2009-halved-supply-to-circulating-supply-ratio" | "height-to-year-2023-85p-price-paid" | "height-to-cumulative-coinblocks-destroyed" | "height-to-up-to-10y-cumulative-realized-profit" | "height-to-transactions-per-second" | "height-to-from-1m-to-3m-realized-price-1p" | "height-to-from-7y-to-10y-supply-in-loss-to-own-supply-ratio" | "height-to-year-2010-20p-price-paid" | "height-to-active-price-1p" | "height-to-up-to-1y-40p-price-paid" | "height-to-price-2y-sma-0-1p" | "height-to-year-2012-realized-price-1p" | "height-to-up-to-3m-supply-in-profit-to-circulating-supply-ratio" | "height-to-market-price-to-year-2023-realized-price-ratio-99-5p" | "height-to-p2wsh-realized-price-1p" | "height-to-up-to-1y-halved-supply-to-circulating-supply-ratio" | "height-to-whale-supply-in-profit-to-circulating-supply-ratio" | "height-to-from-7y-to-10y-supply-in-profit-to-own-supply-ratio" | "height-to-from-2y-negative-realized-loss" | "height-to-highly-liquid-realized-price-1p" | "height-to-p2wpkh-realized-price-1p" | "height-to-from-1y-median-price-paid" | "height-to-whale-realized-price-0-1p" | "height-to-year-2013-unrealized-loss" | "height-to-year-2016-realized-price-0-5p" | "height-to-year-2021-15p-price-paid" | "height-to-from-15y-85p-price-paid" | "height-to-market-price-to-p2tr-realized-price-ratio-99-9p" | "height-to-p2pkh-60p-price-paid" | "height-to-p2wsh-cumulative-realized-loss" | "height-to-year-2020-realized-price" | "height-to-market-price-to-price-144d-sma-ratio-1y-sma-momentum-oscillator" | "height-to-price-2y-sma-99-9p" | "height-to-from-10y-to-15y-supply-in-profit-to-circulating-supply-ratio" | "height-to-up-to-3m-65p-price-paid" | "height-to-fish-05p-price-paid" | "height-to-whale-90p-price-paid" | "height-to-p2sh-supply-in-profit-to-own-supply-ratio" | "height-to-from-2y-75p-price-paid" | "height-to-year-2021-60p-price-paid" | "height-to-p2sh-value-destroyed" | "height-to-lth-negative-unrealized-loss" | "height-to-empty-addresses" | "height-to-market-price-to-price-89d-sma-ratio-99-9p" | "height-to-from-2y-realized-cap" | "height-to-market-price-to-from-1m-to-3m-realized-price-ratio-1w-sma" | "height-to-from-1m-to-3m-supply-in-profit" | "height-to-from-15y-supply-in-loss-to-own-supply-ratio" | "height-to-humpback-utxo-count" | "height-to-from-10y-to-15y-negative-realized-loss" | "height-to-market-price-to-price-55d-sma-ratio-0-1p" | "height-to-up-to-4m-unrealized-loss" | "height-to-market-price-to-fish-realized-price-ratio-1w-sma" | "height-to-market-price-to-highly-liquid-realized-price-ratio-1m-sma" | "height-to-market-price-to-shark-realized-price-ratio-1y-sma-momentum-oscillator" | "height-to-year-2012-net-unrealized-profit-and-loss-to-market-cap-ratio" | "height-to-price-1m-sma-99p" | "height-to-year-2016-value-destroyed" | "height-to-from-10y-to-15y-input-volume" | "height-to-year-2013-input-volume" | "height-to-p2pk-spent-output-profit-ratio" | "height-to-humpback-negative-realized-loss" | "height-to-shrimp-supply-in-profit-to-circulating-supply-ratio" | "height-to-year-2021-median-price-paid" | "height-to-from-3m-to-6m-halved-supply-to-circulating-supply-ratio" | "height-to-year-2018-45p-price-paid" | "height-to-year-2014-35p-price-paid" | "height-to-year-2022-supply" | "height-to-from-1w-to-1m-supply-in-profit-to-own-supply-ratio" | "height-to-liquid-net-realized-profit-and-loss" | "height-to-megalodon-cumulative-realized-profit" | "height-to-p2tr-realized-price-99p" | "height-to-up-to-1m-10p-price-paid" | "height-to-market-price-to-fish-realized-price-ratio-1y-sma" | "height-to-up-to-3m-realized-loss" | "height-to-year-2010-80p-price-paid" | "height-to-year-2023-80p-price-paid" | "height-to-market-price-to-p2tr-realized-price-ratio-1p" | "height-to-fish-realized-price-0-5p" | "height-to-year-2015-05p-price-paid" | "height-to-vaulted-price-99-9p" | "height-to-from-15y-80p-price-paid" | "height-to-from-1y-realized-price-99p" | "height-to-from-3m-to-6m-realized-price-0-5p" | "height-to-market-price-to-year-2012-realized-price-ratio-1w-sma" | "height-to-market-price-to-shrimp-realized-price-ratio-99p" | "height-to-market-price-to-from-2y-realized-price-ratio-99p" | "height-to-market-price-to-from-10y-realized-price-ratio-1m-sma" | "height-to-year-2009-supply-in-profit" | "height-to-year-2023-cumulative-net-realized-profit-and-loss-1m-net-change" | "height-to-shrimp-supply-in-profit-to-own-supply-ratio" | "height-to-from-10y-to-15y-95p-price-paid" | "height-to-from-6m-to-1y-halved-supply" | "height-to-humpback-90p-price-paid" | "height-to-market-price-to-fish-realized-price-ratio-1m-sma" | "height-to-market-price-to-year-2023-realized-price-ratio-1m-sma" | "height-to-p2pk-input-volume" | "height-to-up-to-2m-realized-loss" | "height-to-plankton-net-unrealized-profit-and-loss" | "height-to-from-15y-25p-price-paid" | "height-to-from-3y-to-5y-70p-price-paid" | "height-to-market-price-to-price-89d-sma-ratio-0-5p" | "height-to-market-price-to-up-to-5m-realized-price-ratio-99-9p" | "height-to-up-to-1d-90p-price-paid" | "height-to-from-4y-10p-price-paid" | "height-to-up-to-2m-net-realized-profit-and-loss-to-market-cap-ratio" | "height-to-year-2014-utxo-count" | "height-to-year-2017-85p-price-paid" | "height-to-humpback-input-count" | "height-to-whale-realized-price-1p" | "height-to-up-to-1y-realized-price" | "height-to-price-200w-sma-99-5p" | "height-to-year-2024-75p-price-paid" | "height-to-from-3m-to-6m-unrealized-profit" | "height-to-highly-liquid-60p-price-paid" | "height-to-market-price-to-up-to-4m-realized-price-ratio-1w-sma" | "height-to-market-price-to-year-2012-realized-price-ratio-99p" | "height-to-year-2017-net-realized-profit-and-loss" | "height-to-year-2024-input-volume" | "height-to-from-7y-to-10y-realized-price-0-1p" | "height-to-market-price-to-plankton-realized-price-ratio-99-5p" | "height-to-market-price-to-from-6m-to-1y-realized-price-ratio-99-5p" | "height-to-up-to-10y-realized-price-1p" | "height-to-from-2y-to-3y-cumulative-realized-profit" | "height-to-market-price-to-up-to-1y-realized-price-ratio-1m-sma" | "height-to-fish-60p-price-paid" | "height-to-from-10y-05p-price-paid" | "height-to-from-1y-to-2y-25p-price-paid" | "height-to-market-price-to-from-1y-realized-price-ratio-99-9p" | "height-to-from-15y-unrealized-loss" | "height-to-from-4y-90p-price-paid" | "height-to-from-6m-to-1y-input-count" | "height-to-market-price-to-year-2022-realized-price-ratio-1y-sma" | "height-to-up-to-10y-70p-price-paid" | "height-to-from-10y-unrealized-loss" | "height-to-up-to-2y-realized-cap-1m-net-change" | "height-to-from-2y-halved-supply" | "height-to-up-to-3m-input-volume" | "height-to-from-6m-to-1y-40p-price-paid" | "height-to-halved-supply" | "height-to-up-to-1d-supply-in-loss-to-circulating-supply-ratio" | "height-to-up-to-2y-median-price-paid" | "height-to-year-2010-spent-output-profit-ratio" | "height-to-up-to-10y-30p-price-paid" | "height-to-year-2010-25p-price-paid" | "height-to-year-2015-realized-price-0-1p" | "height-to-year-2022-15p-price-paid" | "height-to-liquid-75p-price-paid" | "height-to-from-1m-to-3m-80p-price-paid" | "height-to-p2wsh-realized-value" | "height-to-market-price-to-price-8d-sma-ratio-1p" | "height-to-year-2015-realized-cap-1m-net-change" | "height-to-from-5y-to-7y-70p-price-paid" | "height-to-year-2024-halved-supply-to-circulating-supply-ratio" | "height-to-up-to-7y-realized-profit" | "height-to-from-2y-05p-price-paid" | "height-to-market-price-to-up-to-10y-realized-price-ratio-1y-sma-momentum-oscillator" | "height-to-lth-85p-price-paid" | "height-to-up-to-3m-20p-price-paid" | "height-to-humpback-value-created" | "height-to-year-2022-supply-to-circulating-supply-ratio" | "height-to-up-to-7y-value-created" | "height-to-market-price-to-price-1y-sma-ratio-1y-sma" | "height-to-from-1m-to-3m-60p-price-paid" | "height-to-p2pk-net-realized-profit-and-loss" | "height-to-from-1m-to-3m-net-unrealized-profit-and-loss-to-market-cap-ratio" | "height-to-price-1w-sma-0-1p" | "height-to-up-to-3m-70p-price-paid" | "height-to-market-price-to-up-to-1w-realized-price-ratio-99-5p" | "height-to-p2sh-realized-price-0-5p" | "height-to-from-1m-to-3m-05p-price-paid" | "height-to-market-price-to-from-1d-to-1w-realized-price-ratio-0-5p" | "height-to-p2pkh-supply-in-profit-to-own-supply-ratio" | "height-to-p2wpkh-05p-price-paid" | "height-to-market-price-to-p2wpkh-realized-price-ratio-1m-sma" | "height-to-p2sh-spent-output-profit-ratio" | "height-to-year-2013-cumulative-realized-profit" | "height-to-year-2021-input-volume" | "height-to-price-89d-sma-99-5p" | "height-to-up-to-1w-80p-price-paid" | "height-to-from-1m-to-3m-cumulative-net-realized-profit-and-loss" | "height-to-market-price-to-from-1m-to-3m-realized-price-ratio-0-5p" | "height-to-p2wpkh-95p-price-paid" | "height-to-market-price-to-p2sh-realized-price-ratio-99-5p" | "height-to-p2pkh-realized-loss" | "height-to-up-to-3y-realized-price-1p" | "height-to-crab-cumulative-net-realized-profit-and-loss-1m-net-change" | "height-to-humpback-realized-cap-1m-net-change" | "height-to-market-price-to-price-13d-sma-ratio" | "height-to-p2pkh-65p-price-paid" | "height-to-from-10y-20p-price-paid" | "height-to-up-to-10y-supply-in-profit-to-circulating-supply-ratio" | "height-to-up-to-15y-cumulative-net-realized-profit-and-loss-1m-net-change" | "height-to-year-2009-realized-profit" | "height-to-year-2013-20p-price-paid" | "height-to-up-to-1m-cumulative-net-realized-profit-and-loss" | "height-to-year-2022-realized-price-99p" | "height-to-up-to-5m-35p-price-paid" | "height-to-illiquid-negative-unrealized-loss" | "height-to-from-3m-to-6m-cumulative-realized-loss" | "height-to-megalodon-70p-price-paid" | "height-to-timestamp" | "height-to-year-2019-supply-in-loss-to-circulating-supply-ratio" | "height-to-price-13d-sma-99-5p" | "height-to-year-2012-halved-supply-to-circulating-supply-ratio" | "height-to-market-price-to-from-15y-realized-price-ratio-0-1p" | "height-to-from-2y-to-3y-20p-price-paid" | "height-to-up-to-15y-supply" | "height-to-year-2020-value-destroyed" | "height-to-market-price-to-p2sh-realized-price-ratio-99-9p" | "height-to-price-55d-sma-99-5p" | "height-to-up-to-1m-supply" | "height-to-year-2012-realized-price-0-5p" | "height-to-from-15y-unrealized-profit" | "height-to-p2pk-supply-in-loss" | "height-to-year-2024-unrealized-profit" | "height-to-highly-liquid-halved-supply" | "height-to-up-to-3y-realized-price-99-9p" | "height-to-year-2012-45p-price-paid" | "height-to-market-price-to-illiquid-realized-price-ratio-99p" | "height-to-from-10y-realized-price" | "height-to-market-price-to-year-2015-realized-price-ratio-1m-sma" | "height-to-market-price-to-vaulted-price-ratio-0-5p" | "height-to-market-price-to-up-to-6m-realized-price-ratio-99p" | "height-to-shark-20p-price-paid" | "height-to-year-2017-unrealized-profit" | "height-to-up-to-6m-15p-price-paid" | "height-to-up-to-3m-15p-price-paid" | "height-to-year-2014-realized-price-0-1p" | "height-to-market-price-to-from-1w-to-1m-realized-price-ratio-1y-sma-momentum-oscillator" | "height-to-market-price-to-p2pk-realized-price-ratio-99-9p" | "height-to-up-to-7y-negative-realized-loss" | "height-to-year-2019-80p-price-paid" | "height-to-p2sh-realized-loss" | "height-to-year-2024-realized-price-99-9p" | "height-to-year-2019-supply-in-profit-to-circulating-supply-ratio" | "height-to-market-price-to-from-10y-to-15y-realized-price-ratio-0-1p" | "height-to-up-to-4m-supply-in-loss-to-own-supply-ratio" | "height-to-up-to-3m-cumulative-net-realized-profit-and-loss-1m-net-change" | "height-to-market-price-to-shrimp-realized-price-ratio-1w-sma" | "height-to-from-1y-unrealized-loss" | "height-to-from-1d-to-1w-halved-supply" | "height-to-market-price-to-year-2020-realized-price-ratio-1p" | "height-to-market-price-to-up-to-5m-realized-price-ratio-1w-sma" | "height-to-up-to-7y-supply-in-loss" | "height-to-up-to-3y-cumulative-net-realized-profit-and-loss" | "height-to-market-price-to-p2pkh-realized-price-ratio-1p" | "height-to-market-price-to-up-to-2y-realized-price-ratio-0-1p" | "height-to-market-price-to-whale-realized-price-ratio-99-5p" | "height-to-market-price-to-year-2022-realized-price-ratio-99-5p" | "height-to-p2tr-25p-price-paid" | "height-to-from-10y-cumulative-realized-loss" | "height-to-from-4y-realized-price-99-5p" | "height-to-illiquid-realized-price" | "height-to-p2tr-95p-price-paid" | "height-to-up-to-15y-55p-price-paid" | "height-to-value-destroyed" | "height-to-year-2024-supply-in-loss-to-own-supply-ratio" | "height-to-p2tr-supply-in-loss-to-circulating-supply-ratio" | "height-to-market-price-to-humpback-realized-price-ratio-0-5p" | "height-to-year-2013-net-realized-profit-and-loss-to-market-cap-ratio" | "height-to-up-to-15y-60p-price-paid" | "height-to-year-2011-realized-loss" | "height-to-from-3y-to-5y-05p-price-paid" | "height-to-market-price-to-price-4y-sma-ratio-99-5p" | "height-to-p2sh-address-count" | "height-to-market-price-to-year-2015-realized-price-ratio" | "height-to-market-price-to-true-market-mean-ratio-1m-sma" | "height-to-plankton-95p-price-paid" | "height-to-up-to-4m-60p-price-paid" | "height-to-market-price-to-price-1w-sma-ratio-1m-sma" | "height-to-lth-net-unrealized-profit-and-loss-to-market-cap-ratio" | "height-to-up-to-10y-spent-output-profit-ratio" | "height-to-up-to-5y-realized-price" | "height-to-year-2015-supply-in-profit-to-circulating-supply-ratio" | "height-to-from-1w-to-1m-realized-price-0-5p" | "height-to-illiquid-cumulative-net-realized-profit-and-loss-1m-net-change" | "height-to-15p-price-paid" | "height-to-up-to-3m-cumulative-net-realized-profit-and-loss" | "height-to-year-2010-value-created" | "height-to-up-to-5m-20p-price-paid" | "height-to-from-1y-net-unrealized-profit-and-loss" | "height-to-year-2020-negative-unrealized-loss" | "height-to-market-price-to-from-10y-to-15y-realized-price-ratio-99-9p" | "height-to-price-89d-sma-99-9p" | "height-to-from-1y-25p-price-paid" | "height-to-from-3y-to-5y-unrealized-profit" | "height-to-up-to-6m-70p-price-paid" | "height-to-year-2009-realized-price-0-5p" | "height-to-market-price-to-price-89d-sma-ratio-1y-sma" | "height-to-from-1m-to-3m-cumulative-realized-profit" | "height-to-from-3y-to-5y-supply-in-profit" | "height-to-market-price-to-from-3m-to-6m-realized-price-ratio-1y-sma-momentum-oscillator" | "height-to-p2sh-realized-cap" | "height-to-up-to-1d-realized-price-0-1p" | "height-to-market-price-to-year-2014-realized-price-ratio-1w-sma" | "height-to-sth-80p-price-paid" | "height-to-up-to-1y-supply-in-profit" | "height-to-year-2012-net-realized-profit-and-loss-to-market-cap-ratio" | "height-to-year-2016-75p-price-paid" | "height-to-from-2y-to-3y-unrealized-loss" | "height-to-year-2011-supply-in-profit" | "height-to-shrimp-15p-price-paid" | "height-to-whale-address-count" | "height-to-year-2024-15p-price-paid" | "height-to-p2wpkh-60p-price-paid" | "height-to-p2sh-realized-profit" | "height-to-market-price-to-up-to-15y-realized-price-ratio-1p" | "height-to-year-2017-value-destroyed" | "height-to-year-2024-65p-price-paid" | "height-to-active-price-99-9p" | "height-to-market-price-to-up-to-4m-realized-price-ratio-1y-sma" | "height-to-market-price-to-from-1y-realized-price-ratio-1p" | "height-to-price-1m-sma-99-9p" | "height-to-from-10y-40p-price-paid" | "height-to-shrimp-25p-price-paid" | "height-to-market-price-to-up-to-2y-realized-price-ratio-1p" | "height-to-up-to-1y-realized-profit" | "height-to-from-1y-negative-realized-loss" | "height-to-from-3m-to-6m-cumulative-net-realized-profit-and-loss-1m-net-change" | "height-to-market-price-to-price-1m-sma-ratio-99-5p" | "height-to-p2pkh-realized-price-99-9p" | "height-to-up-to-5y-halved-supply-to-circulating-supply-ratio" | "height-to-year-2010-realized-price" | "height-to-market-price-to-up-to-10y-realized-price-ratio-1m-sma" | "height-to-highly-liquid-cumulative-net-realized-profit-and-loss" | "height-to-market-price-to-up-to-15y-realized-price-ratio-99-5p" | "height-to-p2pk-55p-price-paid" | "height-to-up-to-3y-value-destroyed" | "height-to-year-2018-realized-price-1p" | "height-to-illiquid-realized-price-0-1p" | "height-to-p2wsh-15p-price-paid" | "height-to-up-to-4m-45p-price-paid" | "height-to-up-to-2y-cumulative-realized-loss" | "height-to-up-to-1d-negative-unrealized-loss" | "height-to-market-price-to-price-21d-sma-ratio-99-5p" | "height-to-p2pk-35p-price-paid" | "height-to-up-to-1y-85p-price-paid" | "height-to-year-2024-realized-price-0-5p" | "height-to-market-price-to-price-2y-sma-ratio-99p" | "height-to-p2wsh-80p-price-paid" | "height-to-year-2015-45p-price-paid" | "height-to-up-to-15y-unrealized-profit" | "height-to-market-price-to-price-2y-sma-ratio-1y-sma" | "height-to-plankton-35p-price-paid" | "height-to-plankton-realized-price-0-1p" | "height-to-p2sh-cumulative-realized-profit" | "height-to-market-price-to-whale-realized-price-ratio-99-9p" | "height-to-p2tr-65p-price-paid" | "height-to-price-8d-sma-99p" | "height-to-up-to-5m-cumulative-realized-loss" | "height-to-year-2020-utxo-count" | "height-to-from-1m-to-3m-realized-profit" | "height-to-year-2022-value-destroyed" | "height-to-up-to-2y-55p-price-paid" | "height-to-p2sh-input-count" | "height-to-from-10y-to-15y-realized-price-99-5p" | "height-to-active-supply-3m-net-change" | "height-to-up-to-10y-45p-price-paid" | "height-to-market-price-to-p2pk-realized-price-ratio" | "height-to-up-to-5y-utxo-count" | "height-to-up-to-2m-realized-price-99p" | "height-to-sth-45p-price-paid" | "height-to-up-to-1m-negative-unrealized-loss" | "height-to-market-price-to-p2wpkh-realized-price-ratio-1y-sma" | "height-to-year-2015-realized-price-99-9p" | "height-to-from-3m-to-6m-realized-value" | "height-to-year-2021-realized-price-99-9p" | "height-to-market-price-to-price-34d-sma-ratio-99-5p" | "height-to-up-to-1d-10p-price-paid" | "height-to-from-5y-to-7y-75p-price-paid" | "height-to-market-price-to-from-7y-to-10y-realized-price-ratio-99-5p" | "height-to-p2tr-30p-price-paid" | "height-to-market-price-to-p2tr-realized-price-ratio-0-1p" | "height-to-year-2017-70p-price-paid" | "height-to-crab-supply-in-profit-to-own-supply-ratio" | "height-to-from-1y-to-2y-cumulative-net-realized-profit-and-loss" | "height-to-year-2017-utxo-count" | "height-to-p2pkh-net-realized-profit-and-loss-to-market-cap-ratio" | "height-to-illiquid-negative-realized-loss" | "height-to-market-price-to-from-1d-to-1w-realized-price-ratio-1w-sma" | "height-to-coinblocks-destroyed" | "height-to-market-price-to-price-1y-sma-ratio-1y-sma-momentum-oscillator" | "height-to-year-2012-supply-in-loss" | "height-to-market-price-to-year-2011-realized-price-ratio-1w-sma" | "height-to-from-5y-to-7y-25p-price-paid" | "height-to-difficulty" | "height-to-sth-60p-price-paid" | "height-to-from-15y-supply" | "height-to-year-2024-value-created" | "height-to-p2pkh-unrealized-loss" | "height-to-market-price-to-plankton-realized-price-ratio" | "height-to-up-to-5m-supply-in-loss-to-circulating-supply-ratio" | "height-to-up-to-1w-realized-price-99p" | "height-to-from-10y-realized-price-1p" | "height-to-up-to-3m-negative-unrealized-loss" | "height-to-whale-supply-in-profit-to-own-supply-ratio" | "height-to-market-price-to-price-4y-sma-ratio-1w-sma" | "height-to-p2sh-realized-price-99p" | "height-to-from-1y-supply-in-loss" | "height-to-liquid-80p-price-paid" | "height-to-up-to-6m-net-realized-profit-and-loss-to-market-cap-ratio" | "height-to-year-2009-realized-price-99-9p" | "height-to-price-144d-sma-99p" | "height-to-from-3y-to-5y-80p-price-paid" | "height-to-up-to-1y-net-unrealized-profit-and-loss" | "height-to-from-5y-to-7y-30p-price-paid" | "height-to-illiquid-realized-price-99p" | "height-to-from-1d-to-1w-negative-realized-loss" | "height-to-liquid-realized-cap" | "height-to-from-1w-to-1m-utxo-count" | "height-to-market-price-to-p2wpkh-realized-price-ratio-99-5p" | "height-to-megalodon-supply-in-profit-to-own-supply-ratio" | "height-to-year-2022-net-realized-profit-and-loss" | "height-to-market-price-to-p2sh-realized-price-ratio-0-1p" | "height-to-market-price-to-year-2016-realized-price-ratio-99p" | "height-to-up-to-2y-45p-price-paid" | "height-to-highly-liquid-realized-price-99-9p" | "height-to-year-2017-05p-price-paid" | "height-to-p2pk-realized-price-0-5p" | "height-to-year-2012-cumulative-realized-loss" | "height-to-plankton-input-count" | "height-to-p2pkh-realized-value" | "height-to-from-5y-to-7y-realized-profit" | "height-to-from-3y-to-5y-spent-output-profit-ratio" | "height-to-from-5y-to-7y-95p-price-paid" | "height-to-whale-negative-unrealized-loss" | "height-to-market-price-to-year-2010-realized-price-ratio-1p" | "height-to-up-to-4m-supply-in-profit" | "height-to-crab-supply-to-circulating-supply-ratio" | "height-to-market-price-to-up-to-3m-realized-price-ratio-1y-sma" | "height-to-shrimp-85p-price-paid" | "height-to-fish-supply-in-loss-to-circulating-supply-ratio" | "height-to-shrimp-unrealized-loss" | "height-to-market-price-to-year-2023-realized-price-ratio-99p" | "height-to-from-10y-value-created" | "height-to-year-2012-realized-profit" | "height-to-year-2017-spent-output-profit-ratio" | "height-to-price-1y-sma" | "height-to-market-price-to-lth-realized-price-ratio-0-1p" | "height-to-from-5y-to-7y-realized-cap-1m-net-change" | "height-to-from-5y-to-7y-cumulative-net-realized-profit-and-loss" | "height-to-up-to-3y-15p-price-paid" | "height-to-from-3m-to-6m-realized-price-0-1p" | "height-to-p2pk-halved-supply" | "height-to-year-2014-40p-price-paid" | "height-to-humpback-25p-price-paid" | "height-to-market-price-to-liquid-realized-price-ratio-1w-sma" | "height-to-market-price-to-up-to-1d-realized-price-ratio-1y-sma" | "height-to-market-price-to-year-2024-realized-price-ratio-1m-sma" | "height-to-from-1w-to-1m-supply-in-profit-to-circulating-supply-ratio" | "height-to-illiquid-55p-price-paid" | "height-to-from-6m-to-1y-cumulative-realized-loss" | "height-to-market-price-to-price-1y-sma-ratio-0-5p" | "height-to-market-price-to-shark-realized-price-ratio-99p" | "height-to-from-1w-to-1m-negative-realized-loss" | "height-to-market-price-to-up-to-4m-realized-price-ratio-99-5p" | "height-to-year-2017-80p-price-paid" | "height-to-year-2010-05p-price-paid" | "height-to-market-price-to-year-2010-realized-price-ratio-99-5p" | "height-to-liquid-cumulative-realized-profit" | "height-to-from-1w-to-1m-halved-supply-to-circulating-supply-ratio" | "height-to-year-2017-realized-value" | "height-to-plankton-cumulative-net-realized-profit-and-loss-1m-net-change" | "height-to-year-2013-input-count" | "height-to-from-5y-to-7y-realized-price-99p" | "height-to-market-price-to-from-1y-to-2y-realized-price-ratio-1m-sma" | "height-to-shark-supply-in-profit-to-circulating-supply-ratio" | "height-to-year-2020-55p-price-paid" | "height-to-from-1y-35p-price-paid" | "height-to-realized-price-1p" | "height-to-megalodon-realized-value" | "height-to-active-price" | "height-to-crab-80p-price-paid" | "height-to-up-to-5m-realized-cap-1m-net-change" | "height-to-up-to-3y-net-unrealized-profit-and-loss" | "height-to-sth-05p-price-paid" | "height-to-year-2011-unrealized-profit" | "height-to-from-3y-to-5y-realized-cap-1m-net-change" | "height-to-market-price-to-price-1y-sma-ratio-1w-sma" | "height-to-up-to-10y-supply-in-loss" | "height-to-liquid-05p-price-paid" | "height-to-year-2022-supply-in-loss-to-own-supply-ratio" | "height-to-highly-liquid-realized-cap-1m-net-change" | "height-to-from-5y-to-7y-negative-unrealized-loss" | "height-to-from-1d-to-1w-halved-supply-to-circulating-supply-ratio" | "height-to-utxo-count" | "height-to-year-2024-cumulative-net-realized-profit-and-loss-1m-net-change" | "height-to-up-to-1y-net-realized-profit-and-loss-to-market-cap-ratio" | "height-to-from-4y-realized-price-99-9p" | "height-to-market-price-to-year-2011-realized-price-ratio-99-5p" | "height-to-p2sh-realized-price-99-9p" | "height-to-up-to-1w-cumulative-net-realized-profit-and-loss-1m-net-change" | "height-to-up-to-3y-realized-price-99p" | "height-to-year-2011-halved-supply" | "height-to-up-to-3y-supply-in-profit-to-own-supply-ratio" | "height-to-crab-45p-price-paid" | "height-to-market-price-to-year-2015-realized-price-ratio-1p" | "height-to-lth-supply-to-circulating-supply-ratio" | "height-to-sth-realized-cap" | "height-to-from-10y-to-15y-realized-loss" | "height-to-market-price-to-p2pkh-realized-price-ratio-0-5p" | "height-to-up-to-2m-20p-price-paid" | "height-to-market-price-to-price-144d-sma-ratio-99-9p" | "height-to-humpback-supply-to-circulating-supply-ratio" | "height-to-plankton-40p-price-paid" | "height-to-up-to-5y-realized-profit" | "height-to-year-2011-realized-price-0-5p" | "height-to-from-7y-to-10y-realized-cap-1m-net-change" | "height-to-market-price-to-fish-realized-price-ratio-1y-sma-momentum-oscillator" | "height-to-up-to-3y-cumulative-realized-profit" | "height-to-market-price-to-p2wsh-realized-price-ratio-99-9p" | "height-to-up-to-6m-input-count" | "height-to-market-price-to-year-2019-realized-price-ratio-1w-sma" | "height-to-year-2009-90p-price-paid" | "height-to-year-2024-cumulative-net-realized-profit-and-loss" | "height-to-year-2011-net-realized-profit-and-loss-to-market-cap-ratio" | "height-to-p2pkh-net-realized-profit-and-loss" | "height-to-year-2009-realized-loss" | "height-to-p2sh-95p-price-paid" | "height-to-year-2015-input-count" | "height-to-year-2016-net-realized-profit-and-loss" | "height-to-illiquid-05p-price-paid" | "height-to-from-2y-to-3y-realized-cap-1m-net-change" | "height-to-shark-10p-price-paid" | "height-to-from-2y-to-3y-realized-price-99p" | "height-to-up-to-5y-realized-price-99-5p" | "height-to-from-5y-to-7y-unrealized-profit" | "height-to-humpback-net-unrealized-profit-and-loss" | "height-to-year-2013-95p-price-paid" | "height-to-p2wpkh-input-count" | "height-to-up-to-1d-cumulative-realized-loss" | "height-to-p2sh-80p-price-paid" | "height-to-lth-supply-in-profit" | "height-to-market-price-to-illiquid-realized-price-ratio-1y-sma-momentum-oscillator" | "height-to-market-price-to-up-to-2m-realized-price-ratio-1m-sma" | "height-to-up-to-2m-cumulative-realized-loss" | "height-to-from-4y-65p-price-paid" | "height-to-p2wsh-realized-price-0-1p" | "height-to-up-to-1w-realized-price-0-5p" | "height-to-up-to-1w-35p-price-paid" | "height-to-up-to-4m-15p-price-paid" | "height-to-humpback-55p-price-paid" | "height-to-market-price-to-p2pkh-realized-price-ratio" | "height-to-market-price-to-price-55d-sma-ratio-1y-sma" | "height-to-active-supply-net-change" | "height-to-highly-liquid-supply-in-profit-to-circulating-supply-ratio" | "height-to-market-price-to-from-3m-to-6m-realized-price-ratio-1w-sma" | "height-to-sth-40p-price-paid" | "height-to-market-price-to-from-3y-to-5y-realized-price-ratio-1w-sma" | "height-to-market-price-to-from-4y-realized-price-ratio-0-5p" | "height-to-p2pkh-supply-in-loss-to-circulating-supply-ratio" | "height-to-year-2012-realized-price-99p" | "height-to-year-2021-80p-price-paid" | "height-to-market-price-to-from-1d-to-1w-realized-price-ratio-1m-sma" | "height-to-market-price-to-price-1m-sma-ratio-1p" | "height-to-up-to-2y-40p-price-paid" | "height-to-market-price-to-price-89d-sma-ratio-1p" | "height-to-year-2018-40p-price-paid" | "height-to-whale-supply-in-loss" | "height-to-crab-realized-price-0-1p" | "height-to-liquid-value-created" | "height-to-p2wsh-cumulative-realized-profit" | "height-to-year-2020-spent-output-profit-ratio" | "height-to-up-to-5y-55p-price-paid" | "height-to-p2pk-cumulative-net-realized-profit-and-loss-1m-net-change" | "height-to-lth-realized-price-99p" | "height-to-year-2011-realized-price-99-5p" | "height-to-market-price-to-price-34d-sma-ratio" | "height-to-from-1y-to-2y-realized-price-99-5p" | "height-to-year-2022-75p-price-paid" | "height-to-year-2022-median-price-paid" | "height-to-from-1d-to-1w-05p-price-paid" | "height-to-year-2022-supply-in-profit-to-circulating-supply-ratio" | "height-to-liquid-20p-price-paid" | "height-to-fish-realized-price-1p" | "height-to-year-2023-realized-price-99p" | "height-to-from-1m-to-3m-supply-in-profit-to-circulating-supply-ratio" | "height-to-from-1m-to-3m-supply-in-profit-to-own-supply-ratio" | "height-to-up-to-5y-cumulative-net-realized-profit-and-loss" | "height-to-p2pk-cumulative-realized-loss" | "height-to-p2wpkh-20p-price-paid" | "height-to-whale-realized-cap" | "height-to-year-2024-40p-price-paid" | "height-to-up-to-4m-20p-price-paid" | "height-to-market-price-to-price-21d-sma-ratio-99-9p" | "height-to-from-15y-05p-price-paid" | "height-to-market-price-to-year-2011-realized-price-ratio" | "height-to-realized-cap-1m-net-change" | "height-to-from-15y-45p-price-paid" | "height-to-illiquid-net-unrealized-profit-and-loss" | "height-to-up-to-3y-net-unrealized-profit-and-loss-to-market-cap-ratio" | "height-to-crab-90p-price-paid" | "height-to-year-2019-40p-price-paid" | "height-to-year-2023-realized-profit" | "height-to-crab-85p-price-paid" | "height-to-up-to-1m-30p-price-paid" | "height-to-p2wsh-input-volume" | "height-to-cointime-price-99-5p" | "height-to-year-2018-95p-price-paid" | "height-to-year-2022-55p-price-paid" | "height-to-from-1m-to-3m-15p-price-paid" | "height-to-year-2019-realized-price-1p" | "height-to-year-2012-supply-in-profit-to-own-supply-ratio" | "height-to-from-2y-realized-price-0-1p" | "height-to-up-to-3m-negative-realized-loss" | "height-to-year-2012-realized-price-99-9p" | "height-to-up-to-5y-20p-price-paid" | "height-to-year-2016-realized-price-99p" | "height-to-price-34d-sma-99-9p" | "height-to-market-price-to-highly-liquid-realized-price-ratio-0-1p" | "height-to-from-1y-supply" | "height-to-year-2011-value-destroyed" | "height-to-market-price-to-from-3m-to-6m-realized-price-ratio-99-5p" | "height-to-year-2022-40p-price-paid" | "height-to-market-price-to-p2tr-realized-price-ratio-1y-sma-momentum-oscillator" | "height-to-megalodon-20p-price-paid" | "height-to-year-2021-cumulative-net-realized-profit-and-loss-1m-net-change" | "height-to-up-to-7y-35p-price-paid" | "height-to-up-to-10y-realized-price-99p" | "height-to-year-2012-70p-price-paid" | "height-to-illiquid-45p-price-paid" | "height-to-p2wpkh-supply-in-profit-to-circulating-supply-ratio" | "height-to-up-to-3y-20p-price-paid" | "height-to-year-2014-negative-realized-loss" | "height-to-up-to-1m-15p-price-paid" | "height-to-up-to-6m-negative-unrealized-loss" | "height-to-year-2020-15p-price-paid" | "height-to-from-3m-to-6m-95p-price-paid" | "height-to-from-1d-to-1w-90p-price-paid" | "height-to-from-1y-realized-loss" | "height-to-lth-realized-loss" | "height-to-market-price-to-up-to-1m-realized-price-ratio-99-9p" | "height-to-market-price-to-p2pkh-realized-price-ratio-99-9p" | "height-to-year-2024-05p-price-paid" | "height-to-p2wsh-realized-price-99p" | "height-to-from-7y-to-10y-realized-cap" | "height-to-p2wpkh-median-price-paid" | "height-to-from-2y-net-unrealized-profit-and-loss-to-market-cap-ratio" | "height-to-market-price-to-humpback-realized-price-ratio-99p" | "height-to-from-7y-to-10y-supply" | "height-to-up-to-1m-halved-supply" | "height-to-annualized-issuance" | "height-to-shark-realized-price-99p" | "height-to-p2sh-90p-price-paid" | "height-to-market-price-to-up-to-5y-realized-price-ratio-1w-sma" | "height-to-up-to-15y-supply-in-loss-to-circulating-supply-ratio" | "height-to-from-1y-to-2y-35p-price-paid" | "height-to-from-1y-input-volume" | "height-to-from-4y-net-realized-profit-and-loss" | "height-to-market-price-to-illiquid-realized-price-ratio" | "height-to-market-price-to-price-1y-sma-ratio-99p" | "height-to-market-price-to-sth-realized-price-ratio-1m-sma" | "height-to-up-to-5y-30p-price-paid" | "height-to-from-7y-to-10y-10p-price-paid" | "height-to-market-price-to-shrimp-realized-price-ratio-0-5p" | "height-to-fish-supply-to-circulating-supply-ratio" | "height-to-shrimp-realized-cap" | "height-to-crab-net-unrealized-profit-and-loss-to-market-cap-ratio" | "height-to-year-2017-net-unrealized-profit-and-loss-to-market-cap-ratio" | "height-to-p2sh-supply-in-profit" | "height-to-market-price-to-year-2021-realized-price-ratio-1y-sma-momentum-oscillator" | "height-to-year-2018-85p-price-paid" | "height-to-year-2011-35p-price-paid" | "height-to-year-2018-utxo-count" | "height-to-from-1y-value-created" | "height-to-fish-net-unrealized-profit-and-loss" | "height-to-market-price-to-fish-realized-price-ratio-99p" | "height-to-up-to-2y-supply-to-circulating-supply-ratio" | "height-to-year-2014-realized-value" | "height-to-illiquid-net-realized-profit-and-loss" | "height-to-shark-realized-price-0-1p" | "height-to-market-price-to-year-2022-realized-price-ratio-0-1p" | "height-to-market-price-to-crab-realized-price-ratio-99-5p" | "height-to-from-15y-realized-price-0-1p" | "height-to-highly-liquid-net-unrealized-profit-and-loss" | "height-to-humpback-85p-price-paid" | "height-to-lth-35p-price-paid" | "height-to-p2pkh-spent-output-profit-ratio" | "height-to-year-2009-80p-price-paid" | "height-to-year-2013-net-realized-profit-and-loss" | "height-to-year-2018-net-realized-profit-and-loss-to-market-cap-ratio" | "height-to-market-price-to-from-1w-to-1m-realized-price-ratio-99p" | "height-to-lth-95p-price-paid" | "height-to-illiquid-utxo-count" | "height-to-from-1w-to-1m-median-price-paid" | "height-to-p2wpkh-realized-price-99-5p" | "height-to-address-count" | "height-to-p2sh-negative-realized-loss" | "height-to-up-to-1y-15p-price-paid" | "height-to-market-price-to-humpback-realized-price-ratio" | "height-to-up-to-4m-05p-price-paid" | "height-to-market-price-to-up-to-2y-realized-price-ratio-99-9p" | "height-to-up-to-1d-input-volume" | "height-to-from-2y-to-3y-halved-supply-to-circulating-supply-ratio" | "height-to-year-2009-negative-realized-loss" | "height-to-year-2018-realized-cap-1m-net-change" | "height-to-year-2010-realized-price-99-9p" | "height-to-up-to-1y-realized-value" | "height-to-market-price-to-from-3m-to-6m-realized-price-ratio-1p" | "height-to-from-4y-supply-in-profit-to-circulating-supply-ratio" | "height-to-market-price-to-up-to-10y-realized-price-ratio-1w-sma" | "height-to-market-price-to-from-2y-realized-price-ratio-99-9p" | "height-to-market-price-to-up-to-1d-realized-price-ratio-1w-sma" | "height-to-p2wsh-supply" | "height-to-up-to-1d-cumulative-net-realized-profit-and-loss" | "height-to-market-price-to-year-2014-realized-price-ratio-99p" | "height-to-market-price-to-year-2013-realized-price-ratio-99-9p" | "height-to-from-1w-to-1m-cumulative-realized-profit" | "height-to-p2pk-cumulative-net-realized-profit-and-loss" | "height-to-market-price-to-from-3y-to-5y-realized-price-ratio-1y-sma-momentum-oscillator" | "height-to-price-34d-sma-99p" | "height-to-from-2y-net-realized-profit-and-loss" | "height-to-humpback-realized-profit" | "height-to-year-2024-45p-price-paid" | "height-to-market-price-to-highly-liquid-realized-price-ratio-0-5p" | "height-to-up-to-3m-net-realized-profit-and-loss" | "height-to-year-2015-net-realized-profit-and-loss-to-market-cap-ratio" | "height-to-up-to-5m-85p-price-paid" | "height-to-from-1d-to-1w-input-volume" | "height-to-from-1y-to-2y-realized-price-99p" | "height-to-market-price-to-year-2014-realized-price-ratio-1p" | "height-to-illiquid-unrealized-loss" | "height-to-year-2013-cumulative-realized-loss" | "height-to-from-6m-to-1y-supply-in-profit-to-circulating-supply-ratio" | "height-to-up-to-10y-realized-cap" | "height-to-humpback-30p-price-paid" | "height-to-market-price-to-p2pkh-realized-price-ratio-1m-sma" | "height-to-up-to-5m-supply-in-profit-to-own-supply-ratio" | "height-to-sth-supply-in-profit-to-circulating-supply-ratio" | "height-to-transaction-count-1m-sma" | "height-to-up-to-1d-realized-price-1p" | "height-to-up-to-6m-realized-profit" | "height-to-year-2023-realized-price-1p" | "height-to-year-2011-supply-in-profit-to-circulating-supply-ratio" | "height-to-realized-price-99-9p" | "height-to-illiquid-15p-price-paid" | "height-to-from-1m-to-3m-40p-price-paid" | "height-to-market-price-to-price-4y-sma-ratio" | "height-to-up-to-2m-unrealized-loss" | "height-to-up-to-2m-65p-price-paid" | "height-to-year-2019-70p-price-paid" | "height-to-year-2021-net-realized-profit-and-loss" | "height-to-year-2022-85p-price-paid" | "height-to-year-2023-05p-price-paid" | "height-to-year-2023-supply-in-loss-to-own-supply-ratio" | "height-to-p2pkh-80p-price-paid" | "height-to-megalodon-spent-output-profit-ratio" | "height-to-up-to-4m-30p-price-paid" | "height-to-from-1w-to-1m-input-count" | "height-to-year-2012-supply-in-profit" | "height-to-from-1w-to-1m-halved-supply" | "height-to-sth-cumulative-realized-profit" | "height-to-market-price-to-cointime-price-ratio-1y-sma-momentum-oscillator" | "height-to-plankton-address-count" | "height-to-up-to-10y-net-unrealized-profit-and-loss" | "height-to-p2pk-supply-in-loss-to-own-supply-ratio" | "height-to-up-to-10y-halved-supply" | "height-to-up-to-6m-60p-price-paid" | "height-to-up-to-6m-supply-in-loss" | "height-to-input-volume" | "height-to-liquid-realized-price-99-9p" | "height-to-market-price-to-price-8d-sma-ratio-99-5p" | "height-to-whale-95p-price-paid" | "height-to-from-15y-halved-supply-to-circulating-supply-ratio" | "height-to-shrimp-cumulative-net-realized-profit-and-loss" | "height-to-year-2012-90p-price-paid" | "height-to-year-2016-85p-price-paid" | "height-to-lth-unrealized-loss" | "height-to-shrimp-realized-price-99-9p" | "height-to-highly-liquid-30p-price-paid" | "height-to-market-price-to-up-to-5y-realized-price-ratio" | "height-to-year-2019-realized-profit" | "height-to-from-5y-to-7y-15p-price-paid" | "height-to-from-4y-30p-price-paid" | "height-to-from-6m-to-1y-95p-price-paid" | "height-to-up-to-2m-input-volume" | "height-to-year-2020-supply-in-loss" | "height-to-up-to-5y-70p-price-paid" | "height-to-market-price-to-price-1w-sma-ratio-1w-sma" | "height-to-price-34d-sma" | "height-to-up-to-15y-supply-to-circulating-supply-ratio" | "height-to-year-2011-supply-in-loss-to-circulating-supply-ratio" | "height-to-shrimp-realized-cap-1m-net-change" | "height-to-price-200w-sma-0-5p" | "height-to-p2pkh-40p-price-paid" | "height-to-up-to-2m-60p-price-paid" | "height-to-market-price-to-year-2016-realized-price-ratio-1y-sma" | "height-to-humpback-realized-price-99-5p" | "height-to-from-1d-to-1w-supply-in-loss" | "height-to-year-2016-realized-price-99-5p" | "height-to-market-price-to-from-1d-to-1w-realized-price-ratio" | "height-to-market-price-to-up-to-1d-realized-price-ratio-0-5p" | "height-to-from-5y-to-7y-35p-price-paid" | "height-to-market-price-to-true-market-mean-ratio-99-5p" | "height-to-up-to-15y-cumulative-net-realized-profit-and-loss" | "height-to-up-to-5m-supply-to-circulating-supply-ratio" | "height-to-year-2019-value-destroyed" | "height-to-year-2022-realized-price-99-9p" | "height-to-from-4y-halved-supply" | "height-to-market-price-to-price-1y-sma-ratio-1m-sma" | "height-to-from-2y-supply-to-circulating-supply-ratio" | "height-to-market-price-to-shrimp-realized-price-ratio-1m-sma" | "height-to-from-1m-to-3m-realized-cap" | "height-to-market-price-to-up-to-5y-realized-price-ratio-99-5p" | "height-to-up-to-1m-realized-price-1p" | "height-to-market-price-to-p2tr-realized-price-ratio" | "height-to-liquid-cumulative-net-realized-profit-and-loss-1m-net-change" | "height-to-up-to-2m-net-unrealized-profit-and-loss-to-market-cap-ratio" | "height-to-up-to-5m-realized-cap" | "height-to-up-to-7y-halved-supply" | "height-to-up-to-5m-input-volume" | "height-to-market-price-to-p2tr-realized-price-ratio-99p" | "height-to-market-price-to-highly-liquid-realized-price-ratio-1p" | "height-to-up-to-6m-80p-price-paid" | "height-to-shark-95p-price-paid" | "height-to-highly-liquid-input-count" | "height-to-year-2019-15p-price-paid" | "height-to-market-price-to-year-2012-realized-price-ratio-0-1p" | "height-to-illiquid-supply-in-profit-to-circulating-supply-ratio" | "height-to-year-2009-05p-price-paid" | "height-to-p2wpkh-net-realized-profit-and-loss-to-market-cap-ratio" | "height-to-year-2016-input-count" | "height-to-up-to-3y-05p-price-paid" | "height-to-market-price-to-p2wpkh-realized-price-ratio-0-1p" | "height-to-whale-realized-price-99-9p" | "height-to-whale-25p-price-paid" | "height-to-year-2009-20p-price-paid" | "height-to-year-2011-realized-profit" | "height-to-up-to-1m-supply-to-circulating-supply-ratio" | "height-to-market-price-to-megalodon-realized-price-ratio-99p" | "height-to-plankton-25p-price-paid" | "height-to-liquid-15p-price-paid" | "height-to-shark-supply-to-circulating-supply-ratio" | "height-to-from-7y-to-10y-realized-price-99-5p" | "height-to-sth-cumulative-net-realized-profit-and-loss-1m-net-change" | "height-to-from-4y-realized-price-0-5p" | "height-to-whale-20p-price-paid" | "height-to-year-2020-realized-price-99-9p" | "height-to-market-price-to-up-to-2y-realized-price-ratio-99p" | "height-to-p2sh-realized-cap-1m-net-change" | "height-to-from-7y-to-10y-cumulative-net-realized-profit-and-loss" | "height-to-year-2019-input-count" | "height-to-p2wsh-value-destroyed" | "height-to-up-to-1m-90p-price-paid" | "height-to-year-2015-net-realized-profit-and-loss" | "height-to-p2wpkh-spent-output-profit-ratio" | "height-to-liquid-cumulative-net-realized-profit-and-loss" | "height-to-from-6m-to-1y-spent-output-profit-ratio" | "height-to-from-1y-input-count" | "height-to-from-1y-supply-in-profit-to-own-supply-ratio" | "height-to-market-price-to-from-4y-realized-price-ratio-99-5p" | "height-to-year-2016-70p-price-paid" | "height-to-price-200w-sma-0-1p" | "height-to-market-price-to-price-55d-sma-ratio-99-9p" | "height-to-from-3y-to-5y-55p-price-paid" | "height-to-from-7y-to-10y-unrealized-profit" | "height-to-market-price-to-from-3m-to-6m-realized-price-ratio-0-5p" | "height-to-up-to-1w-20p-price-paid" | "height-to-shark-40p-price-paid" | "height-to-up-to-10y-25p-price-paid" | "height-to-up-to-4m-realized-price-99p" | "height-to-year-2011-supply-to-circulating-supply-ratio" | "height-to-market-price-to-from-3m-to-6m-realized-price-ratio-1m-sma" | "height-to-year-2011-realized-price" | "height-to-up-to-1w-supply-in-profit-to-circulating-supply-ratio" | "height-to-year-2014-net-unrealized-profit-and-loss" | "height-to-year-2023-realized-cap" | "height-to-year-2012-95p-price-paid" | "height-to-lth-negative-realized-loss" | "height-to-year-2012-halved-supply" | "height-to-year-2012-value-created" | "height-to-year-2020-realized-cap" | "height-to-whale-supply-in-loss-to-circulating-supply-ratio" | "height-to-up-to-10y-supply-to-circulating-supply-ratio" | "height-to-up-to-10y-median-price-paid" | "height-to-year-2011-30p-price-paid" | "height-to-year-2013-supply-to-circulating-supply-ratio" | "height-to-up-to-10y-unrealized-loss" | "height-to-market-price-to-year-2018-realized-price-ratio-1y-sma-momentum-oscillator" | "height-to-from-7y-to-10y-realized-value" | "height-to-price-4y-sma-99-5p" | "height-to-sth-70p-price-paid" | "height-to-from-10y-55p-price-paid" | "height-to-market-price-to-year-2009-realized-price-ratio" | "height-to-market-price-to-year-2021-realized-price-ratio-1w-sma" | "height-to-up-to-2m-supply-in-loss-to-circulating-supply-ratio" | "height-to-p2wsh-20p-price-paid" | "height-to-crab-55p-price-paid" | "height-to-fish-20p-price-paid" | "height-to-shrimp-cumulative-realized-profit" | "height-to-from-3m-to-6m-cumulative-net-realized-profit-and-loss" | "height-to-p2pkh-net-unrealized-profit-and-loss" | "height-to-up-to-1m-realized-price-0-1p" | "height-to-up-to-5y-60p-price-paid" | "height-to-from-3m-to-6m-value-created" | "height-to-highly-liquid-25p-price-paid" | "height-to-year-2010-65p-price-paid" | "height-to-year-2015-value-created" | "height-to-from-1y-to-2y-supply-in-profit-to-circulating-supply-ratio" | "height-to-year-2012-65p-price-paid" | "height-to-from-10y-utxo-count" | "height-to-from-1w-to-1m-realized-profit" | "height-to-p2pk-negative-realized-loss" | "height-to-year-2016-cumulative-net-realized-profit-and-loss" | "height-to-year-2018-spent-output-profit-ratio" | "height-to-up-to-1d-35p-price-paid" | "height-to-market-price-to-year-2013-realized-price-ratio-99-5p" | "height-to-year-2013-25p-price-paid" | "height-to-year-2013-85p-price-paid" | "height-to-market-price-to-from-5y-to-7y-realized-price-ratio-99-5p" | "height-to-sth-realized-price" | "height-to-shrimp-realized-loss" | "height-to-up-to-3m-value-created" | "height-to-from-7y-to-10y-90p-price-paid" | "height-to-market-price-to-price-200w-sma-ratio-0-1p" | "height-to-market-price-to-sth-realized-price-ratio-1y-sma" | "height-to-from-1y-to-2y-cumulative-realized-profit" | "height-to-up-to-4m-95p-price-paid" | "height-to-market-price-to-up-to-2y-realized-price-ratio" | "height-to-p2pkh-input-volume" | "height-to-up-to-1d-unrealized-loss" | "height-to-lth-supply-in-loss-to-own-supply-ratio" | "height-to-shark-30p-price-paid" | "height-to-up-to-2m-realized-cap-1m-net-change" | "height-to-megalodon-supply-in-profit" | "height-to-year-2022-65p-price-paid" | "height-to-from-1m-to-3m-35p-price-paid" | "height-to-from-1w-to-1m-supply-to-circulating-supply-ratio" | "height-to-p2pk-60p-price-paid" | "height-to-market-price-to-price-55d-sma-ratio-0-5p" | "height-to-year-2012-realized-value" | "height-to-market-price-to-year-2017-realized-price-ratio-1y-sma" | "height-to-shark-25p-price-paid" | "height-to-year-2009-median-price-paid" | "height-to-year-2016-15p-price-paid" | "height-to-up-to-5y-95p-price-paid" | "height-to-from-10y-to-15y-supply-in-profit" | "height-to-market-price-to-crab-realized-price-ratio-99-9p" | "height-to-year-2024-70p-price-paid" | "height-to-from-15y-30p-price-paid" | "height-to-from-10y-value-destroyed" | "height-to-year-2009-supply" | "height-to-fish-realized-value" | "height-to-up-to-6m-supply-in-profit-to-own-supply-ratio" | "height-to-year-2015-55p-price-paid" | "height-to-market-price-to-up-to-3y-realized-price-ratio-1y-sma-momentum-oscillator" | "height-to-up-to-15y-cumulative-realized-profit" | "height-to-highly-liquid-supply-in-profit-to-own-supply-ratio" | "height-to-up-to-6m-net-unrealized-profit-and-loss" | "height-to-year-2015-realized-price-0-5p" | "height-to-from-1y-to-2y-20p-price-paid" | "height-to-year-2012-spent-output-profit-ratio" | "height-to-from-1w-to-1m-realized-price-1p" | "height-to-from-1y-to-2y-unrealized-profit" | "height-to-up-to-1w-cumulative-net-realized-profit-and-loss" | "height-to-from-1y-10p-price-paid" | "height-to-from-6m-to-1y-realized-loss" | "height-to-humpback-realized-price-99p" | "height-to-liquid-realized-profit" | "height-to-p2pkh-negative-realized-loss" | "height-to-up-to-4m-cumulative-realized-profit" | "height-to-year-2012-realized-cap-1m-net-change" | "height-to-year-2021-75p-price-paid" | "height-to-from-5y-to-7y-realized-price-1p" | "height-to-year-2021-net-unrealized-profit-and-loss" | "height-to-highly-liquid-realized-loss" | "height-to-megalodon-60p-price-paid" | "height-to-market-price-to-from-1y-to-2y-realized-price-ratio" | "height-to-shrimp-40p-price-paid" | "height-to-p2tr-90p-price-paid" | "height-to-p2wpkh-realized-cap-1m-net-change" | "height-to-liquid-realized-price-0-5p" | "height-to-shark-supply-in-profit" | "height-to-up-to-3m-utxo-count" | "height-to-market-price-to-from-3y-to-5y-realized-price-ratio-0-5p" | "height-to-market-price-to-up-to-2m-realized-price-ratio-99p" | "height-to-year-2010-90p-price-paid" | "height-to-up-to-15y-input-volume" | "height-to-market-price-to-price-2y-sma-ratio-1w-sma" | "height-to-p2wsh-supply-in-loss-to-own-supply-ratio" | "height-to-75p-price-paid" | "height-to-up-to-15y-realized-cap" | "height-to-year-2016-realized-cap-1m-net-change" | "height-to-market-price-to-year-2019-realized-price-ratio-1m-sma" | "height-to-up-to-1d-supply-in-loss" | "height-to-30p-price-paid" | "height-to-from-10y-supply-in-profit" | "height-to-p2sh-20p-price-paid" | "height-to-market-price-to-p2sh-realized-price-ratio-0-5p" | "height-to-from-5y-to-7y-supply-in-profit-to-circulating-supply-ratio" | "height-to-humpback-10p-price-paid" | "height-to-up-to-5y-cumulative-realized-loss" | "height-to-plankton-realized-cap" | "height-to-year-2013-realized-cap" | "height-to-market-price-to-year-2018-realized-price-ratio-99-9p" | "height-to-market-price-to-active-price-ratio-99-9p" | "height-to-year-2023-15p-price-paid" | "height-to-market-price-to-up-to-2m-realized-price-ratio-1y-sma-momentum-oscillator" | "height-to-year-2022-90p-price-paid" | "height-to-up-to-2m-supply-in-profit-to-circulating-supply-ratio" | "height-to-year-2010-45p-price-paid" | "height-to-year-2024-supply" | "height-to-market-price-to-sth-realized-price-ratio-0-1p" | "height-to-market-price-to-active-price-ratio" | "height-to-illiquid-median-price-paid" | "height-to-up-to-15y-40p-price-paid" | "height-to-year-2010-negative-realized-loss" | "height-to-p2wsh-75p-price-paid" | "height-to-year-2018-net-unrealized-profit-and-loss" | "height-to-year-2009-40p-price-paid" | "height-to-up-to-2y-10p-price-paid" | "height-to-market-price-to-year-2020-realized-price-ratio-1w-sma" | "height-to-year-2014-45p-price-paid" | "height-to-up-to-6m-unrealized-profit" | "height-to-market-price-to-up-to-1m-realized-price-ratio-0-1p" | "height-to-year-2010-halved-supply-to-circulating-supply-ratio" | "height-to-market-price-to-year-2009-realized-price-ratio-1w-sma" | "height-to-whale-cumulative-net-realized-profit-and-loss" | "height-to-up-to-2y-realized-price" | "height-to-market-price-to-up-to-5y-realized-price-ratio-99-9p" | "height-to-lth-net-unrealized-profit-and-loss" | "height-to-year-2018-realized-price-99-5p" | "height-to-year-2016-55p-price-paid" | "height-to-from-5y-to-7y-input-count" | "height-to-sth-10p-price-paid" | "height-to-p2pkh-05p-price-paid" | "height-to-p2wpkh-halved-supply-to-circulating-supply-ratio" | "height-to-from-6m-to-1y-45p-price-paid" | "height-to-market-price-to-realized-price-ratio" | "height-to-from-1d-to-1w-net-unrealized-profit-and-loss" | "height-to-market-price-to-price-200w-sma-ratio-99-9p" | "height-to-up-to-3m-cumulative-realized-loss" | "height-to-up-to-4m-70p-price-paid" | "height-to-up-to-7y-spent-output-profit-ratio" | "height-to-year-2020-unrealized-profit" | "height-to-from-15y-supply-in-profit-to-own-supply-ratio" | "height-to-up-to-2y-85p-price-paid" | "height-to-year-2021-supply-to-circulating-supply-ratio" | "height-to-p2pkh-address-count" | "height-to-price-144d-sma-99-5p" | "height-to-market-price-to-up-to-5y-realized-price-ratio-99p" | "height-to-up-to-2m-median-price-paid" | "height-to-from-7y-to-10y-net-realized-profit-and-loss-to-market-cap-ratio" | "height-to-market-price-to-active-price-ratio-0-5p" | "height-to-active-price-99p" | "height-to-market-price-to-from-3y-to-5y-realized-price-ratio-0-1p" | "height-to-whale-45p-price-paid" | "height-to-p2sh-supply-to-circulating-supply-ratio" | "height-to-up-to-10y-90p-price-paid" | "height-to-year-2021-cumulative-realized-loss" | "height-to-supply-in-loss-to-own-supply-ratio" | "height-to-market-price-to-from-1y-to-2y-realized-price-ratio-1y-sma" | "height-to-from-3y-to-5y-realized-price-0-5p" | "height-to-p2wsh-25p-price-paid" | "height-to-concurrent-liveliness-2w-median" | "height-to-market-price-to-p2wsh-realized-price-ratio-99-5p" | "height-to-from-2y-55p-price-paid" | "height-to-from-2y-realized-value" | "height-to-price-2y-sma-99-5p" | "height-to-up-to-1m-45p-price-paid" | "height-to-from-1d-to-1w-utxo-count" | "height-to-year-2014-05p-price-paid" | "height-to-up-to-2m-40p-price-paid" | "height-to-from-4y-realized-value" | "height-to-market-price-to-realized-price-ratio-99-5p" | "height-to-shrimp-value-destroyed" | "height-to-up-to-1m-realized-price-99p" | "height-to-illiquid-10p-price-paid" | "height-to-plankton-realized-price" | "height-to-market-price-to-year-2016-realized-price-ratio-99-9p" | "height-to-market-price-to-year-2010-realized-price-ratio-1y-sma" | "height-to-from-4y-value-created" | "height-to-from-10y-to-15y-supply-in-profit-to-own-supply-ratio" | "height-to-market-price-to-highly-liquid-realized-price-ratio-1w-sma" | "height-to-from-1y-60p-price-paid" | "height-to-up-to-5m-45p-price-paid" | "height-to-up-to-2m-85p-price-paid" | "height-to-year-2013-90p-price-paid" | "height-to-from-3y-to-5y-95p-price-paid" | "height-to-year-2014-realized-cap-1m-net-change" | "height-to-up-to-1w-utxo-count" | "height-to-up-to-3m-realized-value" | "height-to-year-2013-realized-profit" | "height-to-from-4y-supply-in-profit" | "height-to-from-6m-to-1y-value-created" | "height-to-from-10y-to-15y-realized-price-0-5p" | "height-to-market-price-to-up-to-1w-realized-price-ratio-1m-sma" | "height-to-p2pk-25p-price-paid" | "height-to-from-1d-to-1w-negative-unrealized-loss" | "height-to-shrimp-45p-price-paid" | "height-to-price-1w-sma-99p" | "height-to-up-to-1w-05p-price-paid" | "height-to-up-to-2m-35p-price-paid" | "height-to-year-2017-95p-price-paid" | "height-to-market-price-to-up-to-2y-realized-price-ratio-1y-sma-momentum-oscillator" | "height-to-from-10y-to-15y-15p-price-paid" | "height-to-year-2013-70p-price-paid" | "height-to-market-price-to-plankton-realized-price-ratio-0-5p" | "height-to-year-2021-halved-supply-to-circulating-supply-ratio" | "height-to-from-3m-to-6m-supply-in-loss-to-own-supply-ratio" | "height-to-year-2021-net-realized-profit-and-loss-to-market-cap-ratio" | "height-to-from-3y-to-5y-cumulative-net-realized-profit-and-loss" | "height-to-from-3y-to-5y-negative-realized-loss" | "height-to-year-2015-25p-price-paid" | "height-to-year-2017-cumulative-net-realized-profit-and-loss" | "height-to-up-to-15y-35p-price-paid" | "height-to-market-price-to-up-to-4m-realized-price-ratio-99-9p" | "height-to-megalodon-negative-unrealized-loss" | "height-to-market-price-to-p2sh-realized-price-ratio-99p" | "height-to-year-2018-30p-price-paid" | "height-to-crab-10p-price-paid" | "height-to-whale-net-realized-profit-and-loss" | "height-to-year-2016-65p-price-paid" | "height-to-p2pk-net-unrealized-profit-and-loss-to-market-cap-ratio" | "height-to-year-2014-supply-in-loss" | "height-to-illiquid-realized-cap" | "height-to-up-to-10y-80p-price-paid" | "height-to-from-1y-realized-price" | "height-to-year-2019-realized-price-99p" | "height-to-up-to-10y-realized-price-99-5p" | "height-to-up-to-1y-80p-price-paid" | "height-to-from-2y-net-unrealized-profit-and-loss" | "height-to-from-5y-to-7y-realized-price" | "height-to-market-price-to-plankton-realized-price-ratio-1p" | "height-to-megalodon-unrealized-profit" | "height-to-net-unrealized-profit-and-loss" | "height-to-p2tr-cumulative-realized-loss" | "height-to-from-3m-to-6m-25p-price-paid" | "height-to-from-10y-30p-price-paid" | "height-to-year-2009-input-volume" | "height-to-market-price-to-year-2021-realized-price-ratio-0-5p" | "height-to-cointime-value-stored" | "height-to-from-6m-to-1y-85p-price-paid" | "height-to-market-price-to-megalodon-realized-price-ratio-99-9p" | "height-to-cointime-price-99-9p" | "height-to-from-5y-to-7y-supply-in-loss" | "height-to-market-price-to-price-13d-sma-ratio-99-9p" | "height-to-market-price-to-up-to-3m-realized-price-ratio-1m-sma" | "height-to-up-to-1d-realized-price-99-5p" | "height-to-from-3m-to-6m-realized-price" | "height-to-illiquid-40p-price-paid" | "height-to-market-price-to-price-55d-sma-ratio-99p" | "height-to-up-to-1m-realized-cap-1m-net-change" | "height-to-year-2023-unrealized-loss" | "height-to-from-10y-to-15y-75p-price-paid" | "height-to-up-to-3m-35p-price-paid" | "height-to-market-price-to-from-1d-to-1w-realized-price-ratio-0-1p" | "height-to-p2wpkh-cumulative-realized-profit" | "height-to-market-price-to-shrimp-realized-price-ratio-1p" | "height-to-market-price-to-up-to-7y-realized-price-ratio-0-5p" | "height-to-from-1w-to-1m-input-volume" | "height-to-year-2011-45p-price-paid" | "height-to-cumulative-subsidy" | "height-to-year-2019-realized-loss" | "height-to-p2pkh-realized-price" | "height-to-market-price-to-price-34d-sma-ratio-1m-sma" | "height-to-market-price-to-from-7y-to-10y-realized-price-ratio-0-1p" | "height-to-year-2017-supply-in-profit" | "height-to-year-2014-unrealized-profit" | "height-to-from-2y-realized-price" | "height-to-market-price-to-from-1m-to-3m-realized-price-ratio-0-1p" | "height-to-year-2023-net-unrealized-profit-and-loss" | "height-to-from-1w-to-1m-realized-cap-1m-net-change" | "height-to-p2wpkh-realized-profit" | "height-to-year-2013-negative-realized-loss" | "height-to-market-price-to-from-4y-realized-price-ratio" | "height-to-p2pkh-15p-price-paid" | "height-to-up-to-2m-70p-price-paid" | "height-to-megalodon-realized-cap-1m-net-change" | "height-to-market-price-to-from-2y-realized-price-ratio-99-5p" | "height-to-p2tr-realized-price-99-5p" | "height-to-lth-realized-price" | "height-to-year-2014-80p-price-paid" | "height-to-p2pkh-cumulative-realized-profit" | "height-to-from-15y-realized-price-99p" | "height-to-true-market-net-unrealized-profit-and-loss" | "height-to-from-15y-15p-price-paid" | "height-to-crab-supply-in-loss-to-circulating-supply-ratio" | "height-to-market-price-to-from-1y-realized-price-ratio-1m-sma" | "height-to-market-price-to-year-2021-realized-price-ratio-1m-sma" | "height-to-p2tr-cumulative-net-realized-profit-and-loss" | "height-to-market-price-to-up-to-3y-realized-price-ratio-1p" | "height-to-up-to-1d-95p-price-paid" | "height-to-market-price-to-from-1y-to-2y-realized-price-ratio-99-5p" | "height-to-from-15y-35p-price-paid" | "height-to-up-to-3y-realized-price-0-1p" | "height-to-market-price-to-active-price-ratio-99-5p" | "height-to-market-price-to-up-to-15y-realized-price-ratio-99p" | "height-to-up-to-6m-cumulative-net-realized-profit-and-loss" | "height-to-p2wsh-30p-price-paid" | "height-to-from-10y-to-15y-realized-price-99-9p" | "height-to-up-to-3y-55p-price-paid" | "height-to-market-price-to-year-2020-realized-price-ratio-1m-sma" | "height-to-up-to-5y-supply-in-profit-to-own-supply-ratio" | "height-to-year-2020-realized-price-0-5p" | "height-to-market-price-to-vaulted-price-ratio-1w-sma" | "height-to-year-2021-supply-in-loss" | "height-to-humpback-spent-output-profit-ratio" | "height-to-year-2019-supply-in-loss" | "height-to-from-3m-to-6m-net-unrealized-profit-and-loss-to-market-cap-ratio" | "height-to-from-4y-spent-output-profit-ratio" | "height-to-megalodon-15p-price-paid" | "height-to-year-2009-net-realized-profit-and-loss" | "height-to-year-2020-05p-price-paid" | "height-to-60p-price-paid" | "height-to-p2pk-realized-value" | "height-to-p2tr-negative-realized-loss" | "height-to-market-price-to-up-to-7y-realized-price-ratio-1p" | "height-to-up-to-5m-supply-in-profit" | "height-to-year-2014-realized-price-99-9p" | "height-to-from-3m-to-6m-realized-price-99-9p" | "height-to-plankton-15p-price-paid" | "height-to-65p-price-paid" | "height-to-market-price-to-cointime-price-ratio-99p" | "height-to-crab-spent-output-profit-ratio" | "height-to-p2pk-realized-profit" | "height-to-sth-input-volume" | "height-to-up-to-5m-halved-supply" | "height-to-year-2010-realized-cap" | "height-to-illiquid-input-count" | "height-to-year-2018-net-realized-profit-and-loss" | "height-to-year-2020-supply-in-profit-to-own-supply-ratio" | "height-to-p2wpkh-realized-price-0-1p" | "height-to-fish-55p-price-paid" | "height-to-up-to-1m-20p-price-paid" | "height-to-up-to-1w-supply-in-loss-to-own-supply-ratio" | "height-to-year-2024-10p-price-paid" | "height-to-from-3y-to-5y-60p-price-paid" | "height-to-illiquid-realized-profit" | "height-to-price-89d-sma" | "height-to-from-1y-to-2y-realized-price-0-1p" | "height-to-up-to-1d-85p-price-paid" | "height-to-up-to-2y-05p-price-paid" | "height-to-year-2023-halved-supply" | "height-to-market-price-to-from-4y-realized-price-ratio-99p" | "height-to-from-6m-to-1y-70p-price-paid" | "height-to-market-price-to-up-to-1w-realized-price-ratio-1y-sma-momentum-oscillator" | "height-to-up-to-3m-30p-price-paid" | "height-to-from-1y-to-2y-realized-loss" | "height-to-up-to-3y-cumulative-net-realized-profit-and-loss-1m-net-change" | "height-to-market-price-to-year-2014-realized-price-ratio-1m-sma" | "height-to-year-2019-65p-price-paid" | "height-to-p2sh-net-realized-profit-and-loss-to-market-cap-ratio" | "height-to-year-2020-realized-price-0-1p" | "height-to-year-2018-halved-supply" | "height-to-up-to-5y-realized-price-99p" | "height-to-year-2024-cumulative-realized-profit" | "height-to-crab-input-count" | "height-to-year-2019-supply-in-profit" | "height-to-from-6m-to-1y-35p-price-paid" | "height-to-from-5y-to-7y-90p-price-paid" | "height-to-market-price-to-sth-realized-price-ratio-1w-sma" | "height-to-highly-liquid-net-realized-profit-and-loss-to-market-cap-ratio" | "height-to-shrimp-unrealized-profit" | "height-to-highly-liquid-realized-price-99-5p" | "height-to-up-to-1d-20p-price-paid" | "height-to-year-2018-realized-price" | "height-to-year-2010-85p-price-paid" | "height-to-year-2022-realized-price-0-1p" | "height-to-market-price-to-year-2010-realized-price-ratio-1y-sma-momentum-oscillator" | "height-to-from-1y-realized-price-1p" | "height-to-from-2y-to-3y-net-unrealized-profit-and-loss-to-market-cap-ratio" | "height-to-up-to-2y-95p-price-paid" | "height-to-whale-40p-price-paid" | "height-to-year-2019-input-volume" | "height-to-plankton-supply-in-profit-to-own-supply-ratio" | "height-to-year-2014-cumulative-net-realized-profit-and-loss" | "height-to-year-2019-25p-price-paid" | "height-to-from-3m-to-6m-realized-cap-1m-net-change" | "height-to-year-2014-negative-unrealized-loss" | "height-to-p2pkh-20p-price-paid" | "height-to-market-price-to-year-2023-realized-price-ratio-1y-sma-momentum-oscillator" | "height-to-illiquid-95p-price-paid" | "height-to-investor-cap" | "height-to-year-2017-supply" | "height-to-price-144d-sma-0-1p" | "height-to-up-to-3y-realized-price-0-5p" | "height-to-up-to-3y-median-price-paid" | "height-to-up-to-4m-negative-realized-loss" | "height-to-from-1d-to-1w-95p-price-paid" | "height-to-shrimp-35p-price-paid" | "height-to-up-to-4m-halved-supply-to-circulating-supply-ratio" | "height-to-year-2018-supply-in-loss-to-own-supply-ratio" | "height-to-year-2020-realized-profit" | "height-to-p2pkh-realized-profit" | "height-to-shark-realized-price-0-5p" | "height-to-from-10y-realized-cap-1m-net-change" | "height-to-sth-realized-value" | "height-to-year-2018-90p-price-paid" | "height-to-from-6m-to-1y-55p-price-paid" | "height-to-from-7y-to-10y-cumulative-realized-loss" | "height-to-market-price-to-up-to-1m-realized-price-ratio-0-5p" | "height-to-p2pkh-realized-price-0-5p" | "height-to-year-2014-supply-to-circulating-supply-ratio" | "height-to-55p-price-paid" | "height-to-from-3y-to-5y-85p-price-paid" | "height-to-market-price-to-p2wsh-realized-price-ratio-1y-sma" | "height-to-p2sh-net-unrealized-profit-and-loss-to-market-cap-ratio" | "height-to-p2tr-05p-price-paid" | "height-to-market-price-to-price-55d-sma-ratio" | "height-to-year-2013-supply-in-loss" | "height-to-p2pk-realized-loss" | "height-to-p2sh-unrealized-profit" | "height-to-sth-supply-to-circulating-supply-ratio" | "height-to-from-2y-to-3y-net-unrealized-profit-and-loss" | "height-to-market-price-to-realized-price-ratio-0-1p" | "height-to-market-price-to-price-21d-sma-ratio-0-5p" | "height-to-humpback-70p-price-paid" | "height-to-vaulted-price-0-5p" | "height-to-market-price-to-year-2013-realized-price-ratio-1y-sma" | "height-to-shark-realized-cap-1m-net-change" | "height-to-from-1d-to-1w-realized-loss" | "height-to-price-1y-sma-0-1p" | "height-to-market-price-to-humpback-realized-price-ratio-1y-sma-momentum-oscillator" | "height-to-up-to-1y-70p-price-paid" | "height-to-year-2014-halved-supply" | "height-to-year-2010-realized-loss" | "height-to-from-4y-35p-price-paid" | "height-to-p2wpkh-65p-price-paid" | "height-to-market-price-to-year-2019-realized-price-ratio-1y-sma" | "height-to-from-1m-to-3m-supply-to-circulating-supply-ratio" | "height-to-market-price-to-up-to-1d-realized-price-ratio-1m-sma" | "height-to-from-2y-to-3y-halved-supply" | "height-to-from-1y-to-2y-65p-price-paid" | "height-to-up-to-10y-realized-cap-1m-net-change" | "height-to-up-to-4m-75p-price-paid" | "height-to-year-2023-realized-loss" | "height-to-transaction-velocity" | "height-to-from-1y-realized-price-0-1p" | "height-to-up-to-3y-unrealized-profit" | "height-to-p2pk-value-created" | "height-to-p2wpkh-halved-supply" | "height-to-highly-liquid-realized-price" | "height-to-year-2016-realized-profit" | "height-to-up-to-3m-realized-cap-1m-net-change" | "height-to-market-price-to-realized-price-ratio-1y-sma" | "height-to-whale-input-count" | "height-to-year-2024-realized-value" | "height-to-p2wpkh-value-created" | "height-to-from-15y-realized-price" | "height-to-from-1y-to-2y-input-count" | "height-to-sth-negative-unrealized-loss" | "height-to-year-2022-net-unrealized-profit-and-loss" | "height-to-year-2012-realized-cap" | "height-to-market-price-to-fish-realized-price-ratio-1p" | "height-to-lth-halved-supply" | "height-to-up-to-3m-realized-price-0-1p" | "height-to-market-price-to-humpback-realized-price-ratio-1w-sma" | "height-to-year-2012-80p-price-paid" | "height-to-from-6m-to-1y-supply-to-circulating-supply-ratio" | "height-to-market-price-to-price-1w-sma-ratio-1y-sma" | "height-to-up-to-6m-realized-cap-1m-net-change" | "height-to-market-price-to-from-10y-realized-price-ratio-1y-sma-momentum-oscillator" | "height-to-from-10y-input-count" | "height-to-illiquid-supply-in-loss-to-circulating-supply-ratio" | "height-to-shark-realized-price-1p" | "height-to-market-price-to-price-4y-sma-ratio-1y-sma" | "height-to-year-2023-45p-price-paid" | "height-to-from-2y-to-3y-realized-price-0-5p" | "height-to-from-2y-to-3y-realized-price" | "height-to-up-to-1m-realized-loss" | "height-to-from-6m-to-1y-negative-realized-loss" | "height-to-lth-spent-output-profit-ratio" | "height-to-market-price-to-year-2017-realized-price-ratio-1y-sma-momentum-oscillator" | "height-to-up-to-7y-realized-price" | "height-to-shark-supply-in-loss-to-circulating-supply-ratio" | "height-to-year-2012-unrealized-profit" | "height-to-year-2024-input-count" | "height-to-up-to-6m-95p-price-paid" | "height-to-up-to-1d-input-count" | "height-to-from-10y-spent-output-profit-ratio" | "height-to-year-2011-cumulative-realized-loss" | "height-to-year-2014-realized-price-99-5p" | "height-to-p2tr-net-realized-profit-and-loss-to-market-cap-ratio" | "height-to-up-to-3y-supply-in-loss-to-circulating-supply-ratio" | "height-to-realized-price" | "height-to-from-3m-to-6m-supply-in-loss" | "height-to-input-count" | "height-to-up-to-7y-80p-price-paid" | "height-to-up-to-1w-cumulative-realized-loss" | "height-to-year-2018-median-price-paid" | "height-to-crab-cumulative-realized-loss" | "height-to-from-15y-utxo-count" | "height-to-from-2y-70p-price-paid" | "height-to-market-price-to-price-144d-sma-ratio-99p" | "height-to-year-2010-realized-price-99-5p" | "height-to-year-2009-halved-supply" | "height-to-80p-price-paid" | "height-to-market-price-to-up-to-10y-realized-price-ratio" | "height-to-up-to-5y-supply-in-profit-to-circulating-supply-ratio" | "height-to-from-1y-to-2y-input-volume" | "height-to-up-to-4m-cumulative-net-realized-profit-and-loss-1m-net-change" | "height-to-vaulted-price-99p" | "height-to-from-1y-to-2y-75p-price-paid" | "height-to-from-7y-to-10y-halved-supply-to-circulating-supply-ratio" | "height-to-market-price-to-price-21d-sma-ratio-1y-sma" | "height-to-humpback-address-count" | "height-to-year-2015-90p-price-paid" | "height-to-block-size" | "height-to-market-price-to-liquid-realized-price-ratio-1p" | "height-to-market-price-to-p2wsh-realized-price-ratio-1w-sma" | "height-to-price-2y-sma-0-5p" | "height-to-market-price-to-year-2011-realized-price-ratio-1y-sma-momentum-oscillator" | "height-to-year-2009-realized-cap" | "height-to-from-6m-to-1y-negative-unrealized-loss" | "height-to-up-to-2m-supply" | "height-to-market-price-to-from-1y-to-2y-realized-price-ratio-99-9p" | "height-to-market-price-to-from-3m-to-6m-realized-price-ratio-0-1p" | "height-to-shark-unrealized-profit" | "height-to-year-2017-35p-price-paid" | "height-to-from-4y-supply-in-loss" | "height-to-transaction-volume-1w-sma" | "height-to-market-price-to-from-2y-to-3y-realized-price-ratio-99p" | "height-to-price-200w-sma-1p" | "height-to-up-to-7y-supply" | "height-to-from-1w-to-1m-net-realized-profit-and-loss" | "height-to-from-2y-supply-in-profit-to-circulating-supply-ratio" | "height-to-sth-net-realized-profit-and-loss" | "height-to-p2pkh-halved-supply-to-circulating-supply-ratio" | "height-to-fish-unrealized-profit" | "height-to-from-1y-cumulative-net-realized-profit-and-loss-1m-net-change" | "height-to-from-1y-to-2y-supply-in-profit-to-own-supply-ratio" | "height-to-up-to-1y-20p-price-paid" | "height-to-up-to-1w-realized-price-1p" | "height-to-up-to-2y-supply-in-loss" | "height-to-year-2022-realized-profit" | "height-to-year-2024-net-unrealized-profit-and-loss" | "height-to-year-2013-realized-price-1p" | "height-to-crab-halved-supply-to-circulating-supply-ratio" | "height-to-megalodon-cumulative-realized-loss" | "height-to-up-to-3y-input-count" | "height-to-market-price-to-from-15y-realized-price-ratio-1y-sma" | "height-to-from-1w-to-1m-85p-price-paid" | "height-to-from-10y-to-15y-net-unrealized-profit-and-loss" | "height-to-market-price-to-highly-liquid-realized-price-ratio-1y-sma" | "height-to-up-to-5m-55p-price-paid" | "height-to-supply-in-loss-to-circulating-supply-ratio" | "height-to-from-1w-to-1m-cumulative-realized-loss" | "height-to-cumulative-net-realized-profit-and-loss-1m-net-change" | "height-to-from-2y-input-volume" | "height-to-from-6m-to-1y-80p-price-paid" | "height-to-market-price-to-whale-realized-price-ratio-1w-sma" | "height-to-up-to-1y-realized-cap" | "height-to-up-to-5m-realized-price-0-1p" | "height-to-megalodon-95p-price-paid" | "height-to-megalodon-realized-price-99-5p" | "height-to-market-price-to-up-to-7y-realized-price-ratio" | "height-to-plankton-cumulative-realized-profit" | "height-to-year-2017-net-realized-profit-and-loss-to-market-cap-ratio" | "height-to-market-price-to-true-market-mean-ratio-99-9p" | "height-to-year-2021-cumulative-realized-profit" | "height-to-price-144d-sma-99-9p" | "height-to-up-to-10y-35p-price-paid" | "height-to-year-2015-input-volume" | "height-to-up-to-10y-supply-in-loss-to-circulating-supply-ratio" | "height-to-year-2020-median-price-paid" | "height-to-year-2023-input-count" | "height-to-85p-price-paid" | "height-to-from-3y-to-5y-input-count" | "height-to-p2pk-input-count" | "height-to-liquid-realized-price" | "height-to-from-15y-spent-output-profit-ratio" | "height-to-from-1y-realized-price-0-5p" | "height-to-year-2018-cumulative-net-realized-profit-and-loss-1m-net-change" | "height-to-market-price-to-up-to-1m-realized-price-ratio-99-5p" | "height-to-up-to-1d-65p-price-paid" | "height-to-year-2023-realized-price-99-5p" | "height-to-coinblocks-stored" | "height-to-market-price-to-realized-price-ratio-1p" | "height-to-year-2011-supply-in-profit-to-own-supply-ratio" | "height-to-from-1w-to-1m-10p-price-paid" | "height-to-up-to-1y-55p-price-paid" | "height-to-from-4y-cumulative-realized-profit" | "height-to-year-2018-15p-price-paid" | "height-to-year-2021-realized-cap" | "height-to-up-to-2m-net-realized-profit-and-loss" | "height-to-year-2024-negative-unrealized-loss" | "height-to-sth-30p-price-paid" | "height-to-market-price-to-year-2012-realized-price-ratio-1p" | "height-to-from-7y-to-10y-net-realized-profit-and-loss" | "height-to-coindays-destroyed" | "height-to-year-2017-halved-supply" | "height-to-market-price-to-from-5y-to-7y-realized-price-ratio-1y-sma" | "height-to-from-1d-to-1w-cumulative-realized-loss" | "height-to-up-to-1d-80p-price-paid" | "height-to-up-to-1w-net-realized-profit-and-loss-to-market-cap-ratio" | "height-to-up-to-10y-15p-price-paid" | "height-to-megalodon-65p-price-paid" | "height-to-up-to-5m-70p-price-paid" | "height-to-price-1w-sma-99-9p" | "height-to-from-1y-40p-price-paid" | "height-to-price-2y-sma-1p" | "height-to-up-to-7y-realized-price-0-1p" | "height-to-from-15y-realized-loss" | "height-to-up-to-1y-utxo-count" | "height-to-from-4y-75p-price-paid" | "height-to-liquid-halved-supply" | "height-to-market-price-to-vaulted-price-ratio-99-9p" | "height-to-market-price-to-year-2024-realized-price-ratio-1p" | "height-to-year-2012-supply-in-loss-to-circulating-supply-ratio" | "height-to-from-3m-to-6m-realized-price-99-5p" | "height-to-liquid-unrealized-profit" | "height-to-p2wsh-90p-price-paid" | "height-to-lth-10p-price-paid" | "height-to-up-to-3y-spent-output-profit-ratio" | "height-to-from-1y-to-2y-70p-price-paid" | "height-to-from-6m-to-1y-realized-cap-1m-net-change" | "height-to-p2wpkh-45p-price-paid" | "height-to-highly-liquid-net-unrealized-profit-and-loss-to-market-cap-ratio" | "height-to-true-market-mean-99-5p" | "height-to-from-3y-to-5y-75p-price-paid" | "height-to-from-7y-to-10y-70p-price-paid" | "height-to-market-price-to-p2wpkh-realized-price-ratio-0-5p" | "height-to-crab-05p-price-paid" | "height-to-shark-75p-price-paid" | "height-to-year-2010-75p-price-paid" | "height-to-p2sh-input-volume" | "height-to-up-to-15y-realized-value" | "height-to-from-10y-to-15y-70p-price-paid" | "height-to-price-1y-sma-99-9p" | "height-to-year-2015-unrealized-loss" | "height-to-market-price-to-up-to-10y-realized-price-ratio-99p" | "height-to-market-price-to-price-1w-sma-ratio-1y-sma-momentum-oscillator" | "height-to-megalodon-net-unrealized-profit-and-loss-to-market-cap-ratio" | "height-to-whale-value-destroyed" | "height-to-year-2019-90p-price-paid" | "height-to-plankton-90p-price-paid" | "height-to-year-2023-20p-price-paid" | "height-to-p2pk-45p-price-paid" | "height-to-illiquid-realized-cap-1m-net-change" | "height-to-from-4y-supply-to-circulating-supply-ratio" | "height-to-up-to-2m-supply-in-profit" | "height-to-fish-15p-price-paid" | "height-to-from-1y-85p-price-paid" | "height-to-from-3y-to-5y-realized-value" | "height-to-market-price-to-p2pk-realized-price-ratio-1m-sma" | "height-to-p2wsh-10p-price-paid" | "height-to-year-2018-65p-price-paid" | "height-to-from-1m-to-3m-realized-price-99p" | "height-to-year-2014-60p-price-paid" | "height-to-from-2y-30p-price-paid" | "height-to-market-price-to-from-2y-to-3y-realized-price-ratio-1m-sma" | "height-to-from-4y-utxo-count" | "height-to-highly-liquid-realized-price-0-5p" | "height-to-lth-30p-price-paid" | "height-to-whale-net-unrealized-profit-and-loss" | "height-to-year-2014-10p-price-paid" | "height-to-p2wsh-60p-price-paid" | "height-to-market-price-to-from-1w-to-1m-realized-price-ratio-1p" | "height-to-year-2011-unrealized-loss" | "height-to-highly-liquid-90p-price-paid" | "height-to-market-price-to-from-1d-to-1w-realized-price-ratio-1y-sma-momentum-oscillator" | "height-to-up-to-3m-halved-supply-to-circulating-supply-ratio" | "height-to-year-2017-net-unrealized-profit-and-loss" | "height-to-true-market-deviation" | "height-to-price-1y-sma-99-5p" | "height-to-up-to-15y-halved-supply" | "height-to-year-2016-80p-price-paid" | "height-to-from-4y-value-destroyed" | "height-to-p2pkh-supply-in-loss" | "height-to-crab-realized-price-0-5p" | "height-to-market-price-to-up-to-2m-realized-price-ratio-0-5p" | "height-to-up-to-15y-value-destroyed" | "height-to-from-15y-net-unrealized-profit-and-loss-to-market-cap-ratio" | "height-to-from-15y-cumulative-net-realized-profit-and-loss" | "height-to-p2pk-realized-price-99-9p" | "height-to-year-2021-25p-price-paid" | "height-to-year-2016-supply-in-profit-to-circulating-supply-ratio" | "height-to-market-price-to-year-2021-realized-price-ratio-1y-sma" | "height-to-p2pk-90p-price-paid" | "height-to-year-2011-85p-price-paid" | "height-to-up-to-6m-10p-price-paid" | "height-to-from-5y-to-7y-realized-value" | "height-to-from-4y-input-count" | "height-to-sth-15p-price-paid" | "height-to-from-10y-to-15y-input-count" | "height-to-from-15y-negative-realized-loss" | "height-to-from-2y-to-3y-supply-in-loss-to-circulating-supply-ratio" | "height-to-year-2014-cumulative-realized-loss" | "height-to-year-2016-45p-price-paid" | "height-to-market-price-to-up-to-7y-realized-price-ratio-1w-sma" | "height-to-up-to-6m-utxo-count" | "height-to-whale-cumulative-realized-loss" | "height-to-from-6m-to-1y-realized-price-0-5p" | "height-to-thermo-cap-to-investor-cap-ratio" | "height-to-from-3m-to-6m-70p-price-paid" | "height-to-up-to-15y-realized-price-99-5p" | "height-to-liquid-realized-price-1p" | "height-to-market-price-to-up-to-1m-realized-price-ratio-1w-sma" | "height-to-vaulted-price" | "height-to-crab-realized-price-99-5p" | "height-to-year-2023-supply-in-profit-to-circulating-supply-ratio" | "height-to-up-to-3y-value-created" | "height-to-whale-realized-price" | "height-to-plankton-net-unrealized-profit-and-loss-to-market-cap-ratio" | "height-to-year-2010-value-destroyed" | "height-to-realized-value" | "height-to-up-to-7y-cumulative-realized-loss" | "height-to-up-to-6m-supply-in-loss-to-own-supply-ratio" | "height-to-market-price-to-up-to-1y-realized-price-ratio-0-5p" | "height-to-up-to-1m-75p-price-paid" | "height-to-market-price-to-up-to-5m-realized-price-ratio-1y-sma-momentum-oscillator" | "height-to-from-5y-to-7y-value-created" | "height-to-megalodon-input-volume" | "height-to-up-to-1y-35p-price-paid" | "height-to-from-1w-to-1m-supply-in-loss" | "height-to-p2wsh-realized-price-99-5p" | "height-to-year-2016-40p-price-paid" | "height-to-year-2021-realized-price-1p" | "height-to-market-price-to-up-to-5y-realized-price-ratio-1y-sma" | "height-to-shark-45p-price-paid" | "height-to-year-2020-supply-to-circulating-supply-ratio" | "height-to-p2wsh-45p-price-paid" | "height-to-year-2022-realized-value" | "height-to-from-10y-to-15y-supply-in-loss-to-circulating-supply-ratio" | "height-to-from-4y-realized-price" | "height-to-lth-median-price-paid" | "height-to-market-price-to-up-to-5m-realized-price-ratio-99-5p" | "height-to-plankton-halved-supply" | "height-to-year-2015-unrealized-profit" | "height-to-illiquid-30p-price-paid" | "height-to-megalodon-40p-price-paid" | "height-to-year-2013-value-created" | "height-to-year-2009-supply-in-profit-to-circulating-supply-ratio" | "height-to-fish-halved-supply" | "height-to-year-2016-realized-value" | "height-to-shark-negative-unrealized-loss" | "height-to-megalodon-realized-loss" | "height-to-year-2011-realized-price-1p" | "height-to-sth-negative-realized-loss" | "height-to-from-1d-to-1w-supply-in-profit-to-circulating-supply-ratio" | "height-to-whale-35p-price-paid" | "height-to-from-6m-to-1y-20p-price-paid" | "height-to-market-price-to-active-price-ratio-1w-sma" | "height-to-market-price-to-from-3y-to-5y-realized-price-ratio-99p" | "height-to-plankton-supply-in-loss-to-circulating-supply-ratio" | "height-to-year-2010-realized-price-0-1p" | "height-to-market-price-to-p2pkh-realized-price-ratio-1y-sma-momentum-oscillator" | "height-to-year-2020-realized-price-1p" | "height-to-market-price-to-up-to-1y-realized-price-ratio-1y-sma-momentum-oscillator" | "height-to-market-price-to-sth-realized-price-ratio-99-9p" | "height-to-market-price-to-year-2014-realized-price-ratio" | "height-to-market-price-to-year-2018-realized-price-ratio-1m-sma" | "height-to-year-2012-net-unrealized-profit-and-loss" | "height-to-up-to-5y-realized-value" | "height-to-from-7y-to-10y-85p-price-paid" | "height-to-year-2014-realized-price" | "height-to-from-2y-60p-price-paid" | "height-to-market-price-to-year-2012-realized-price-ratio-0-5p" | "height-to-from-3m-to-6m-net-realized-profit-and-loss" | "height-to-market-price-to-price-200w-sma-ratio-99-5p" | "height-to-market-price-to-humpback-realized-price-ratio-1m-sma" | "height-to-from-10y-realized-cap" | "height-to-market-price-to-from-1y-realized-price-ratio-99p" | "height-to-up-to-1w-90p-price-paid" | "height-to-up-to-5y-realized-loss" | "height-to-year-2022-negative-unrealized-loss" | "height-to-year-2017-30p-price-paid" | "height-to-from-3m-to-6m-supply" | "height-to-market-price-to-from-15y-realized-price-ratio" | "height-to-year-2020-supply-in-profit-to-circulating-supply-ratio" | "height-to-year-2018-cumulative-realized-profit" | "height-to-unrealized-loss" | "height-to-from-3y-to-5y-supply-in-loss-to-own-supply-ratio" | "height-to-year-2019-realized-price-99-5p" | "height-to-year-2023-negative-unrealized-loss" | "height-to-market-price-to-up-to-1m-realized-price-ratio-99p" | "height-to-cointime-price-99p" | "height-to-year-2024-negative-realized-loss" | "height-to-humpback-60p-price-paid" | "height-to-from-7y-to-10y-realized-price-1p" | "height-to-humpback-net-unrealized-profit-and-loss-to-market-cap-ratio" | "height-to-from-1m-to-3m-realized-price-99-5p" | "height-to-market-price-to-from-6m-to-1y-realized-price-ratio-1p" | "height-to-market-price-to-true-market-mean-ratio-1w-sma" | "height-to-up-to-5y-25p-price-paid" | "height-to-p2pkh-unrealized-profit" | "height-to-market-price-to-year-2018-realized-price-ratio-0-5p" | "height-to-up-to-3m-supply-in-profit" | "height-to-year-2015-spent-output-profit-ratio" | "height-to-from-1w-to-1m-95p-price-paid" | "height-to-plankton-realized-price-99p" | "height-to-year-2023-35p-price-paid" | "height-to-market-price-to-lth-realized-price-ratio-99-9p" | "height-to-from-3m-to-6m-utxo-count" | "height-to-year-2012-cumulative-realized-profit" | "height-to-year-2018-halved-supply-to-circulating-supply-ratio" | "height-to-from-6m-to-1y-cumulative-net-realized-profit-and-loss-1m-net-change" | "height-to-year-2023-supply-to-circulating-supply-ratio" | "height-to-up-to-7y-realized-loss" | "height-to-market-price-to-sth-realized-price-ratio-1y-sma-momentum-oscillator" | "height-to-up-to-15y-realized-price-0-5p" | "height-to-price-4y-sma-0-5p" | "height-to-from-10y-to-15y-cumulative-realized-loss" | "height-to-year-2016-30p-price-paid" | "height-to-from-1w-to-1m-net-unrealized-profit-and-loss-to-market-cap-ratio" | "height-to-year-2018-realized-loss" | "height-to-p2wpkh-negative-realized-loss" | "height-to-market-price-to-from-2y-to-3y-realized-price-ratio" | "height-to-market-price-to-from-10y-to-15y-realized-price-ratio-1y-sma" | "height-to-up-to-1d-halved-supply-to-circulating-supply-ratio" | "height-to-p2sh-10p-price-paid" | "height-to-market-price-to-up-to-1y-realized-price-ratio-99p" | "height-to-year-2011-40p-price-paid" | "height-to-up-to-6m-realized-value" | "height-to-up-to-10y-value-destroyed" | "height-to-year-2015-35p-price-paid" | "height-to-year-2023-net-realized-profit-and-loss-to-market-cap-ratio" | "height-to-fish-realized-loss" | "height-to-year-2015-realized-profit" | "height-to-from-4y-95p-price-paid" | "height-to-from-1d-to-1w-supply-to-circulating-supply-ratio" | "height-to-year-2017-realized-price-0-5p" | "height-to-up-to-1m-median-price-paid" | "height-to-up-to-1y-75p-price-paid" | "height-to-up-to-4m-cumulative-net-realized-profit-and-loss" | "height-to-lth-supply-in-profit-to-own-supply-ratio" | "height-to-illiquid-value-destroyed" | "height-to-shark-supply-in-loss" | "height-to-up-to-6m-spent-output-profit-ratio" | "height-to-year-2017-20p-price-paid" | "height-to-year-2016-input-volume" | "height-to-year-2017-input-volume" | "height-to-megalodon-supply" | "height-to-shark-85p-price-paid" | "height-to-from-7y-to-10y-negative-realized-loss" | "height-to-market-price-to-from-1y-realized-price-ratio-0-1p" | "height-to-market-price-to-from-1w-to-1m-realized-price-ratio-1y-sma" | "height-to-p2tr-unrealized-loss" | "height-to-up-to-7y-realized-price-1p" | "height-to-year-2010-negative-unrealized-loss" | "height-to-from-4y-unrealized-loss" | "height-to-from-5y-to-7y-spent-output-profit-ratio" | "height-to-year-2013-supply-in-profit-to-circulating-supply-ratio" | "height-to-true-market-mean-0-1p" | "height-to-from-1m-to-3m-supply-in-loss-to-circulating-supply-ratio" | "height-to-p2wsh-supply-in-profit-to-circulating-supply-ratio" | "height-to-from-3m-to-6m-value-destroyed" | "height-to-year-2011-realized-cap" | "height-to-20p-price-paid" | "height-to-from-3m-to-6m-halved-supply" | "height-to-from-5y-to-7y-input-volume" | "height-to-up-to-4m-realized-price-99-9p" | "height-to-up-to-6m-25p-price-paid" | "height-to-from-10y-75p-price-paid" | "height-to-highly-liquid-45p-price-paid" | "height-to-whale-realized-cap-1m-net-change" | "height-to-year-2009-net-unrealized-profit-and-loss" | "height-to-liquid-supply-in-profit-to-own-supply-ratio" | "height-to-from-15y-halved-supply" | "height-to-from-1y-to-2y-spent-output-profit-ratio" | "height-to-from-6m-to-1y-net-realized-profit-and-loss" | "height-to-megalodon-55p-price-paid" | "height-to-up-to-3m-supply-in-loss-to-own-supply-ratio" | "height-to-market-price-to-year-2016-realized-price-ratio-0-1p" | "height-to-up-to-10y-value-created" | "height-to-market-price-to-liquid-realized-price-ratio-1m-sma" | "height-to-megalodon-utxo-count" | "height-to-p2wpkh-30p-price-paid" | "height-to-up-to-1w-40p-price-paid" | "height-to-market-price-to-year-2012-realized-price-ratio-99-9p" | "height-to-market-price-to-up-to-5m-realized-price-ratio-1p" | "height-to-sth-halved-supply-to-circulating-supply-ratio" | "height-to-from-2y-to-3y-95p-price-paid" | "height-to-p2tr-60p-price-paid" | "height-to-price-2y-sma" | "height-to-from-2y-to-3y-25p-price-paid" | "height-to-from-4y-net-unrealized-profit-and-loss" | "height-to-up-to-10y-supply-in-loss-to-own-supply-ratio" | "height-to-market-price-to-liquid-realized-price-ratio-99p" | "height-to-year-2018-10p-price-paid" | "height-to-from-1w-to-1m-realized-price-99-5p" | "height-to-highly-liquid-negative-realized-loss" | "height-to-humpback-95p-price-paid" | "height-to-liquid-65p-price-paid" | "height-to-market-price-to-year-2019-realized-price-ratio-99p" | "height-to-up-to-5m-80p-price-paid" | "height-to-from-1d-to-1w-unrealized-loss" | "height-to-from-6m-to-1y-realized-value" | "height-to-from-4y-realized-profit" | "height-to-market-price-to-up-to-2y-realized-price-ratio-1y-sma" | "height-to-up-to-2m-net-unrealized-profit-and-loss" | "height-to-year-2020-10p-price-paid" | "height-to-up-to-5y-realized-price-99-9p" | "height-to-market-price-to-up-to-2y-realized-price-ratio-0-5p" | "height-to-year-2009-60p-price-paid" | "height-to-market-price-to-year-2017-realized-price-ratio-1m-sma" | "height-to-up-to-1d-25p-price-paid" | "height-to-year-2010-halved-supply" | "height-to-from-10y-to-15y-unrealized-profit" | "height-to-up-to-1y-65p-price-paid" | "height-to-megalodon-30p-price-paid" | "height-to-supply-in-profit-to-circulating-supply-ratio" | "height-to-market-price-to-vaulted-price-ratio-99-5p" | "height-to-up-to-3y-65p-price-paid" | "height-to-from-15y-realized-value" | "height-to-year-2024-realized-loss" | "height-to-lth-unrealized-profit" | "height-to-from-10y-realized-price-99p" | "height-to-lth-80p-price-paid" | "height-to-p2pkh-30p-price-paid" | "height-to-fish-address-count" | "height-to-market-price-to-p2pkh-realized-price-ratio-0-1p" | "height-to-market-price-to-up-to-1m-realized-price-ratio-1y-sma" | "height-to-shrimp-realized-profit" | "height-to-up-to-5y-negative-realized-loss" | "height-to-from-10y-to-15y-10p-price-paid" | "height-to-from-7y-to-10y-realized-profit" | "height-to-up-to-1d-realized-cap-1m-net-change" | "height-to-sth-35p-price-paid" | "height-to-market-price-to-up-to-3y-realized-price-ratio-1m-sma" | "height-to-year-2011-net-realized-profit-and-loss" | "height-to-plankton-realized-profit" | "height-to-year-2019-45p-price-paid" | "height-to-year-2021-30p-price-paid" | "height-to-up-to-7y-40p-price-paid" | "height-to-market-price-to-year-2013-realized-price-ratio-0-5p" | "height-to-sth-realized-price-99-5p" | "height-to-up-to-1y-spent-output-profit-ratio" | "height-to-up-to-2m-45p-price-paid" | "height-to-70p-price-paid" | "height-to-from-7y-to-10y-realized-price-99p" | "height-to-up-to-2y-25p-price-paid" | "height-to-market-price-to-price-34d-sma-ratio-99-9p" | "height-to-from-6m-to-1y-90p-price-paid" | "height-to-year-2017-realized-cap-1m-net-change" | "height-to-up-to-3m-60p-price-paid" | "height-to-up-to-3y-realized-cap" | "height-to-year-2021-realized-price-99p" | "height-to-crab-net-realized-profit-and-loss-to-market-cap-ratio" | "height-to-from-10y-realized-price-0-1p" | "height-to-from-10y-to-15y-05p-price-paid" | "height-to-up-to-3m-halved-supply" | "height-to-from-1d-to-1w-10p-price-paid" | "height-to-up-to-1m-supply-in-profit" | "height-to-from-3y-to-5y-halved-supply" | "height-to-from-2y-to-3y-75p-price-paid" | "height-to-from-1d-to-1w-realized-price-0-5p" | "height-to-market-price-to-up-to-3y-realized-price-ratio-0-5p" | "height-to-p2wpkh-80p-price-paid" | "height-to-from-1y-to-2y-net-realized-profit-and-loss-to-market-cap-ratio" | "height-to-from-3y-to-5y-halved-supply-to-circulating-supply-ratio" | "height-to-market-price-to-from-1y-to-2y-realized-price-ratio-1w-sma" | "height-to-market-price-to-up-to-1w-realized-price-ratio-99p" | "height-to-market-price-to-price-2y-sma-ratio-1m-sma" | "height-to-cointime-adjusted-velocity" | "height-to-market-price-to-crab-realized-price-ratio-1w-sma" | "height-to-plankton-median-price-paid" | "height-to-market-price-to-shrimp-realized-price-ratio-1y-sma-momentum-oscillator" | "height-to-from-7y-to-10y-input-count" | "height-to-market-price-to-year-2020-realized-price-ratio-1y-sma-momentum-oscillator" | "height-to-up-to-1m-05p-price-paid" | "height-to-up-to-1y-realized-price-99p" | "height-to-from-3y-to-5y-realized-price-99p" | "height-to-humpback-realized-price-0-1p" | "height-to-p2tr-unrealized-profit" | "height-to-crab-value-destroyed" | "height-to-year-2009-realized-cap-1m-net-change" | "height-to-liquid-10p-price-paid" | "height-to-market-price-to-price-1m-sma-ratio-1m-sma" | "height-to-megalodon-85p-price-paid" | "height-to-market-price-to-year-2016-realized-price-ratio-0-5p" | "height-to-p2wsh-realized-price-99-9p" | "height-to-up-to-5y-net-unrealized-profit-and-loss-to-market-cap-ratio" | "height-to-shark-cumulative-realized-profit" | "height-to-plankton-realized-value" | "height-to-up-to-1y-realized-price-99-5p" | "height-to-from-1d-to-1w-supply-in-profit" | "height-to-fish-halved-supply-to-circulating-supply-ratio" | "height-to-from-1d-to-1w-realized-price-0-1p" | "height-to-up-to-4m-realized-value" | "height-to-illiquid-address-count" | "height-to-market-price-to-up-to-3m-realized-price-ratio-1p" | "height-to-market-price-to-up-to-3y-realized-price-ratio-0-1p" | "height-to-from-1y-value-destroyed" | "height-to-from-5y-to-7y-supply-in-profit" | "height-to-whale-realized-loss" | "height-to-from-3y-to-5y-net-unrealized-profit-and-loss" | "height-to-market-price-to-up-to-3y-realized-price-ratio-99-9p" | "height-to-year-2012-value-destroyed" | "height-to-up-to-1d-realized-price-99p" | "height-to-from-15y-realized-cap-1m-net-change" | "height-to-year-2015-65p-price-paid" | "height-to-liquid-net-unrealized-profit-and-loss-to-market-cap-ratio" | "height-to-year-2020-20p-price-paid" | "height-to-year-2022-input-volume" | "height-to-from-10y-to-15y-35p-price-paid" | "height-to-year-2023-60p-price-paid" | "height-to-up-to-3m-realized-price-1p" | "height-to-year-2009-spent-output-profit-ratio" | "height-to-p2sh-negative-unrealized-loss" | "height-to-investorness" | "height-to-market-price-to-p2pk-realized-price-ratio-1y-sma-momentum-oscillator" | "height-to-market-price-to-up-to-5m-realized-price-ratio-0-1p" | "height-to-year-2020-supply" | "height-to-from-15y-supply-to-circulating-supply-ratio" | "height-to-year-2022-value-created" | "height-to-market-price-to-from-6m-to-1y-realized-price-ratio-0-5p" | "height-to-year-2014-realized-price-0-5p" | "height-to-up-to-3m-input-count" | "height-to-from-15y-realized-price-99-9p" | "height-to-year-2022-halved-supply" | "height-to-p2wpkh-85p-price-paid" | "height-to-year-2019-net-realized-profit-and-loss" | "height-to-humpback-supply-in-loss" | "height-to-up-to-2m-cumulative-net-realized-profit-and-loss-1m-net-change" | "height-to-market-price-to-highly-liquid-realized-price-ratio-1y-sma-momentum-oscillator" | "height-to-liquid-input-volume" | "height-to-market-price-to-from-1d-to-1w-realized-price-ratio-1y-sma" | "height-to-year-2016-supply-in-loss" | "height-to-market-price-to-year-2020-realized-price-ratio-1y-sma" | "height-to-from-5y-to-7y-cumulative-net-realized-profit-and-loss-1m-net-change" | "height-to-market-price-to-year-2009-realized-price-ratio-0-5p" | "height-to-up-to-6m-halved-supply-to-circulating-supply-ratio" | "height-to-year-2010-supply-in-loss" | "height-to-from-10y-to-15y-realized-value" | "height-to-from-1m-to-3m-realized-cap-1m-net-change" | "height-to-p2pkh-cumulative-net-realized-profit-and-loss-1m-net-change" | "height-to-lth-70p-price-paid" | "height-to-market-price-to-up-to-15y-realized-price-ratio-1w-sma" | "height-to-up-to-6m-realized-price-1p" | "height-to-year-2015-supply" | "height-to-market-price-to-price-21d-sma-ratio-1p" | "height-to-from-2y-to-3y-input-count" | "height-to-up-to-1m-35p-price-paid" | "height-to-whale-65p-price-paid" | "height-to-from-3m-to-6m-05p-price-paid" | "height-to-shrimp-realized-price-1p" | "height-to-cumulative-fees" | "height-to-humpback-40p-price-paid" | "height-to-up-to-4m-utxo-count" | "height-to-year-2009-net-realized-profit-and-loss-to-market-cap-ratio" | "height-to-p2wsh-input-count" | "height-to-shrimp-input-count" | "height-to-year-2013-realized-price-99-5p" | "height-to-crab-cumulative-realized-profit" | "height-to-up-to-5y-05p-price-paid" | "height-to-year-2011-realized-cap-1m-net-change" | "height-to-market-price-to-price-4y-sma-ratio-0-5p" | "height-to-from-1y-utxo-count" | "height-to-from-10y-to-15y-realized-profit" | "height-to-from-1y-to-2y-realized-value" | "height-to-market-price-to-year-2020-realized-price-ratio-0-5p" | "height-to-true-market-mean-99p" | "height-to-up-to-10y-negative-realized-loss" | "height-to-market-price-to-year-2019-realized-price-ratio-1p" | "height-to-market-price-to-from-7y-to-10y-realized-price-ratio-1y-sma" | "height-to-p2pkh-supply-to-circulating-supply-ratio" | "height-to-year-2011-negative-unrealized-loss" | "height-to-up-to-6m-90p-price-paid" | "height-to-from-1y-to-2y-realized-price-0-5p" | "height-to-up-to-1w-net-unrealized-profit-and-loss" | "height-to-year-2022-input-count" | "height-to-market-price-to-humpback-realized-price-ratio-99-5p" | "height-to-market-price-to-year-2010-realized-price-ratio-0-5p" | "height-to-up-to-6m-realized-loss" | "height-to-from-2y-to-3y-35p-price-paid" | "height-to-market-price-to-price-89d-sma-ratio-1w-sma" | "height-to-year-2018-realized-profit" | "height-to-market-cap" | "height-to-from-3m-to-6m-net-realized-profit-and-loss-to-market-cap-ratio" | "height-to-year-2013-60p-price-paid" | "height-to-year-2019-85p-price-paid" | "height-to-year-2017-65p-price-paid" | "height-to-p2wpkh-net-realized-profit-and-loss" | "height-to-p2wsh-spent-output-profit-ratio" | "height-to-from-5y-to-7y-55p-price-paid" | "height-to-market-price-to-up-to-1m-realized-price-ratio-1p" | "height-to-up-to-1w-realized-cap-1m-net-change" | "height-to-market-price-to-from-6m-to-1y-realized-price-ratio-1y-sma" | "height-to-year-2009-supply-in-loss-to-circulating-supply-ratio" | "height-to-highly-liquid-55p-price-paid" | "height-to-market-price-to-from-15y-realized-price-ratio-99p" | "height-to-liquid-net-unrealized-profit-and-loss" | "height-to-up-to-2m-realized-cap" | "height-to-from-3y-to-5y-supply-in-loss-to-circulating-supply-ratio" | "height-to-from-2y-to-3y-negative-unrealized-loss" | "height-to-fees-to-coinbase-ratio" | "height-to-from-10y-supply-in-loss" | "height-to-from-6m-to-1y-15p-price-paid" | "height-to-year-2014-supply-in-profit" | "height-to-illiquid-supply" | "height-to-from-1m-to-3m-halved-supply" | "height-to-plankton-55p-price-paid" | "height-to-year-2017-input-count" | "height-to-up-to-5y-cumulative-net-realized-profit-and-loss-1m-net-change" | "height-to-year-2020-realized-loss" | "height-to-fish-85p-price-paid" | "height-to-p2tr-value-created" | "height-to-from-1w-to-1m-realized-price" | "height-to-market-price-to-up-to-2m-realized-price-ratio-1p" | "height-to-p2wsh-value-created" | "height-to-from-3y-to-5y-value-destroyed" | "height-to-fish-spent-output-profit-ratio" | "height-to-whale-net-realized-profit-and-loss-to-market-cap-ratio" | "height-to-market-price-to-from-10y-to-15y-realized-price-ratio" | "height-to-p2sh-realized-price-1p" | "height-to-up-to-15y-spent-output-profit-ratio" | "height-to-from-15y-75p-price-paid" | "height-to-price-21d-sma-1p" | "height-to-megalodon-cumulative-net-realized-profit-and-loss" | "height-to-from-1y-supply-in-loss-to-circulating-supply-ratio" | "height-to-from-6m-to-1y-60p-price-paid" | "height-to-from-1y-15p-price-paid" | "height-to-p2wpkh-net-unrealized-profit-and-loss-to-market-cap-ratio" | "height-to-up-to-1m-supply-in-loss" | "height-to-up-to-15y-realized-price" | "height-to-highly-liquid-realized-price-0-1p" | "height-to-from-6m-to-1y-unrealized-loss" | "height-to-p2pk-85p-price-paid" | "height-to-plankton-45p-price-paid" | "height-to-shark-halved-supply" | "height-to-megalodon-realized-price-0-5p" | "height-to-year-2016-supply-in-profit" | "height-to-humpback-realized-loss" | "height-to-market-price-to-year-2022-realized-price-ratio" | "height-to-market-price-to-year-2011-realized-price-ratio-1m-sma" | "height-to-market-price-to-realized-price-ratio-99-9p" | "height-to-market-price-to-price-13d-sma-ratio-1y-sma" | "height-to-market-price-to-p2wpkh-realized-price-ratio-1y-sma-momentum-oscillator" | "height-to-p2pk-supply" | "height-to-shrimp-realized-price-0-5p" | "height-to-up-to-15y-65p-price-paid" | "height-to-market-price-to-year-2013-realized-price-ratio-1m-sma" | "height-to-from-5y-to-7y-supply" | "height-to-market-price-to-price-2y-sma-ratio-1y-sma-momentum-oscillator" | "height-to-market-price-to-price-2y-sma-ratio-0-1p" | "height-to-year-2014-realized-price-1p" | "height-to-year-2015-cumulative-realized-loss" | "height-to-up-to-2m-spent-output-profit-ratio" | "height-to-p2sh-unrealized-loss" | "height-to-from-1y-to-2y-net-unrealized-profit-and-loss-to-market-cap-ratio" | "height-to-market-price-to-highly-liquid-realized-price-ratio-99-9p" | "height-to-up-to-5y-45p-price-paid" | "height-to-up-to-6m-35p-price-paid" | "height-to-plankton-spent-output-profit-ratio" | "height-to-up-to-2m-55p-price-paid" | "height-to-megalodon-realized-profit" | "height-to-market-price-to-from-2y-realized-price-ratio" | "height-to-year-2009-65p-price-paid" | "height-to-highly-liquid-realized-price-99p" | "height-to-year-2012-55p-price-paid" | "height-to-p2wpkh-realized-loss" | "height-to-p2wsh-net-unrealized-profit-and-loss" | "height-to-from-3m-to-6m-75p-price-paid" | "height-to-plankton-cumulative-net-realized-profit-and-loss" | "height-to-from-5y-to-7y-supply-in-profit-to-own-supply-ratio" | "height-to-up-to-5y-supply-in-loss-to-own-supply-ratio" | "height-to-year-2021-negative-unrealized-loss" | "height-to-from-15y-10p-price-paid" | "height-to-market-price-to-up-to-4m-realized-price-ratio-0-1p" | "height-to-up-to-4m-35p-price-paid" | "height-to-up-to-10y-input-volume" | "height-to-up-to-2m-realized-profit" | "height-to-market-price-to-from-4y-realized-price-ratio-1y-sma-momentum-oscillator" | "height-to-up-to-1w-unrealized-profit" | "height-to-market-price-to-year-2013-realized-price-ratio-0-1p" | "height-to-from-10y-realized-loss" | "height-to-market-price-to-price-55d-sma-ratio-1y-sma-momentum-oscillator" | "height-to-market-price-to-up-to-10y-realized-price-ratio-0-1p" | "height-to-from-3y-to-5y-realized-price" | "height-to-market-price-to-from-4y-realized-price-ratio-1m-sma" | "height-to-p2tr-realized-price-99-9p" | "height-to-up-to-2y-35p-price-paid" | "height-to-year-2013-cumulative-net-realized-profit-and-loss" | "height-to-year-2019-unrealized-loss" | "height-to-market-price-to-year-2023-realized-price-ratio-99-9p" | "height-to-up-to-6m-55p-price-paid" | "height-to-market-price-to-from-2y-realized-price-ratio-0-1p" | "height-to-liquid-90p-price-paid" | "height-to-price-13d-sma-1p" | "height-to-year-2009-supply-in-profit-to-own-supply-ratio" | "height-to-up-to-7y-unrealized-loss" | "height-to-lth-supply" | "height-to-year-2021-95p-price-paid" | "height-to-market-price-to-from-3m-to-6m-realized-price-ratio-99p" | "height-to-year-2021-realized-cap-1m-net-change" | "height-to-from-5y-to-7y-05p-price-paid" | "height-to-from-1w-to-1m-negative-unrealized-loss" | "height-to-up-to-1d-realized-cap" | "height-to-market-price-to-year-2023-realized-price-ratio-1p" | "height-to-shrimp-65p-price-paid" | "height-to-shrimp-supply-in-loss-to-circulating-supply-ratio" | "height-to-up-to-15y-70p-price-paid" | "height-to-price-144d-sma" | "height-to-from-6m-to-1y-cumulative-net-realized-profit-and-loss" | "height-to-market-price-to-megalodon-realized-price-ratio-1y-sma" | "height-to-transactions-per-second-1m-sma" | "height-to-year-2019-supply-to-circulating-supply-ratio" | "height-to-year-2021-supply-in-profit-to-circulating-supply-ratio" | "height-to-year-2022-halved-supply-to-circulating-supply-ratio" | "height-to-shark-realized-loss" | "height-to-from-7y-to-10y-95p-price-paid" | "height-to-from-6m-to-1y-05p-price-paid" | "height-to-plankton-net-realized-profit-and-loss-to-market-cap-ratio" | "height-to-illiquid-realized-price-1p" | "height-to-up-to-10y-10p-price-paid" | "height-to-plankton-supply-in-profit-to-circulating-supply-ratio" | "height-to-liveliness" | "height-to-highly-liquid-20p-price-paid" | "height-to-from-1d-to-1w-median-price-paid" | "height-to-market-price-to-megalodon-realized-price-ratio-1w-sma" | "height-to-market-price-to-up-to-3y-realized-price-ratio" | "height-to-up-to-1d-realized-loss" | "height-to-p2pkh-utxo-count" | "height-to-from-4y-negative-realized-loss" | "height-to-up-to-7y-net-realized-profit-and-loss" | "height-to-p2sh-cumulative-net-realized-profit-and-loss-1m-net-change" | "height-to-p2pkh-value-created" | "height-to-market-price-to-realized-price-ratio-99p"; +export type HeightPath = "height-to-from-3y-to-5y-10p-price-paid" | "height-to-lth-80p-price-paid" | "height-to-p2wsh-realized-price-0-1p" | "height-to-up-to-10y-35p-price-paid" | "height-to-up-to-1y-realized-cap-1m-net-change" | "height-to-market-price-to-year-2021-realized-price-ratio-0-1p" | "height-to-from-2y-to-3y-85p-price-paid" | "height-to-up-to-1d-realized-profit" | "height-to-year-2015-95p-price-paid" | "height-to-p2wpkh-95p-price-paid" | "height-to-up-to-5m-supply-in-loss-to-circulating-supply-ratio" | "height-to-price-89d-sma-0-5p" | "height-to-crab-spent-output-profit-ratio" | "height-to-from-1d-to-1w-realized-price" | "height-to-illiquid-realized-price-0-1p" | "height-to-from-4y-supply-in-loss" | "height-to-market-price-to-price-200w-sma-ratio-1y-sma" | "height-to-up-to-3y-utxo-count" | "height-to-up-to-3y-realized-value" | "height-to-from-10y-to-15y-unrealized-loss" | "height-to-from-6m-to-1y-30p-price-paid" | "height-to-from-10y-95p-price-paid" | "height-to-up-to-5y-negative-realized-loss" | "height-to-market-price-to-p2wpkh-realized-price-ratio-1y-sma" | "height-to-market-price-to-price-21d-sma-ratio-0-1p" | "height-to-humpback-adjusted-value-created" | "height-to-market-price-to-up-to-6m-realized-price-ratio-1m-sma" | "height-to-year-2021-input-count" | "height-to-from-7y-to-10y-realized-price-99-9p" | "height-to-p2pk-05p-price-paid" | "height-to-year-2014-value-destroyed" | "height-to-vaulted-price-0-5p" | "height-to-up-to-15y-realized-price-99-9p" | "height-to-shrimp-net-unrealized-profit-and-loss-to-market-cap-ratio" | "height-to-year-2014-supply-in-profit-to-circulating-supply-ratio" | "height-to-from-6m-to-1y-adjusted-value-created" | "height-to-year-2014-supply-in-loss-to-circulating-supply-ratio" | "height-to-from-1y-to-2y-60p-price-paid" | "height-to-highly-liquid-realized-cap-1m-net-change" | "height-to-utxo-count" | "height-to-illiquid-unrealized-loss" | "height-to-market-price-to-vaulted-price-ratio" | "height-to-up-to-5y-input-count" | "height-to-year-2018-net-unrealized-profit-and-loss" | "height-to-from-1y-90p-price-paid" | "height-to-market-price-to-year-2019-realized-price-ratio-0-1p" | "height-to-from-3y-to-5y-net-realized-profit-and-loss" | "height-to-from-6m-to-1y-value-destroyed" | "height-to-market-price-to-from-4y-realized-price-ratio-1w-sma" | "height-to-year-2012-realized-profit" | "height-to-year-2016-supply-in-loss-to-own-supply-ratio" | "height-to-highly-liquid-90p-price-paid" | "height-to-year-2018-input-volume" | "height-to-up-to-7y-95p-price-paid" | "height-to-from-10y-65p-price-paid" | "height-to-up-to-1w-supply-to-circulating-supply-ratio" | "height-to-up-to-2y-supply-in-loss" | "height-to-up-to-5y-75p-price-paid" | "height-to-year-2017-supply-in-loss" | "height-to-year-2021-net-realized-profit-and-loss" | "height-to-megalodon-75p-price-paid" | "height-to-halved-supply" | "height-to-year-2019-supply" | "height-to-p2tr-cumulative-net-realized-profit-and-loss-1m-net-change" | "height-to-highly-liquid-35p-price-paid" | "height-to-year-2014-15p-price-paid" | "height-to-up-to-2m-halved-supply-to-circulating-supply-ratio" | "height-to-market-price-to-from-10y-to-15y-realized-price-ratio-1y-sma-momentum-oscillator" | "height-to-from-3m-to-6m-supply-in-profit" | "height-to-sth-40p-price-paid" | "height-to-from-1m-to-3m-realized-price-99p" | "height-to-market-price-to-from-2y-to-3y-realized-price-ratio-1w-sma" | "height-to-up-to-2y-45p-price-paid" | "height-to-up-to-7y-cumulative-net-realized-profit-and-loss" | "height-to-up-to-1w-negative-realized-loss" | "height-to-whale-negative-realized-loss" | "height-to-year-2009-halved-supply" | "height-to-year-2012-cumulative-realized-profit" | "height-to-from-3m-to-6m-70p-price-paid" | "height-to-up-to-1y-55p-price-paid" | "height-to-from-10y-to-15y-90p-price-paid" | "height-to-year-2019-value-created" | "height-to-liquid-supply-in-profit" | "height-to-from-3m-to-6m-realized-cap-1m-net-change" | "height-to-price-13d-sma-99-9p" | "height-to-market-price-to-year-2022-realized-price-ratio-1m-sma" | "height-to-market-price-to-price-4y-sma-ratio" | "height-to-shark-10p-price-paid" | "height-to-up-to-2y-net-unrealized-profit-and-loss" | "height-to-sth-45p-price-paid" | "height-to-up-to-1w-95p-price-paid" | "height-to-from-1d-to-1w-70p-price-paid" | "height-to-from-1y-to-2y-net-unrealized-profit-and-loss" | "height-to-market-price-to-p2sh-realized-price-ratio-1y-sma-momentum-oscillator" | "height-to-market-price-to-year-2013-realized-price-ratio-99p" | "height-to-market-price-to-year-2023-realized-price-ratio-1w-sma" | "height-to-shark-70p-price-paid" | "height-to-market-price-to-highly-liquid-realized-price-ratio" | "height-to-up-to-15y-realized-loss" | "height-to-up-to-3m-value-created" | "height-to-market-price-to-from-2y-to-3y-realized-price-ratio-1p" | "height-to-market-price-to-year-2012-realized-price-ratio-99-5p" | "height-to-shrimp-utxo-count" | "height-to-up-to-1d-60p-price-paid" | "height-to-up-to-3m-net-realized-profit-and-loss" | "height-to-year-2009-net-unrealized-profit-and-loss" | "height-to-up-to-1m-70p-price-paid" | "height-to-market-price-to-price-1y-sma-ratio-1p" | "height-to-year-2010-supply-in-loss" | "height-to-year-2021-supply-in-loss" | "height-to-fish-input-count" | "height-to-from-5y-to-7y-net-realized-profit-and-loss" | "height-to-year-2021-65p-price-paid" | "height-to-up-to-3y-25p-price-paid" | "height-to-from-1w-to-1m-25p-price-paid" | "height-to-year-2014-60p-price-paid" | "height-to-liquid-input-count" | "height-to-p2pkh-adjusted-value-created" | "height-to-lth-adjusted-spent-output-profit-ratio" | "height-to-crab-80p-price-paid" | "height-to-whale-negative-unrealized-loss" | "height-to-up-to-1d-halved-supply" | "height-to-market-price-to-up-to-3y-realized-price-ratio-1p" | "height-to-from-1d-to-1w-value-created" | "height-to-from-1w-to-1m-halved-supply-to-circulating-supply-ratio" | "height-to-year-2009-net-realized-profit-and-loss-to-market-cap-ratio" | "height-to-year-2010-spent-output-profit-ratio" | "height-to-from-10y-to-15y-cumulative-net-realized-profit-and-loss-1m-net-change" | "height-to-year-2017-negative-realized-loss" | "height-to-plankton-address-count" | "height-to-year-2020-realized-cap-1m-net-change" | "height-to-from-1y-75p-price-paid" | "height-to-up-to-2m-60p-price-paid" | "height-to-year-2021-negative-realized-loss" | "height-to-year-2024-realized-cap-1m-net-change" | "height-to-up-to-1y-15p-price-paid" | "height-to-from-2y-to-3y-30p-price-paid" | "height-to-year-2020-cumulative-net-realized-profit-and-loss" | "height-to-highly-liquid-40p-price-paid" | "height-to-from-2y-to-3y-unrealized-profit" | "height-to-up-to-3y-cumulative-realized-loss" | "height-to-market-price-to-up-to-1y-realized-price-ratio-99-9p" | "height-to-fish-net-realized-profit-and-loss" | "height-to-from-3m-to-6m-60p-price-paid" | "height-to-year-2022-realized-price-0-1p" | "height-to-year-2014-45p-price-paid" | "height-to-from-3m-to-6m-realized-price-0-5p" | "height-to-liquid-net-unrealized-profit-and-loss-to-market-cap-ratio" | "height-to-95p-price-paid" | "height-to-from-4y-45p-price-paid" | "height-to-true-market-deviation" | "height-to-year-2011-adjusted-spent-output-profit-ratio" | "height-to-market-price-to-up-to-5y-realized-price-ratio-1p" | "height-to-humpback-unrealized-loss" | "height-to-from-15y-25p-price-paid" | "height-to-p2wsh-realized-cap" | "height-to-up-to-10y-realized-value" | "height-to-megalodon-negative-unrealized-loss" | "height-to-up-to-2m-unrealized-profit" | "height-to-market-price-to-price-34d-sma-ratio" | "height-to-year-2017-60p-price-paid" | "height-to-market-price-to-from-1w-to-1m-realized-price-ratio-0-1p" | "height-to-from-2y-to-3y-65p-price-paid" | "height-to-year-2019-30p-price-paid" | "height-to-year-2023-realized-price-0-5p" | "height-to-year-2024-spent-output-profit-ratio" | "height-to-up-to-5y-net-unrealized-profit-and-loss" | "height-to-up-to-3y-unrealized-profit" | "height-to-market-price-to-p2pk-realized-price-ratio-1y-sma-momentum-oscillator" | "height-to-subsidy-in-dollars" | "height-to-from-1y-realized-price-99-9p" | "height-to-from-1d-to-1w-supply-in-loss-to-circulating-supply-ratio" | "height-to-price-2y-sma-1p" | "height-to-crab-halved-supply-to-circulating-supply-ratio" | "height-to-market-price-to-up-to-2y-realized-price-ratio-1p" | "height-to-year-2018-70p-price-paid" | "height-to-year-2021-net-unrealized-profit-and-loss-to-market-cap-ratio" | "height-to-year-2009-realized-value" | "height-to-year-2023-60p-price-paid" | "height-to-year-2018-net-realized-profit-and-loss" | "height-to-up-to-6m-realized-cap" | "height-to-year-2020-halved-supply" | "height-to-up-to-6m-unrealized-profit" | "height-to-year-2012-supply-in-loss-to-circulating-supply-ratio" | "height-to-p2pkh-45p-price-paid" | "height-to-market-price-to-price-34d-sma-ratio-99-9p" | "height-to-up-to-2m-realized-profit" | "height-to-market-price-to-up-to-15y-realized-price-ratio-1y-sma-momentum-oscillator" | "height-to-up-to-3y-75p-price-paid" | "height-to-year-2014-supply-in-profit" | "height-to-up-to-7y-realized-price-99-5p" | "height-to-crab-net-realized-profit-and-loss" | "height-to-year-2021-realized-loss" | "height-to-p2pkh-supply-in-profit-to-own-supply-ratio" | "height-to-from-7y-to-10y-40p-price-paid" | "height-to-p2pk-realized-value" | "height-to-p2wpkh-supply-in-loss-to-circulating-supply-ratio" | "height-to-up-to-15y-supply-in-profit-to-circulating-supply-ratio" | "height-to-up-to-2y-halved-supply" | "height-to-from-1m-to-3m-utxo-count" | "height-to-up-to-5m-spent-output-profit-ratio" | "height-to-market-price-to-price-13d-sma-ratio-99-5p" | "height-to-highly-liquid-realized-price-99-9p" | "height-to-up-to-3m-input-volume" | "height-to-up-to-1m-60p-price-paid" | "height-to-year-2024-75p-price-paid" | "height-to-year-2011-net-realized-profit-and-loss" | "height-to-from-10y-to-15y-realized-loss" | "height-to-crab-adjusted-value-created" | "height-to-from-1y-to-2y-realized-loss" | "height-to-up-to-15y-10p-price-paid" | "height-to-from-1y-to-2y-cumulative-realized-profit" | "height-to-market-price-to-up-to-2m-realized-price-ratio-1p" | "height-to-year-2022-supply-in-profit-to-circulating-supply-ratio" | "height-to-market-price-to-year-2009-realized-price-ratio-1p" | "height-to-up-to-2y-20p-price-paid" | "height-to-year-2011-05p-price-paid" | "height-to-up-to-2m-net-realized-profit-and-loss" | "height-to-year-2021-realized-price-99p" | "height-to-price-200w-sma-1p" | "height-to-up-to-1y-value-created" | "height-to-year-2016-realized-price-99p" | "height-to-market-price-to-liquid-realized-price-ratio" | "height-to-market-price-to-p2wpkh-realized-price-ratio-99-5p" | "height-to-market-price-to-price-8d-sma-ratio-99p" | "height-to-from-1y-net-unrealized-profit-and-loss-to-market-cap-ratio" | "height-to-market-price-to-active-price-ratio-0-5p" | "height-to-market-price-to-up-to-6m-realized-price-ratio-1w-sma" | "height-to-year-2019-supply-in-loss" | "height-to-liquid-40p-price-paid" | "height-to-whale-supply-in-loss-to-own-supply-ratio" | "height-to-market-price-to-p2pk-realized-price-ratio" | "height-to-market-price-to-cointime-price-ratio-0-1p" | "height-to-year-2012-supply" | "height-to-market-price-to-from-1y-to-2y-realized-price-ratio-0-5p" | "height-to-up-to-5y-utxo-count" | "height-to-year-2018-supply-in-loss-to-circulating-supply-ratio" | "height-to-plankton-negative-unrealized-loss" | "height-to-up-to-2m-realized-price-0-1p" | "height-to-year-2022-net-unrealized-profit-and-loss" | "height-to-year-2018-net-realized-profit-and-loss-to-market-cap-ratio" | "height-to-year-2024-realized-price-0-1p" | "height-to-market-price-to-up-to-15y-realized-price-ratio-0-1p" | "height-to-year-2022-70p-price-paid" | "height-to-lth-90p-price-paid" | "height-to-illiquid-supply-in-profit" | "height-to-up-to-15y-cumulative-realized-profit" | "height-to-lth-net-unrealized-profit-and-loss" | "height-to-up-to-5m-cumulative-realized-profit" | "height-to-year-2022-realized-price-0-5p" | "height-to-lth-supply-in-loss-to-circulating-supply-ratio" | "height-to-illiquid-15p-price-paid" | "height-to-from-4y-65p-price-paid" | "height-to-from-7y-to-10y-net-unrealized-profit-and-loss" | "height-to-up-to-15y-supply-in-loss-to-own-supply-ratio" | "height-to-year-2016-supply-in-profit" | "height-to-year-2020-supply-in-profit" | "height-to-up-to-5m-55p-price-paid" | "height-to-up-to-3m-supply-in-loss-to-own-supply-ratio" | "height-to-up-to-5y-spent-output-profit-ratio" | "height-to-from-1y-45p-price-paid" | "height-to-from-10y-realized-value" | "height-to-market-price-to-from-7y-to-10y-realized-price-ratio-1p" | "height-to-illiquid-supply-in-profit-to-own-supply-ratio" | "height-to-p2pkh-realized-cap" | "height-to-highly-liquid-adjusted-spent-output-profit-ratio" | "height-to-from-1d-to-1w-median-price-paid" | "height-to-from-1w-to-1m-halved-supply" | "height-to-from-3y-to-5y-unrealized-loss" | "height-to-from-4y-unrealized-loss" | "height-to-up-to-1d-supply-in-profit-to-own-supply-ratio" | "height-to-up-to-1m-cumulative-net-realized-profit-and-loss-1m-net-change" | "height-to-all-time-high" | "height-to-up-to-3m-realized-price-1p" | "height-to-from-1y-adjusted-value-created" | "height-to-market-price-to-highly-liquid-realized-price-ratio-1y-sma" | "height-to-up-to-7y-supply" | "height-to-up-to-5m-median-price-paid" | "height-to-year-2014-realized-price-99p" | "height-to-year-2021-adjusted-value-destroyed" | "height-to-up-to-2m-supply-in-profit-to-own-supply-ratio" | "height-to-market-price-to-whale-realized-price-ratio" | "height-to-market-price-to-up-to-2y-realized-price-ratio" | "height-to-up-to-10y-adjusted-value-created" | "height-to-up-to-10y-supply-in-profit" | "height-to-from-1d-to-1w-supply" | "height-to-shark-supply-in-loss-to-circulating-supply-ratio" | "height-to-illiquid-net-unrealized-profit-and-loss-to-market-cap-ratio" | "height-to-up-to-1y-supply-in-profit-to-own-supply-ratio" | "height-to-from-10y-adjusted-spent-output-profit-ratio" | "height-to-up-to-5y-unrealized-loss" | "height-to-whale-cumulative-realized-loss" | "height-to-from-1m-to-3m-realized-cap-1m-net-change" | "height-to-year-2010-halved-supply" | "height-to-fish-realized-price" | "height-to-year-2018-realized-price-1p" | "height-to-up-to-2y-negative-realized-loss" | "height-to-from-5y-to-7y-median-price-paid" | "height-to-market-price-to-whale-realized-price-ratio-1w-sma" | "height-to-price-144d-sma-99-9p" | "height-to-crab-realized-price-99p" | "height-to-p2wsh-15p-price-paid" | "height-to-up-to-4m-95p-price-paid" | "height-to-halved-supply-to-circulating-supply-ratio" | "height-to-year-2014-40p-price-paid" | "height-to-year-2017-input-volume" | "height-to-from-6m-to-1y-90p-price-paid" | "height-to-from-2y-to-3y-supply-in-loss-to-own-supply-ratio" | "height-to-from-3m-to-6m-value-created" | "height-to-illiquid-realized-price-0-5p" | "height-to-market-price-to-up-to-3m-realized-price-ratio-1p" | "height-to-market-price-to-up-to-1y-realized-price-ratio-1y-sma-momentum-oscillator" | "height-to-year-2009-unrealized-profit" | "height-to-up-to-5m-15p-price-paid" | "height-to-year-2018-realized-loss" | "height-to-from-3m-to-6m-supply-in-loss-to-own-supply-ratio" | "height-to-liquid-address-count" | "height-to-transaction-count-1m-sma" | "height-to-from-4y-realized-price-99-5p" | "height-to-year-2011-95p-price-paid" | "height-to-up-to-3y-10p-price-paid" | "height-to-market-price-to-from-10y-realized-price-ratio-1y-sma-momentum-oscillator" | "height-to-from-1m-to-3m-supply" | "height-to-from-3y-to-5y-negative-unrealized-loss" | "height-to-year-2015-net-realized-profit-and-loss-to-market-cap-ratio" | "height-to-market-price-to-year-2009-realized-price-ratio-99-9p" | "height-to-year-2017-cumulative-net-realized-profit-and-loss" | "height-to-up-to-1m-supply-in-loss" | "height-to-illiquid-halved-supply" | "height-to-up-to-15y-35p-price-paid" | "height-to-price-1m-sma-0-1p" | "height-to-market-price-to-year-2011-realized-price-ratio" | "height-to-year-2014-halved-supply-to-circulating-supply-ratio" | "height-to-year-2016-realized-price-0-5p" | "height-to-whale-realized-loss" | "height-to-market-price-to-year-2015-realized-price-ratio-1y-sma-momentum-oscillator" | "height-to-year-2012-realized-price-99-5p" | "height-to-market-price-to-year-2014-realized-price-ratio-0-5p" | "height-to-market-price-to-from-7y-to-10y-realized-price-ratio-99-9p" | "height-to-from-1d-to-1w-75p-price-paid" | "height-to-market-price-to-year-2022-realized-price-ratio-1p" | "height-to-market-price-to-from-7y-to-10y-realized-price-ratio-1y-sma" | "height-to-year-2015-25p-price-paid" | "height-to-year-2021-cumulative-net-realized-profit-and-loss" | "height-to-year-2014-halved-supply" | "height-to-year-2021-supply-in-profit-to-own-supply-ratio" | "height-to-year-2022-median-price-paid" | "height-to-year-2022-value-destroyed" | "height-to-from-2y-value-created" | "height-to-from-5y-to-7y-unrealized-loss" | "height-to-from-7y-to-10y-cumulative-net-realized-profit-and-loss-1m-net-change" | "height-to-shrimp-realized-price-99-5p" | "height-to-market-price-to-fish-realized-price-ratio-1y-sma" | "height-to-lth-input-volume" | "height-to-year-2018-90p-price-paid" | "height-to-fish-cumulative-realized-profit" | "height-to-p2sh-supply-in-profit-to-own-supply-ratio" | "height-to-market-price-to-price-89d-sma-ratio-1y-sma" | "height-to-year-2015-supply-in-profit" | "height-to-from-10y-to-15y-input-volume" | "height-to-year-2012-35p-price-paid" | "height-to-market-price-to-year-2021-realized-price-ratio" | "height-to-humpback-60p-price-paid" | "height-to-up-to-1y-cumulative-net-realized-profit-and-loss" | "height-to-up-to-1m-75p-price-paid" | "height-to-up-to-4m-realized-price-1p" | "height-to-up-to-1y-utxo-count" | "height-to-p2sh-60p-price-paid" | "height-to-from-1w-to-1m-net-realized-profit-and-loss" | "height-to-from-2y-to-3y-supply-in-profit" | "height-to-highly-liquid-supply-in-profit-to-circulating-supply-ratio" | "height-to-lth-realized-price-1p" | "height-to-shrimp-70p-price-paid" | "height-to-year-2016-value-created" | "height-to-market-price-to-price-144d-sma-ratio-1y-sma-momentum-oscillator" | "height-to-year-2013-input-count" | "height-to-year-2020-realized-profit" | "height-to-p2wpkh-realized-price-99p" | "height-to-from-5y-to-7y-40p-price-paid" | "height-to-lth-unrealized-profit" | "height-to-from-7y-to-10y-realized-price-0-5p" | "height-to-year-2010-realized-price-99p" | "height-to-from-3y-to-5y-30p-price-paid" | "height-to-year-2022-negative-unrealized-loss" | "height-to-up-to-5y-supply-to-circulating-supply-ratio" | "height-to-from-3y-to-5y-realized-profit" | "height-to-market-price-to-crab-realized-price-ratio-1m-sma" | "height-to-plankton-adjusted-spent-output-profit-ratio" | "height-to-humpback-negative-realized-loss" | "height-to-year-2020-supply-to-circulating-supply-ratio" | "height-to-megalodon-input-volume" | "height-to-market-price-to-price-21d-sma-ratio-99p" | "height-to-up-to-15y-supply-to-circulating-supply-ratio" | "height-to-from-6m-to-1y-adjusted-value-destroyed" | "height-to-p2wsh-20p-price-paid" | "height-to-up-to-1y-adjusted-value-created" | "height-to-from-1m-to-3m-35p-price-paid" | "height-to-market-price-to-price-200w-sma-ratio-1w-sma" | "height-to-up-to-10y-net-unrealized-profit-and-loss" | "height-to-year-2022-40p-price-paid" | "height-to-lth-negative-unrealized-loss" | "height-to-up-to-1m-20p-price-paid" | "height-to-up-to-3m-realized-cap" | "height-to-market-price-to-fish-realized-price-ratio-1m-sma" | "height-to-up-to-10y-realized-price-99-5p" | "height-to-from-5y-to-7y-realized-price-0-5p" | "height-to-market-price-to-up-to-2m-realized-price-ratio-1y-sma" | "height-to-year-2009-halved-supply-to-circulating-supply-ratio" | "height-to-price-34d-sma" | "height-to-liquid-cumulative-net-realized-profit-and-loss-1m-net-change" | "height-to-year-2016-cumulative-realized-loss" | "height-to-market-price-to-up-to-10y-realized-price-ratio-99-5p" | "height-to-market-price-to-vaulted-price-ratio-1w-sma" | "height-to-year-2014-supply-in-profit-to-own-supply-ratio" | "height-to-from-15y-90p-price-paid" | "height-to-year-2019-median-price-paid" | "height-to-from-2y-15p-price-paid" | "height-to-fish-supply-in-profit-to-own-supply-ratio" | "height-to-market-price-to-price-1m-sma-ratio-0-5p" | "height-to-megalodon-70p-price-paid" | "height-to-from-1w-to-1m-10p-price-paid" | "height-to-fish-median-price-paid" | "height-to-price-2y-sma-99p" | "height-to-from-1y-adjusted-value-destroyed" | "height-to-market-price-to-true-market-mean-ratio-99-5p" | "height-to-price-4y-sma-1p" | "height-to-market-price-to-cointime-price-ratio" | "height-to-p2sh-supply-in-loss-to-circulating-supply-ratio" | "height-to-p2tr-negative-unrealized-loss" | "height-to-from-10y-supply-to-circulating-supply-ratio" | "height-to-price-2y-sma-0-5p" | "height-to-shrimp-address-count" | "height-to-up-to-1w-adjusted-value-created" | "height-to-p2pkh-input-volume" | "height-to-from-1y-realized-price-0-5p" | "height-to-up-to-5m-45p-price-paid" | "height-to-from-6m-to-1y-halved-supply-to-circulating-supply-ratio" | "height-to-fish-cumulative-net-realized-profit-and-loss-1m-net-change" | "height-to-input-count" | "height-to-year-2013-supply-in-loss-to-circulating-supply-ratio" | "height-to-market-price-to-year-2016-realized-price-ratio-1p" | "height-to-liquid-65p-price-paid" | "height-to-market-price-to-up-to-1m-realized-price-ratio-1y-sma-momentum-oscillator" | "height-to-p2tr-value-destroyed" | "height-to-year-2010-unrealized-profit" | "height-to-year-2022-unrealized-profit" | "height-to-fish-55p-price-paid" | "height-to-market-price-to-year-2014-realized-price-ratio-0-1p" | "height-to-year-2021-cumulative-realized-profit" | "height-to-from-2y-to-3y-supply-in-profit-to-circulating-supply-ratio" | "height-to-from-1w-to-1m-supply-in-loss" | "height-to-highly-liquid-realized-value" | "height-to-true-market-net-unrealized-profit-and-loss" | "height-to-sth-85p-price-paid" | "height-to-up-to-4m-cumulative-realized-loss" | "height-to-year-2014-adjusted-spent-output-profit-ratio" | "height-to-from-1d-to-1w-45p-price-paid" | "height-to-p2tr-85p-price-paid" | "height-to-year-2018-adjusted-spent-output-profit-ratio" | "height-to-whale-net-unrealized-profit-and-loss-to-market-cap-ratio" | "height-to-from-3y-to-5y-55p-price-paid" | "height-to-up-to-7y-55p-price-paid" | "height-to-up-to-3y-net-unrealized-profit-and-loss-to-market-cap-ratio" | "height-to-from-7y-to-10y-supply-in-profit-to-own-supply-ratio" | "height-to-year-2010-15p-price-paid" | "height-to-from-6m-to-1y-utxo-count" | "height-to-market-price-to-year-2019-realized-price-ratio-99p" | "height-to-highly-liquid-input-count" | "height-to-from-1m-to-3m-realized-price" | "height-to-p2sh-halved-supply" | "height-to-up-to-3y-35p-price-paid" | "height-to-up-to-1m-realized-profit" | "height-to-from-10y-median-price-paid" | "height-to-from-1y-to-2y-unrealized-profit" | "height-to-illiquid-input-volume" | "height-to-up-to-4m-net-unrealized-profit-and-loss-to-market-cap-ratio" | "height-to-illiquid-cumulative-realized-profit" | "height-to-up-to-5m-realized-price" | "height-to-year-2011-realized-loss" | "height-to-year-2021-80p-price-paid" | "height-to-market-price-to-p2pkh-realized-price-ratio-1m-sma" | "height-to-up-to-10y-80p-price-paid" | "height-to-year-2013-negative-unrealized-loss" | "height-to-from-2y-to-3y-cumulative-net-realized-profit-and-loss-1m-net-change" | "height-to-liquid-45p-price-paid" | "height-to-sth-net-unrealized-profit-and-loss" | "height-to-year-2009-40p-price-paid" | "height-to-from-1m-to-3m-20p-price-paid" | "height-to-year-2010-cumulative-net-realized-profit-and-loss" | "height-to-transaction-volume-in-dollars-1w-sma" | "height-to-year-2019-10p-price-paid" | "height-to-from-6m-to-1y-supply-in-profit-to-own-supply-ratio" | "height-to-market-price-to-shrimp-realized-price-ratio-0-5p" | "height-to-from-6m-to-1y-spent-output-profit-ratio" | "height-to-year-2012-supply-in-loss" | "height-to-p2wpkh-input-volume" | "height-to-market-price-to-vaulted-price-ratio-1y-sma" | "height-to-market-price-to-p2wsh-realized-price-ratio-0-1p" | "height-to-market-price-to-price-1y-sma-ratio-99-5p" | "height-to-p2pk-spent-output-profit-ratio" | "height-to-crab-supply-in-loss" | "height-to-up-to-4m-realized-price-0-1p" | "height-to-year-2013-realized-price-99p" | "height-to-year-2016-supply" | "height-to-p2pk-realized-price-0-1p" | "height-to-p2sh-cumulative-realized-profit" | "height-to-from-15y-realized-price-99p" | "height-to-up-to-1y-median-price-paid" | "height-to-year-2019-supply-in-loss-to-circulating-supply-ratio" | "height-to-p2wsh-halved-supply-to-circulating-supply-ratio" | "height-to-up-to-1y-supply-in-profit-to-circulating-supply-ratio" | "height-to-shark-utxo-count" | "height-to-up-to-7y-realized-loss" | "height-to-up-to-3m-net-unrealized-profit-and-loss" | "height-to-up-to-5m-negative-unrealized-loss" | "height-to-up-to-1m-utxo-count" | "height-to-up-to-10y-spent-output-profit-ratio" | "height-to-cointime-price-0-1p" | "height-to-from-1m-to-3m-negative-unrealized-loss" | "height-to-humpback-realized-price-99-9p" | "height-to-from-3m-to-6m-net-unrealized-profit-and-loss-to-market-cap-ratio" | "height-to-year-2010-net-realized-profit-and-loss" | "height-to-year-2019-utxo-count" | "height-to-market-price-to-year-2012-realized-price-ratio-1p" | "height-to-from-1y-to-2y-45p-price-paid" | "height-to-from-3y-to-5y-75p-price-paid" | "height-to-market-price-to-up-to-1d-realized-price-ratio-99p" | "height-to-year-2016-supply-in-profit-to-own-supply-ratio" | "height-to-year-2020-cumulative-net-realized-profit-and-loss-1m-net-change" | "height-to-plankton-85p-price-paid" | "height-to-year-2020-realized-price-99p" | "height-to-from-1m-to-3m-negative-realized-loss" | "height-to-from-1y-to-2y-input-volume" | "height-to-shrimp-supply" | "height-to-market-price-to-highly-liquid-realized-price-ratio-99-5p" | "height-to-p2wsh-90p-price-paid" | "height-to-up-to-10y-70p-price-paid" | "height-to-up-to-3y-realized-profit" | "height-to-year-2012-net-realized-profit-and-loss-to-market-cap-ratio" | "height-to-year-2018-realized-price-99-9p" | "height-to-year-2022-negative-realized-loss" | "height-to-year-2020-cumulative-realized-profit" | "height-to-crab-cumulative-net-realized-profit-and-loss-1m-net-change" | "height-to-up-to-1y-supply-in-loss" | "height-to-market-price-to-lth-realized-price-ratio-99-9p" | "height-to-from-4y-realized-price-1p" | "height-to-negative-unrealized-loss" | "height-to-whale-realized-profit" | "height-to-market-price-to-sth-realized-price-ratio-99-5p" | "height-to-year-2013-unrealized-loss" | "height-to-from-1d-to-1w-realized-price-99-9p" | "height-to-from-15y-55p-price-paid" | "height-to-from-1y-to-2y-05p-price-paid" | "height-to-up-to-1w-realized-cap" | "height-to-shark-cumulative-net-realized-profit-and-loss-1m-net-change" | "height-to-plankton-realized-loss" | "height-to-from-1m-to-3m-supply-in-profit" | "height-to-fish-40p-price-paid" | "height-to-humpback-negative-unrealized-loss" | "height-to-up-to-3m-halved-supply" | "height-to-p2wpkh-45p-price-paid" | "height-to-plankton-25p-price-paid" | "height-to-megalodon-20p-price-paid" | "height-to-market-price-to-megalodon-realized-price-ratio-99-5p" | "height-to-from-6m-to-1y-supply-to-circulating-supply-ratio" | "height-to-up-to-1m-adjusted-value-created" | "height-to-year-2009-65p-price-paid" | "height-to-year-2016-realized-price-1p" | "height-to-year-2021-30p-price-paid" | "height-to-up-to-15y-value-created" | "height-to-up-to-1d-85p-price-paid" | "height-to-up-to-3m-55p-price-paid" | "height-to-from-15y-adjusted-spent-output-profit-ratio" | "height-to-up-to-15y-40p-price-paid" | "height-to-up-to-6m-realized-price-99-9p" | "height-to-up-to-5y-45p-price-paid" | "height-to-year-2014-realized-price-99-5p" | "height-to-whale-halved-supply-to-circulating-supply-ratio" | "height-to-up-to-2m-net-unrealized-profit-and-loss" | "height-to-market-price-to-from-1w-to-1m-realized-price-ratio-99p" | "height-to-year-2021-value-destroyed" | "height-to-vaultedness" | "height-to-market-price-to-up-to-1w-realized-price-ratio-1w-sma" | "height-to-from-6m-to-1y-75p-price-paid" | "height-to-from-1y-input-volume" | "height-to-from-1w-to-1m-55p-price-paid" | "height-to-up-to-1w-halved-supply" | "height-to-market-price-to-p2tr-realized-price-ratio-1w-sma" | "height-to-up-to-7y-utxo-count" | "height-to-whale-realized-cap-1m-net-change" | "height-to-lth-15p-price-paid" | "height-to-from-1m-to-3m-median-price-paid" | "height-to-market-price-to-price-89d-sma-ratio-0-1p" | "height-to-market-price-to-p2tr-realized-price-ratio-99p" | "height-to-year-2009-95p-price-paid" | "height-to-year-2016-30p-price-paid" | "height-to-up-to-1m-supply-in-loss-to-own-supply-ratio" | "height-to-true-market-mean-0-1p" | "height-to-up-to-10y-halved-supply" | "height-to-year-2012-realized-value" | "height-to-year-2019-70p-price-paid" | "height-to-up-to-4m-20p-price-paid" | "height-to-sth-cumulative-net-realized-profit-and-loss" | "height-to-up-to-2m-negative-unrealized-loss" | "height-to-market-price-to-price-55d-sma-ratio-99-5p" | "height-to-up-to-7y-unrealized-loss" | "height-to-from-7y-to-10y-35p-price-paid" | "height-to-from-10y-to-15y-supply-in-profit" | "height-to-from-1m-to-3m-supply-in-loss" | "height-to-liquid-90p-price-paid" | "height-to-from-10y-to-15y-net-realized-profit-and-loss-to-market-cap-ratio" | "height-to-year-2018-supply-in-loss" | "height-to-from-3m-to-6m-supply" | "height-to-up-to-2y-adjusted-spent-output-profit-ratio" | "height-to-up-to-7y-realized-price-99-9p" | "height-to-fish-45p-price-paid" | "height-to-active-supply-net-change" | "height-to-illiquid-25p-price-paid" | "height-to-p2pk-cumulative-net-realized-profit-and-loss" | "height-to-from-1w-to-1m-realized-price-99-5p" | "height-to-from-2y-halved-supply" | "height-to-p2wsh-35p-price-paid" | "height-to-from-10y-to-15y-net-unrealized-profit-and-loss" | "height-to-up-to-7y-adjusted-spent-output-profit-ratio" | "height-to-up-to-15y-cumulative-realized-loss" | "height-to-market-price-to-up-to-3m-realized-price-ratio-0-5p" | "height-to-from-1d-to-1w-90p-price-paid" | "height-to-up-to-4m-80p-price-paid" | "height-to-up-to-4m-unrealized-loss" | "height-to-year-2019-45p-price-paid" | "height-to-p2pk-cumulative-realized-profit" | "height-to-p2tr-address-count" | "height-to-from-15y-40p-price-paid" | "height-to-from-7y-to-10y-supply-in-loss-to-circulating-supply-ratio" | "height-to-humpback-75p-price-paid" | "height-to-market-price-to-price-1m-sma-ratio-1m-sma" | "height-to-price-8d-sma-99-9p" | "height-to-up-to-7y-median-price-paid" | "height-to-from-1y-to-2y-cumulative-net-realized-profit-and-loss" | "height-to-market-price-to-plankton-realized-price-ratio-99-5p" | "height-to-sth-halved-supply" | "height-to-shrimp-halved-supply-to-circulating-supply-ratio" | "height-to-market-price-to-p2pk-realized-price-ratio-99-5p" | "height-to-up-to-2m-55p-price-paid" | "height-to-whale-25p-price-paid" | "height-to-whale-85p-price-paid" | "height-to-year-2017-75p-price-paid" | "height-to-up-to-1d-supply-in-profit-to-circulating-supply-ratio" | "height-to-up-to-3m-supply-in-profit-to-circulating-supply-ratio" | "height-to-year-2021-75p-price-paid" | "height-to-fish-20p-price-paid" | "height-to-shark-adjusted-spent-output-profit-ratio" | "height-to-crab-15p-price-paid" | "height-to-p2tr-cumulative-realized-profit" | "height-to-up-to-1m-15p-price-paid" | "height-to-from-2y-80p-price-paid" | "height-to-up-to-5m-95p-price-paid" | "height-to-market-price-to-year-2010-realized-price-ratio-99p" | "height-to-year-2015-realized-price-0-1p" | "height-to-liquid-input-volume" | "height-to-20p-price-paid" | "height-to-megalodon-realized-loss" | "height-to-subsidy" | "height-to-year-2009-realized-price-0-5p" | "height-to-from-3m-to-6m-realized-profit" | "height-to-p2pk-address-count" | "height-to-up-to-1y-70p-price-paid" | "height-to-p2tr-realized-price-99-5p" | "height-to-plankton-80p-price-paid" | "height-to-up-to-5y-cumulative-net-realized-profit-and-loss" | "height-to-p2tr-halved-supply" | "height-to-from-15y-realized-profit" | "height-to-from-6m-to-1y-65p-price-paid" | "height-to-up-to-7y-realized-price" | "height-to-year-2011-supply" | "height-to-empty-addresses" | "height-to-crab-25p-price-paid" | "height-to-market-price-to-year-2023-realized-price-ratio-0-5p" | "height-to-from-5y-to-7y-adjusted-value-destroyed" | "height-to-p2wpkh-unrealized-loss" | "height-to-price-1m-sma-99p" | "height-to-year-2009-cumulative-net-realized-profit-and-loss-1m-net-change" | "height-to-whale-35p-price-paid" | "height-to-market-price-to-from-5y-to-7y-realized-price-ratio-0-5p" | "height-to-year-2022-realized-profit" | "height-to-from-5y-to-7y-20p-price-paid" | "height-to-up-to-5m-adjusted-value-destroyed" | "height-to-market-price-to-up-to-2y-realized-price-ratio-1w-sma" | "height-to-year-2013-65p-price-paid" | "height-to-up-to-2y-input-volume" | "height-to-plankton-05p-price-paid" | "height-to-year-2013-halved-supply" | "height-to-up-to-7y-supply-in-profit-to-circulating-supply-ratio" | "height-to-market-price-to-year-2015-realized-price-ratio" | "height-to-year-2017-supply-in-loss-to-own-supply-ratio" | "height-to-year-2013-value-destroyed" | "height-to-from-1w-to-1m-75p-price-paid" | "height-to-market-price-to-year-2018-realized-price-ratio" | "height-to-year-2012-net-realized-profit-and-loss" | "height-to-year-2023-realized-price-99p" | "height-to-from-1d-to-1w-85p-price-paid" | "height-to-p2pk-80p-price-paid" | "height-to-p2pk-halved-supply" | "height-to-up-to-10y-realized-price-0-1p" | "height-to-whale-realized-price" | "height-to-whale-unrealized-loss" | "height-to-year-2022-10p-price-paid" | "height-to-cumulative-subsidy-in-dollars" | "height-to-fees-to-coinbase-ratio" | "height-to-market-price-to-up-to-1m-realized-price-ratio-1p" | "height-to-p2pkh-negative-realized-loss" | "height-to-from-5y-to-7y-halved-supply" | "height-to-up-to-1m-realized-cap-1m-net-change" | "height-to-liquid-negative-unrealized-loss" | "height-to-market-price-to-true-market-mean-ratio-1m-sma" | "height-to-from-3m-to-6m-realized-value" | "height-to-lth-unrealized-loss" | "height-to-market-price-to-up-to-10y-realized-price-ratio-1y-sma-momentum-oscillator" | "height-to-year-2015-adjusted-spent-output-profit-ratio" | "height-to-market-price-to-from-1y-to-2y-realized-price-ratio" | "height-to-liquid-net-unrealized-profit-and-loss" | "height-to-year-2019-realized-price-1p" | "height-to-market-price-to-price-13d-sma-ratio" | "height-to-market-price-to-from-5y-to-7y-realized-price-ratio-1m-sma" | "height-to-market-price-to-year-2020-realized-price-ratio-1m-sma" | "height-to-humpback-utxo-count" | "height-to-plankton-cumulative-realized-loss" | "height-to-from-1d-to-1w-65p-price-paid" | "height-to-up-to-6m-supply-in-loss-to-circulating-supply-ratio" | "height-to-from-1d-to-1w-60p-price-paid" | "height-to-year-2012-input-volume" | "height-to-market-price-to-sth-realized-price-ratio-1w-sma" | "height-to-up-to-10y-90p-price-paid" | "height-to-from-10y-to-15y-realized-value" | "height-to-p2pkh-supply-in-loss-to-own-supply-ratio" | "height-to-sth-negative-unrealized-loss" | "height-to-market-price-to-p2sh-realized-price-ratio-1p" | "height-to-price-4y-sma-0-5p" | "height-to-up-to-5m-halved-supply-to-circulating-supply-ratio" | "height-to-year-2017-15p-price-paid" | "height-to-p2tr-unrealized-loss" | "height-to-lth-adjusted-value-created" | "height-to-up-to-7y-cumulative-realized-profit" | "height-to-from-1y-55p-price-paid" | "height-to-year-2016-realized-cap" | "height-to-market-price-to-up-to-4m-realized-price-ratio-1y-sma" | "height-to-date" | "height-to-market-price-to-year-2009-realized-price-ratio-99-5p" | "height-to-up-to-3y-cumulative-realized-profit" | "height-to-market-price-to-year-2013-realized-price-ratio-99-5p" | "height-to-from-15y-95p-price-paid" | "height-to-p2pkh-90p-price-paid" | "height-to-transaction-count" | "height-to-p2sh-10p-price-paid" | "height-to-year-2020-supply-in-loss-to-own-supply-ratio" | "height-to-p2pkh-realized-price-1p" | "height-to-p2pk-supply" | "height-to-plankton-20p-price-paid" | "height-to-year-2010-realized-value" | "height-to-from-10y-to-15y-45p-price-paid" | "height-to-lth-realized-cap-1m-net-change" | "height-to-year-2011-realized-price" | "height-to-year-2023-90p-price-paid" | "height-to-humpback-realized-cap" | "height-to-market-price-to-up-to-10y-realized-price-ratio-0-5p" | "height-to-from-10y-to-15y-negative-unrealized-loss" | "height-to-coindays-destroyed" | "height-to-from-2y-to-3y-input-volume" | "height-to-market-price-to-up-to-15y-realized-price-ratio-1w-sma" | "height-to-up-to-5m-35p-price-paid" | "height-to-from-10y-supply" | "height-to-up-to-5y-40p-price-paid" | "height-to-from-1m-to-3m-halved-supply-to-circulating-supply-ratio" | "height-to-year-2013-net-realized-profit-and-loss" | "height-to-whale-supply-in-profit" | "height-to-p2tr-spent-output-profit-ratio" | "height-to-price-144d-sma" | "height-to-up-to-1w-30p-price-paid" | "height-to-up-to-5y-net-realized-profit-and-loss" | "height-to-year-2023-95p-price-paid" | "height-to-up-to-3m-adjusted-value-created" | "height-to-up-to-10y-supply" | "height-to-year-2024-negative-unrealized-loss" | "height-to-highly-liquid-65p-price-paid" | "height-to-market-price-to-from-2y-realized-price-ratio-1m-sma" | "height-to-year-2016-45p-price-paid" | "height-to-up-to-2m-realized-price-99-5p" | "height-to-market-price-to-from-2y-to-3y-realized-price-ratio-1y-sma" | "height-to-price-55d-sma-1p" | "height-to-p2pk-net-unrealized-profit-and-loss-to-market-cap-ratio" | "height-to-up-to-2y-realized-value" | "height-to-market-price-to-price-1w-sma-ratio-99p" | "height-to-up-to-3y-supply-in-profit-to-own-supply-ratio" | "height-to-illiquid-unrealized-profit" | "height-to-cointime-adjusted-velocity" | "height-to-highly-liquid-15p-price-paid" | "height-to-up-to-3y-unrealized-loss" | "height-to-year-2017-70p-price-paid" | "height-to-from-1w-to-1m-70p-price-paid" | "height-to-from-6m-to-1y-45p-price-paid" | "height-to-year-2024-supply-in-profit" | "height-to-shark-65p-price-paid" | "height-to-up-to-4m-70p-price-paid" | "height-to-from-15y-median-price-paid" | "height-to-illiquid-realized-cap-1m-net-change" | "height-to-market-price-to-year-2021-realized-price-ratio-1m-sma" | "height-to-year-2012-realized-cap" | "height-to-from-1w-to-1m-35p-price-paid" | "height-to-up-to-4m-net-realized-profit-and-loss-to-market-cap-ratio" | "height-to-market-price-to-from-2y-to-3y-realized-price-ratio-99-5p" | "height-to-price-2y-sma-99-5p" | "height-to-up-to-1d-spent-output-profit-ratio" | "height-to-from-1y-net-realized-profit-and-loss-to-market-cap-ratio" | "height-to-humpback-30p-price-paid" | "height-to-up-to-2m-cumulative-realized-profit" | "height-to-year-2018-spent-output-profit-ratio" | "height-to-liquid-spent-output-profit-ratio" | "height-to-from-15y-value-created" | "height-to-year-2012-utxo-count" | "height-to-from-15y-20p-price-paid" | "height-to-up-to-4m-utxo-count" | "height-to-year-2015-45p-price-paid" | "height-to-liquid-adjusted-spent-output-profit-ratio" | "height-to-year-2020-20p-price-paid" | "height-to-p2sh-net-unrealized-profit-and-loss" | "height-to-market-price-to-up-to-5m-realized-price-ratio-99-5p" | "height-to-from-6m-to-1y-realized-cap-1m-net-change" | "height-to-market-price-to-year-2023-realized-price-ratio" | "height-to-humpback-15p-price-paid" | "height-to-up-to-1y-input-volume" | "height-to-up-to-1m-value-created" | "height-to-year-2015-realized-profit" | "height-to-from-10y-realized-price-0-1p" | "height-to-from-2y-unrealized-profit" | "height-to-price-1y-sma-0-5p" | "height-to-year-2010-45p-price-paid" | "height-to-from-10y-value-created" | "height-to-from-1m-to-3m-cumulative-realized-loss" | "height-to-p2sh-realized-price-0-5p" | "height-to-market-price-to-from-15y-realized-price-ratio-99-9p" | "height-to-from-2y-spent-output-profit-ratio" | "height-to-year-2022-utxo-count" | "height-to-market-price-to-year-2015-realized-price-ratio-99-5p" | "height-to-p2wpkh-supply" | "height-to-from-1w-to-1m-utxo-count" | "height-to-realized-cap-1m-net-change" | "height-to-from-4y-negative-realized-loss" | "height-to-lth-halved-supply" | "height-to-from-10y-to-15y-cumulative-realized-loss" | "height-to-market-price-to-from-2y-to-3y-realized-price-ratio-1m-sma" | "height-to-up-to-3y-realized-cap-1m-net-change" | "height-to-up-to-5m-cumulative-net-realized-profit-and-loss" | "height-to-up-to-6m-realized-cap-1m-net-change" | "height-to-from-5y-to-7y-supply-in-loss-to-circulating-supply-ratio" | "height-to-megalodon-unrealized-loss" | "height-to-from-10y-unrealized-loss" | "height-to-from-2y-05p-price-paid" | "height-to-realized-price-1p" | "height-to-from-1d-to-1w-value-destroyed" | "height-to-from-6m-to-1y-cumulative-net-realized-profit-and-loss" | "height-to-from-2y-to-3y-45p-price-paid" | "height-to-sth-05p-price-paid" | "height-to-up-to-4m-net-unrealized-profit-and-loss" | "height-to-year-2012-input-count" | "height-to-year-2023-net-unrealized-profit-and-loss-to-market-cap-ratio" | "height-to-shrimp-75p-price-paid" | "height-to-illiquid-supply-in-loss" | "height-to-market-price-to-year-2022-realized-price-ratio" | "height-to-market-price-to-from-1y-realized-price-ratio" | "height-to-year-2021-supply-in-profit" | "height-to-fish-supply-in-loss" | "height-to-up-to-1d-negative-unrealized-loss" | "height-to-up-to-5m-cumulative-net-realized-profit-and-loss-1m-net-change" | "height-to-year-2019-realized-price-99-5p" | "height-to-up-to-3y-90p-price-paid" | "height-to-from-10y-60p-price-paid" | "height-to-up-to-1d-cumulative-realized-profit" | "height-to-year-2012-60p-price-paid" | "height-to-up-to-10y-30p-price-paid" | "height-to-market-price-to-price-55d-sma-ratio-1y-sma" | "height-to-year-2022-65p-price-paid" | "height-to-market-price-to-from-2y-realized-price-ratio" | "height-to-up-to-15y-realized-profit" | "height-to-year-2024-10p-price-paid" | "height-to-from-2y-to-3y-70p-price-paid" | "height-to-up-to-15y-net-unrealized-profit-and-loss" | "height-to-market-price-to-p2wsh-realized-price-ratio-0-5p" | "height-to-plankton-realized-price" | "height-to-market-price-to-fish-realized-price-ratio" | "height-to-market-price-to-whale-realized-price-ratio-1y-sma" | "height-to-year-2017-realized-price-1p" | "height-to-from-2y-30p-price-paid" | "height-to-up-to-7y-realized-price-1p" | "height-to-from-2y-to-3y-35p-price-paid" | "height-to-year-2018-supply" | "height-to-year-2014-value-created" | "height-to-up-to-4m-supply-in-loss" | "height-to-from-2y-65p-price-paid" | "height-to-from-3m-to-6m-spent-output-profit-ratio" | "height-to-from-4y-median-price-paid" | "height-to-p2tr-95p-price-paid" | "height-to-sth-spent-output-profit-ratio" | "height-to-up-to-1m-95p-price-paid" | "height-to-from-1y-halved-supply-to-circulating-supply-ratio" | "height-to-price-200w-sma-0-1p" | "height-to-up-to-5y-10p-price-paid" | "height-to-market-price-to-price-1w-sma-ratio-99-9p" | "height-to-year-2022-supply-in-loss-to-circulating-supply-ratio" | "height-to-liquid-supply-in-profit-to-own-supply-ratio" | "height-to-shrimp-45p-price-paid" | "height-to-realized-price-99-9p" | "height-to-p2tr-30p-price-paid" | "height-to-up-to-1y-value-destroyed" | "height-to-year-2011-realized-price-0-1p" | "height-to-up-to-5m-60p-price-paid" | "height-to-year-2009-realized-loss" | "height-to-from-15y-35p-price-paid" | "height-to-up-to-2y-supply-to-circulating-supply-ratio" | "height-to-up-to-10y-value-created" | "height-to-up-to-1d-45p-price-paid" | "height-to-year-2013-value-created" | "height-to-from-1d-to-1w-40p-price-paid" | "height-to-highly-liquid-realized-price" | "height-to-year-2009-60p-price-paid" | "height-to-up-to-1d-05p-price-paid" | "height-to-market-price-to-year-2013-realized-price-ratio-0-1p" | "height-to-year-2019-25p-price-paid" | "height-to-from-7y-to-10y-supply" | "height-to-market-price-to-cointime-price-ratio-1y-sma-momentum-oscillator" | "height-to-up-to-1d-cumulative-net-realized-profit-and-loss" | "height-to-shark-spent-output-profit-ratio" | "height-to-year-2014-supply-in-loss" | "height-to-illiquid-85p-price-paid" | "height-to-lth-supply-to-circulating-supply-ratio" | "height-to-market-price-to-whale-realized-price-ratio-1p" | "height-to-from-1y-05p-price-paid" | "height-to-p2sh-supply" | "height-to-up-to-5m-realized-profit" | "height-to-sth-supply-in-loss" | "height-to-year-2010-realized-price-99-5p" | "height-to-up-to-15y-value-destroyed" | "height-to-year-2018-cumulative-realized-loss" | "height-to-from-7y-to-10y-realized-price-99-5p" | "height-to-coinbase" | "height-to-from-2y-to-3y-supply-in-loss" | "height-to-from-2y-45p-price-paid" | "height-to-year-2013-realized-price-99-5p" | "height-to-humpback-net-unrealized-profit-and-loss-to-market-cap-ratio" | "height-to-market-price-to-year-2024-realized-price-ratio-1w-sma" | "height-to-from-10y-to-15y-realized-cap-1m-net-change" | "height-to-market-price-to-p2wpkh-realized-price-ratio-0-5p" | "height-to-p2sh-realized-price" | "height-to-up-to-5y-supply-in-loss-to-own-supply-ratio" | "height-to-year-2013-realized-price-0-1p" | "height-to-year-2018-realized-cap-1m-net-change" | "height-to-year-2021-supply-in-loss-to-own-supply-ratio" | "height-to-year-2022-25p-price-paid" | "height-to-market-price-to-up-to-1y-realized-price-ratio-0-1p" | "height-to-up-to-2y-supply-in-profit-to-own-supply-ratio" | "height-to-from-1m-to-3m-net-realized-profit-and-loss" | "height-to-humpback-supply-in-loss-to-own-supply-ratio" | "height-to-market-price-to-year-2012-realized-price-ratio-1w-sma" | "height-to-up-to-6m-net-realized-profit-and-loss-to-market-cap-ratio" | "height-to-up-to-1d-90p-price-paid" | "height-to-year-2024-realized-price-99-5p" | "height-to-year-2023-10p-price-paid" | "height-to-p2wsh-30p-price-paid" | "height-to-from-10y-to-15y-85p-price-paid" | "height-to-year-2024-unrealized-profit" | "height-to-year-2010-40p-price-paid" | "height-to-lth-input-count" | "height-to-illiquid-supply-to-circulating-supply-ratio" | "height-to-up-to-1d-realized-price-99-9p" | "height-to-market-price-to-year-2014-realized-price-ratio" | "height-to-highly-liquid-address-count" | "height-to-from-5y-to-7y-realized-price-99-5p" | "height-to-up-to-15y-80p-price-paid" | "height-to-year-2009-90p-price-paid" | "height-to-from-1m-to-3m-realized-loss" | "height-to-year-2021-60p-price-paid" | "height-to-up-to-1d-40p-price-paid" | "height-to-up-to-5m-20p-price-paid" | "height-to-market-price-to-from-1y-to-2y-realized-price-ratio-99p" | "height-to-price-1w-sma-0-1p" | "height-to-from-1y-to-2y-supply-in-loss-to-own-supply-ratio" | "height-to-shrimp-net-realized-profit-and-loss-to-market-cap-ratio" | "height-to-up-to-2m-cumulative-net-realized-profit-and-loss-1m-net-change" | "height-to-adjusted-value-destroyed" | "height-to-year-2024-80p-price-paid" | "height-to-from-1m-to-3m-unrealized-profit" | "height-to-from-3y-to-5y-supply-in-loss-to-own-supply-ratio" | "height-to-market-price-to-p2pkh-realized-price-ratio-99-5p" | "height-to-plankton-realized-price-1p" | "height-to-year-2016-supply-to-circulating-supply-ratio" | "height-to-year-2024-95p-price-paid" | "height-to-value-destroyed" | "height-to-investorness" | "height-to-market-price-to-from-5y-to-7y-realized-price-ratio-1y-sma-momentum-oscillator" | "height-to-p2sh-supply-to-circulating-supply-ratio" | "height-to-shrimp-30p-price-paid" | "height-to-from-7y-to-10y-70p-price-paid" | "height-to-p2wpkh-supply-in-profit-to-own-supply-ratio" | "height-to-up-to-10y-value-destroyed" | "height-to-up-to-1w-35p-price-paid" | "height-to-crab-adjusted-spent-output-profit-ratio" | "height-to-up-to-3m-realized-price-99p" | "height-to-up-to-2y-cumulative-net-realized-profit-and-loss" | "height-to-year-2009-spent-output-profit-ratio" | "height-to-from-4y-10p-price-paid" | "height-to-up-to-10y-65p-price-paid" | "height-to-price-144d-sma-99p" | "height-to-market-price-to-lth-realized-price-ratio" | "height-to-year-2015-net-unrealized-profit-and-loss-to-market-cap-ratio" | "height-to-year-2020-90p-price-paid" | "height-to-from-10y-realized-profit" | "height-to-market-price-to-up-to-5y-realized-price-ratio-99p" | "height-to-market-price-to-from-1y-realized-price-ratio-99-9p" | "height-to-liquid-value-created" | "height-to-year-2020-adjusted-spent-output-profit-ratio" | "height-to-up-to-1m-30p-price-paid" | "height-to-shrimp-realized-price" | "height-to-megalodon-supply" | "height-to-market-price-to-from-4y-realized-price-ratio-99-5p" | "height-to-year-2016-net-unrealized-profit-and-loss" | "height-to-market-price-to-active-price-ratio-1y-sma-momentum-oscillator" | "height-to-illiquid-65p-price-paid" | "height-to-up-to-10y-10p-price-paid" | "height-to-humpback-unrealized-profit" | "height-to-p2sh-median-price-paid" | "height-to-up-to-1m-adjusted-value-destroyed" | "height-to-up-to-5y-median-price-paid" | "height-to-p2pkh-realized-price" | "height-to-year-2022-adjusted-value-created" | "height-to-market-price-to-from-5y-to-7y-realized-price-ratio-0-1p" | "height-to-market-price-to-from-1w-to-1m-realized-price-ratio-1w-sma" | "height-to-sth-value-destroyed" | "height-to-whale-input-volume" | "height-to-market-price-to-shrimp-realized-price-ratio-1y-sma-momentum-oscillator" | "height-to-up-to-1w-realized-price-0-1p" | "height-to-up-to-1y-input-count" | "height-to-p2tr-adjusted-value-destroyed" | "height-to-megalodon-95p-price-paid" | "height-to-year-2021-adjusted-value-created" | "height-to-up-to-7y-75p-price-paid" | "height-to-from-10y-cumulative-net-realized-profit-and-loss-1m-net-change" | "height-to-year-2011-negative-unrealized-loss" | "height-to-year-2011-realized-profit" | "height-to-up-to-10y-supply-to-circulating-supply-ratio" | "height-to-year-2009-supply-in-profit-to-circulating-supply-ratio" | "height-to-plankton-realized-cap-1m-net-change" | "height-to-price-13d-sma-99p" | "height-to-sth-unrealized-loss" | "height-to-year-2015-10p-price-paid" | "height-to-market-price-to-up-to-1w-realized-price-ratio-99p" | "height-to-market-price-to-illiquid-realized-price-ratio-0-5p" | "height-to-year-2014-net-realized-profit-and-loss" | "height-to-from-5y-to-7y-net-realized-profit-and-loss-to-market-cap-ratio" | "height-to-up-to-1w-median-price-paid" | "height-to-up-to-3y-85p-price-paid" | "height-to-plankton-55p-price-paid" | "height-to-year-2009-realized-price-1p" | "height-to-year-2018-realized-price-99-5p" | "height-to-sth-25p-price-paid" | "height-to-year-2022-85p-price-paid" | "height-to-market-price-to-from-3m-to-6m-realized-price-ratio-99p" | "height-to-from-10y-25p-price-paid" | "height-to-p2wpkh-cumulative-net-realized-profit-and-loss" | "height-to-fish-spent-output-profit-ratio" | "height-to-market-price-to-p2pkh-realized-price-ratio-99-9p" | "height-to-market-price-to-year-2010-realized-price-ratio-1p" | "height-to-up-to-4m-05p-price-paid" | "height-to-p2sh-negative-unrealized-loss" | "height-to-lth-75p-price-paid" | "height-to-market-price-to-p2pk-realized-price-ratio-1w-sma" | "height-to-market-price-to-liquid-realized-price-ratio-99-9p" | "height-to-p2tr-realized-price-1p" | "height-to-from-15y-unrealized-profit" | "height-to-shrimp-55p-price-paid" | "height-to-year-2009-30p-price-paid" | "height-to-crab-90p-price-paid" | "height-to-market-price-to-price-2y-sma-ratio-1y-sma" | "height-to-year-2016-net-realized-profit-and-loss-to-market-cap-ratio" | "height-to-from-10y-to-15y-80p-price-paid" | "height-to-up-to-1d-realized-price-99-5p" | "height-to-lth-40p-price-paid" | "height-to-up-to-1w-net-realized-profit-and-loss" | "height-to-year-2016-15p-price-paid" | "height-to-up-to-7y-70p-price-paid" | "height-to-market-price-to-price-1m-sma-ratio-99-5p" | "height-to-market-price-to-from-1d-to-1w-realized-price-ratio-1y-sma-momentum-oscillator" | "height-to-shark-value-destroyed" | "height-to-up-to-6m-25p-price-paid" | "height-to-up-to-2m-halved-supply" | "height-to-price-1y-sma" | "height-to-from-2y-to-3y-55p-price-paid" | "height-to-market-price-to-shark-realized-price-ratio-0-5p" | "height-to-from-1w-to-1m-net-unrealized-profit-and-loss" | "height-to-market-price-to-up-to-7y-realized-price-ratio-1w-sma" | "height-to-p2wpkh-realized-price-99-5p" | "height-to-up-to-15y-cumulative-net-realized-profit-and-loss-1m-net-change" | "height-to-p2pk-70p-price-paid" | "height-to-up-to-1y-realized-cap" | "height-to-liquid-25p-price-paid" | "height-to-from-10y-to-15y-55p-price-paid" | "height-to-market-price-to-from-5y-to-7y-realized-price-ratio-1p" | "height-to-shark-adjusted-value-destroyed" | "height-to-from-1w-to-1m-05p-price-paid" | "height-to-from-1m-to-3m-supply-in-loss-to-own-supply-ratio" | "height-to-market-price-to-up-to-4m-realized-price-ratio-1m-sma" | "height-to-market-price-to-year-2019-realized-price-ratio-99-5p" | "height-to-p2tr-supply-in-loss" | "height-to-up-to-6m-85p-price-paid" | "height-to-market-price-to-year-2013-realized-price-ratio-99-9p" | "height-to-market-price-to-from-1m-to-3m-realized-price-ratio-1p" | "height-to-plankton-supply-in-loss-to-own-supply-ratio" | "height-to-price-4y-sma-99-5p" | "height-to-p2sh-input-count" | "height-to-up-to-7y-net-unrealized-profit-and-loss-to-market-cap-ratio" | "height-to-from-2y-supply-in-loss-to-circulating-supply-ratio" | "height-to-liquid-30p-price-paid" | "height-to-year-2024-supply-in-loss-to-circulating-supply-ratio" | "height-to-up-to-1m-supply-in-profit-to-circulating-supply-ratio" | "height-to-illiquid-20p-price-paid" | "height-to-up-to-1d-realized-price-1p" | "height-to-p2wpkh-unrealized-profit" | "height-to-market-price-to-crab-realized-price-ratio-1p" | "height-to-market-price-to-from-10y-to-15y-realized-price-ratio-99p" | "height-to-p2tr-realized-price-99-9p" | "height-to-up-to-4m-adjusted-value-created" | "height-to-market-price-to-from-1y-to-2y-realized-price-ratio-99-5p" | "height-to-p2sh-input-volume" | "height-to-up-to-1y-85p-price-paid" | "height-to-p2pkh-realized-price-99-9p" | "height-to-p2pkh-realized-profit" | "height-to-year-2023-unrealized-profit" | "height-to-year-2012-supply-in-profit-to-own-supply-ratio" | "height-to-year-2016-adjusted-spent-output-profit-ratio" | "height-to-from-2y-supply" | "height-to-market-price-to-from-1m-to-3m-realized-price-ratio-0-1p" | "height-to-p2pk-realized-cap-1m-net-change" | "height-to-from-1w-to-1m-15p-price-paid" | "height-to-market-price-to-year-2022-realized-price-ratio-1y-sma" | "height-to-market-price-to-price-1w-sma-ratio-99-5p" | "height-to-year-2012-20p-price-paid" | "height-to-market-price-to-from-1w-to-1m-realized-price-ratio-1m-sma" | "height-to-megalodon-cumulative-net-realized-profit-and-loss-1m-net-change" | "height-to-year-2013-15p-price-paid" | "height-to-from-10y-realized-cap-1m-net-change" | "height-to-year-2016-cumulative-net-realized-profit-and-loss-1m-net-change" | "height-to-from-7y-to-10y-supply-to-circulating-supply-ratio" | "height-to-up-to-3m-supply-to-circulating-supply-ratio" | "height-to-market-price-to-price-8d-sma-ratio-99-5p" | "height-to-market-price-to-up-to-5m-realized-price-ratio-99p" | "height-to-from-10y-to-15y-realized-price-99-5p" | "height-to-from-2y-utxo-count" | "height-to-from-5y-to-7y-65p-price-paid" | "height-to-from-7y-to-10y-negative-realized-loss" | "height-to-market-price-to-p2tr-realized-price-ratio-99-5p" | "height-to-market-price-to-up-to-2m-realized-price-ratio-1m-sma" | "height-to-market-price-to-up-to-7y-realized-price-ratio-99-5p" | "height-to-market-price-to-year-2018-realized-price-ratio-1y-sma-momentum-oscillator" | "height-to-lth-cumulative-realized-loss" | "height-to-p2wsh-65p-price-paid" | "height-to-from-10y-cumulative-net-realized-profit-and-loss" | "height-to-price-1m-sma-99-5p" | "height-to-price-55d-sma-99-9p" | "height-to-up-to-1y-unrealized-loss" | "height-to-up-to-3y-60p-price-paid" | "height-to-year-2010-20p-price-paid" | "height-to-year-2014-30p-price-paid" | "height-to-year-2021-unrealized-profit" | "height-to-market-price-to-up-to-1m-realized-price-ratio-99p" | "height-to-from-1m-to-3m-55p-price-paid" | "height-to-vaulted-price-99-9p" | "height-to-year-2019-realized-price-0-1p" | "height-to-from-5y-to-7y-70p-price-paid" | "height-to-market-price-to-from-10y-to-15y-realized-price-ratio-0-5p" | "height-to-year-2012-supply-in-profit" | "height-to-plankton-halved-supply-to-circulating-supply-ratio" | "height-to-up-to-15y-supply-in-loss-to-circulating-supply-ratio" | "height-to-humpback-value-destroyed" | "height-to-p2wpkh-supply-in-profit-to-circulating-supply-ratio" | "height-to-p2sh-70p-price-paid" | "height-to-shrimp-65p-price-paid" | "height-to-shark-cumulative-realized-loss" | "height-to-cumulative-coinbase-in-dollars" | "height-to-from-2y-to-3y-25p-price-paid" | "height-to-market-price-to-cointime-price-ratio-1p" | "height-to-sth-supply-in-profit-to-own-supply-ratio" | "height-to-supply-in-profit-to-circulating-supply-ratio" | "height-to-total-cointime-value-destroyed" | "height-to-up-to-5y-05p-price-paid" | "height-to-year-2015-85p-price-paid" | "height-to-from-10y-halved-supply" | "height-to-year-2011-supply-in-loss" | "height-to-from-4y-95p-price-paid" | "height-to-market-price-to-price-8d-sma-ratio-0-1p" | "height-to-lth-70p-price-paid" | "height-to-from-1y-to-2y-value-destroyed" | "height-to-market-price-to-from-6m-to-1y-realized-price-ratio-0-5p" | "height-to-sth-realized-loss" | "height-to-whale-realized-value" | "height-to-year-2024-adjusted-spent-output-profit-ratio" | "height-to-humpback-realized-value" | "height-to-up-to-2y-value-destroyed" | "height-to-from-3m-to-6m-unrealized-loss" | "height-to-sth-net-realized-profit-and-loss" | "height-to-up-to-4m-halved-supply" | "height-to-year-2019-40p-price-paid" | "height-to-year-2023-net-realized-profit-and-loss-to-market-cap-ratio" | "height-to-market-price-to-from-6m-to-1y-realized-price-ratio-99-5p" | "height-to-from-3y-to-5y-20p-price-paid" | "height-to-from-10y-spent-output-profit-ratio" | "height-to-fish-unrealized-loss" | "height-to-liveliness-net-change" | "height-to-up-to-2y-realized-price-1p" | "height-to-year-2011-value-created" | "height-to-from-3y-to-5y-cumulative-realized-profit" | "height-to-market-price-to-year-2020-realized-price-ratio-1y-sma-momentum-oscillator" | "height-to-year-2015-realized-price-99-9p" | "height-to-year-2012-median-price-paid" | "height-to-from-1w-to-1m-realized-price-0-5p" | "height-to-market-price-to-from-1y-realized-price-ratio-99-5p" | "height-to-coinbase-in-dollars" | "height-to-market-price-to-year-2011-realized-price-ratio-0-5p" | "height-to-year-2009-negative-unrealized-loss" | "height-to-market-price-to-from-15y-realized-price-ratio" | "height-to-up-to-7y-input-volume" | "height-to-market-price-to-liquid-realized-price-ratio-99p" | "height-to-market-price-to-up-to-2m-realized-price-ratio-99-5p" | "height-to-market-price-to-year-2021-realized-price-ratio-99p" | "height-to-from-1y-to-2y-supply-in-profit" | "height-to-market-price-to-cointime-price-ratio-99p" | "height-to-humpback-20p-price-paid" | "height-to-sth-55p-price-paid" | "height-to-from-3y-to-5y-halved-supply" | "height-to-from-1y-cumulative-net-realized-profit-and-loss" | "height-to-megalodon-supply-to-circulating-supply-ratio" | "height-to-market-price-to-price-1y-sma-ratio-0-1p" | "height-to-megalodon-realized-cap-1m-net-change" | "height-to-up-to-1d-55p-price-paid" | "height-to-year-2015-spent-output-profit-ratio" | "height-to-sth-unrealized-profit" | "height-to-year-2017-40p-price-paid" | "height-to-up-to-4m-cumulative-net-realized-profit-and-loss-1m-net-change" | "height-to-year-2019-negative-realized-loss" | "height-to-year-2022-supply-in-profit" | "height-to-up-to-6m-realized-price-99-5p" | "height-to-up-to-7y-80p-price-paid" | "height-to-difficulty" | "height-to-up-to-2y-realized-price" | "height-to-liquid-supply-in-loss-to-circulating-supply-ratio" | "height-to-from-2y-85p-price-paid" | "height-to-from-7y-to-10y-supply-in-profit" | "height-to-crab-unrealized-profit" | "height-to-market-price-to-from-1y-to-2y-realized-price-ratio-1m-sma" | "height-to-market-price-to-price-2y-sma-ratio-1m-sma" | "height-to-sth-30p-price-paid" | "height-to-shark-supply-in-profit-to-own-supply-ratio" | "height-to-sth-negative-realized-loss" | "height-to-up-to-15y-realized-price-99-5p" | "height-to-up-to-1y-cumulative-net-realized-profit-and-loss-1m-net-change" | "height-to-up-to-4m-supply-in-profit" | "height-to-year-2019-cumulative-realized-profit" | "height-to-30p-price-paid" | "height-to-shark-cumulative-net-realized-profit-and-loss" | "height-to-p2wsh-40p-price-paid" | "height-to-up-to-10y-negative-unrealized-loss" | "height-to-year-2023-adjusted-spent-output-profit-ratio" | "height-to-year-2012-10p-price-paid" | "height-to-whale-adjusted-value-created" | "height-to-year-2011-net-realized-profit-and-loss-to-market-cap-ratio" | "height-to-up-to-5y-25p-price-paid" | "height-to-year-2012-negative-realized-loss" | "height-to-megalodon-adjusted-value-created" | "height-to-market-price-to-lth-realized-price-ratio-1y-sma" | "height-to-market-price-to-p2sh-realized-price-ratio-1w-sma" | "height-to-p2pkh-realized-cap-1m-net-change" | "height-to-year-2024-adjusted-value-destroyed" | "height-to-market-price-to-from-3y-to-5y-realized-price-ratio-1p" | "height-to-from-4y-15p-price-paid" | "height-to-shrimp-supply-in-loss-to-own-supply-ratio" | "height-to-from-7y-to-10y-95p-price-paid" | "height-to-megalodon-negative-realized-loss" | "height-to-market-price-to-from-2y-to-3y-realized-price-ratio-99p" | "height-to-year-2024-60p-price-paid" | "height-to-cumulative-net-realized-profit-and-loss-1m-net-change" | "height-to-year-2019-realized-loss" | "height-to-up-to-1d-65p-price-paid" | "height-to-highly-liquid-85p-price-paid" | "height-to-up-to-4m-90p-price-paid" | "height-to-vaulted-supply-3m-net-change" | "height-to-year-2023-input-count" | "height-to-highly-liquid-realized-price-99-5p" | "height-to-from-2y-to-3y-realized-cap-1m-net-change" | "height-to-market-price-to-up-to-1m-realized-price-ratio-1y-sma" | "height-to-p2sh-65p-price-paid" | "height-to-from-2y-to-3y-realized-price-99-5p" | "height-to-p2wsh-net-unrealized-profit-and-loss" | "height-to-price-1y-sma-99-9p" | "height-to-market-price-to-price-4y-sma-ratio-99-5p" | "height-to-block-interval" | "height-to-shrimp-supply-in-profit-to-own-supply-ratio" | "height-to-sth-70p-price-paid" | "height-to-up-to-1y-supply" | "height-to-market-price-to-p2wpkh-realized-price-ratio-1p" | "height-to-up-to-3y-halved-supply-to-circulating-supply-ratio" | "height-to-market-price-to-up-to-2y-realized-price-ratio-99-5p" | "height-to-from-2y-to-3y-adjusted-value-destroyed" | "height-to-p2sh-realized-loss" | "height-to-up-to-1d-halved-supply-to-circulating-supply-ratio" | "height-to-whale-55p-price-paid" | "height-to-year-2011-median-price-paid" | "height-to-year-2021-45p-price-paid" | "height-to-up-to-3y-80p-price-paid" | "height-to-year-2021-realized-value" | "height-to-liquid-75p-price-paid" | "height-to-up-to-15y-supply-in-profit-to-own-supply-ratio" | "height-to-market-price-to-up-to-2y-realized-price-ratio-1y-sma-momentum-oscillator" | "height-to-whale-supply-in-profit-to-circulating-supply-ratio" | "height-to-from-1d-to-1w-unrealized-loss" | "height-to-year-2011-25p-price-paid" | "height-to-year-2011-85p-price-paid" | "height-to-up-to-5y-15p-price-paid" | "height-to-up-to-3y-40p-price-paid" | "height-to-market-price-to-highly-liquid-realized-price-ratio-1p" | "height-to-market-price-to-plankton-realized-price-ratio-0-1p" | "height-to-market-price-to-year-2017-realized-price-ratio-1y-sma-momentum-oscillator" | "height-to-p2wsh-net-realized-profit-and-loss-to-market-cap-ratio" | "height-to-year-2017-cumulative-realized-loss" | "height-to-up-to-1w-90p-price-paid" | "height-to-year-2009-20p-price-paid" | "height-to-from-1w-to-1m-60p-price-paid" | "height-to-market-price-to-price-8d-sma-ratio-1m-sma" | "height-to-year-2019-realized-profit" | "height-to-market-price-to-up-to-4m-realized-price-ratio-99p" | "height-to-year-2023-halved-supply-to-circulating-supply-ratio" | "height-to-up-to-10y-realized-cap-1m-net-change" | "height-to-from-1y-to-2y-35p-price-paid" | "height-to-market-price-to-price-21d-sma-ratio" | "height-to-market-price-to-plankton-realized-price-ratio-99p" | "height-to-p2pk-realized-price" | "height-to-p2pkh-net-unrealized-profit-and-loss" | "height-to-year-2012-adjusted-value-created" | "height-to-year-2020-cumulative-realized-loss" | "height-to-year-2016-90p-price-paid" | "height-to-p2pk-realized-price-99p" | "height-to-year-2016-95p-price-paid" | "height-to-year-2012-45p-price-paid" | "height-to-year-2015-30p-price-paid" | "height-to-highly-liquid-realized-loss" | "height-to-up-to-1m-realized-value" | "height-to-from-1y-unrealized-loss" | "height-to-up-to-2y-adjusted-value-created" | "height-to-year-2015-halved-supply-to-circulating-supply-ratio" | "height-to-shark-supply-to-circulating-supply-ratio" | "height-to-crab-cumulative-net-realized-profit-and-loss" | "height-to-up-to-6m-realized-profit" | "height-to-p2pkh-supply-in-profit-to-circulating-supply-ratio" | "height-to-from-15y-supply" | "height-to-year-2023-input-volume" | "height-to-market-price-to-up-to-6m-realized-price-ratio" | "height-to-market-price-to-illiquid-realized-price-ratio-99p" | "height-to-market-price-to-from-10y-realized-price-ratio-0-1p" | "height-to-market-price-to-year-2023-realized-price-ratio-0-1p" | "height-to-p2pk-adjusted-spent-output-profit-ratio" | "height-to-megalodon-45p-price-paid" | "height-to-up-to-1d-net-realized-profit-and-loss-to-market-cap-ratio" | "height-to-up-to-4m-realized-price-99p" | "height-to-market-price-to-p2pk-realized-price-ratio-99-9p" | "height-to-up-to-2m-realized-price-99p" | "height-to-p2tr-40p-price-paid" | "height-to-from-10y-realized-price-99-9p" | "height-to-market-price-to-from-3y-to-5y-realized-price-ratio-1m-sma" | "height-to-up-to-2m-median-price-paid" | "height-to-up-to-1w-15p-price-paid" | "height-to-year-2009-55p-price-paid" | "height-to-from-3m-to-6m-input-volume" | "height-to-year-2022-supply" | "height-to-market-price-to-year-2020-realized-price-ratio" | "height-to-shrimp-realized-price-99-9p" | "height-to-year-2012-85p-price-paid" | "height-to-price-8d-sma-99p" | "height-to-from-2y-to-3y-10p-price-paid" | "height-to-up-to-15y-input-volume" | "height-to-1" | "height-to-from-7y-to-10y-value-destroyed" | "height-to-plankton-adjusted-value-destroyed" | "height-to-up-to-5y-net-unrealized-profit-and-loss-to-market-cap-ratio" | "height-to-year-2016-supply-in-profit-to-circulating-supply-ratio" | "height-to-year-2023-70p-price-paid" | "height-to-year-2023-realized-price-1p" | "height-to-from-15y-realized-price-99-9p" | "height-to-price-4y-sma-0-1p" | "height-to-plankton-cumulative-net-realized-profit-and-loss" | "height-to-from-7y-to-10y-90p-price-paid" | "height-to-illiquid-10p-price-paid" | "height-to-p2tr-halved-supply-to-circulating-supply-ratio" | "height-to-from-1w-to-1m-median-price-paid" | "height-to-up-to-1d-25p-price-paid" | "height-to-up-to-2y-65p-price-paid" | "height-to-p2wsh-realized-price" | "height-to-p2pk-realized-price-1p" | "height-to-vaulted-supply" | "height-to-market-price-to-up-to-4m-realized-price-ratio-1p" | "height-to-year-2020-net-realized-profit-and-loss-to-market-cap-ratio" | "height-to-market-price-to-price-55d-sma-ratio-1p" | "height-to-up-to-3m-unrealized-loss" | "height-to-from-6m-to-1y-input-volume" | "height-to-market-price-to-p2wsh-realized-price-ratio" | "height-to-megalodon-median-price-paid" | "height-to-crab-realized-price-99-9p" | "height-to-year-2024-cumulative-realized-loss" | "height-to-market-price-to-year-2018-realized-price-ratio-1m-sma" | "height-to-p2sh-90p-price-paid" | "height-to-up-to-2m-10p-price-paid" | "height-to-up-to-2m-adjusted-value-destroyed" | "height-to-from-3y-to-5y-supply-in-loss-to-circulating-supply-ratio" | "height-to-year-2009-realized-cap-1m-net-change" | "height-to-p2pk-unrealized-profit" | "height-to-illiquid-adjusted-value-created" | "height-to-up-to-1y-negative-unrealized-loss" | "height-to-highly-liquid-unrealized-loss" | "height-to-market-price-to-year-2019-realized-price-ratio" | "height-to-from-3m-to-6m-25p-price-paid" | "height-to-from-3y-to-5y-85p-price-paid" | "height-to-from-3y-to-5y-input-count" | "height-to-market-price-to-price-55d-sma-ratio" | "height-to-p2pkh-55p-price-paid" | "height-to-up-to-15y-25p-price-paid" | "height-to-up-to-5y-halved-supply-to-circulating-supply-ratio" | "height-to-price-144d-sma-0-5p" | "height-to-p2sh-cumulative-realized-loss" | "height-to-25p-price-paid" | "height-to-from-5y-to-7y-supply" | "height-to-market-price-to-up-to-5m-realized-price-ratio" | "height-to-from-10y-net-unrealized-profit-and-loss" | "height-to-market-price-to-from-3y-to-5y-realized-price-ratio-0-5p" | "height-to-up-to-5m-65p-price-paid" | "height-to-up-to-2m-realized-value" | "height-to-year-2023-realized-price-99-5p" | "height-to-up-to-1w-net-unrealized-profit-and-loss-to-market-cap-ratio" | "height-to-year-2013-30p-price-paid" | "height-to-p2pkh-supply" | "height-to-year-2015-55p-price-paid" | "height-to-year-2022-80p-price-paid" | "height-to-from-1y-to-2y-net-unrealized-profit-and-loss-to-market-cap-ratio" | "height-to-from-3m-to-6m-supply-in-profit-to-own-supply-ratio" | "height-to-shark-negative-realized-loss" | "height-to-year-2013-cumulative-realized-profit" | "height-to-market-price-to-year-2022-realized-price-ratio-1y-sma-momentum-oscillator" | "height-to-p2wpkh-40p-price-paid" | "height-to-year-2023-realized-cap-1m-net-change" | "height-to-liquid-realized-price-99-9p" | "height-to-market-price-to-price-8d-sma-ratio-1w-sma" | "height-to-plankton-input-volume" | "height-to-shrimp-realized-price-1p" | "height-to-up-to-2y-median-price-paid" | "height-to-up-to-4m-realized-price-99-5p" | "height-to-active-price" | "height-to-year-2014-85p-price-paid" | "height-to-sth-supply" | "height-to-market-price-to-up-to-3m-realized-price-ratio-99-5p" | "height-to-market-price-to-year-2022-realized-price-ratio-99-9p" | "height-to-year-2010-90p-price-paid" | "height-to-market-price-to-fish-realized-price-ratio-0-1p" | "height-to-sth-realized-price-0-5p" | "height-to-from-4y-05p-price-paid" | "height-to-liquid-net-realized-profit-and-loss-to-market-cap-ratio" | "height-to-highly-liquid-10p-price-paid" | "height-to-from-15y-cumulative-realized-profit" | "height-to-from-7y-to-10y-45p-price-paid" | "height-to-price-34d-sma-1p" | "height-to-from-1m-to-3m-adjusted-value-destroyed" | "height-to-year-2013-halved-supply-to-circulating-supply-ratio" | "height-to-year-2019-realized-price-99p" | "height-to-up-to-1d-utxo-count" | "height-to-price-34d-sma-0-1p" | "height-to-up-to-3m-realized-price-99-9p" | "height-to-up-to-1y-realized-price-1p" | "height-to-year-2022-spent-output-profit-ratio" | "height-to-fish-adjusted-value-created" | "height-to-from-3y-to-5y-realized-price" | "height-to-from-1y-realized-price-99p" | "height-to-p2tr-input-volume" | "height-to-from-4y-40p-price-paid" | "height-to-p2sh-negative-realized-loss" | "height-to-market-price-to-from-1w-to-1m-realized-price-ratio-99-5p" | "height-to-market-price-to-vaulted-price-ratio-0-5p" | "height-to-year-2023-adjusted-value-created" | "height-to-plankton-net-realized-profit-and-loss-to-market-cap-ratio" | "height-to-p2pk-adjusted-value-destroyed" | "height-to-p2wsh-cumulative-realized-loss" | "height-to-year-2011-15p-price-paid" | "height-to-p2wpkh-20p-price-paid" | "height-to-shrimp-80p-price-paid" | "height-to-from-10y-to-15y-supply-in-loss-to-circulating-supply-ratio" | "height-to-year-2020-negative-unrealized-loss" | "height-to-realized-price-99p" | "height-to-sats-per-dollar" | "height-to-liquid-80p-price-paid" | "height-to-shark-realized-price-99-5p" | "height-to-shrimp-supply-in-profit" | "height-to-year-2023-cumulative-net-realized-profit-and-loss-1m-net-change" | "height-to-fish-adjusted-value-destroyed" | "height-to-humpback-supply" | "height-to-market-price-to-from-15y-realized-price-ratio-1w-sma" | "height-to-market-price-to-liquid-realized-price-ratio-1w-sma" | "height-to-from-10y-negative-realized-loss" | "height-to-from-10y-to-15y-realized-price-0-1p" | "height-to-market-price-to-up-to-3y-realized-price-ratio-1w-sma" | "height-to-market-price-to-price-21d-sma-ratio-1y-sma-momentum-oscillator" | "height-to-crab-supply-in-loss-to-own-supply-ratio" | "height-to-year-2009-supply-in-profit" | "height-to-market-price-to-year-2011-realized-price-ratio-99-9p" | "height-to-year-2011-supply-in-loss-to-own-supply-ratio" | "height-to-market-price-to-up-to-15y-realized-price-ratio-1m-sma" | "height-to-highly-liquid-05p-price-paid" | "height-to-market-price-to-from-3y-to-5y-realized-price-ratio-99-5p" | "height-to-p2pk-95p-price-paid" | "height-to-p2pkh-value-created" | "height-to-year-2016-utxo-count" | "height-to-p2wsh-realized-price-99-5p" | "height-to-year-2023-realized-price" | "height-to-year-2023-realized-cap" | "height-to-from-1y-to-2y-median-price-paid" | "height-to-from-6m-to-1y-supply-in-profit-to-circulating-supply-ratio" | "height-to-market-price-to-year-2009-realized-price-ratio-1y-sma-momentum-oscillator" | "height-to-year-2019-halved-supply" | "height-to-humpback-10p-price-paid" | "height-to-up-to-3y-65p-price-paid" | "height-to-humpback-40p-price-paid" | "height-to-p2pkh-supply-to-circulating-supply-ratio" | "height-to-price-1w-sma-99-5p" | "height-to-shark-30p-price-paid" | "height-to-up-to-3y-realized-price-0-1p" | "height-to-year-2015-15p-price-paid" | "height-to-year-2017-realized-value" | "height-to-year-2018-realized-cap" | "height-to-crab-unrealized-loss" | "height-to-market-price-to-from-3y-to-5y-realized-price-ratio-1y-sma" | "height-to-supply-in-loss" | "height-to-up-to-1y-25p-price-paid" | "height-to-from-5y-to-7y-realized-price" | "height-to-from-7y-to-10y-median-price-paid" | "height-to-market-price-to-price-1m-sma-ratio" | "height-to-plankton-70p-price-paid" | "height-to-up-to-2m-utxo-count" | "height-to-from-1y-to-2y-85p-price-paid" | "height-to-shark-median-price-paid" | "height-to-up-to-5m-realized-cap-1m-net-change" | "height-to-65p-price-paid" | "height-to-year-2013-40p-price-paid" | "height-to-market-price-to-p2wpkh-realized-price-ratio-99p" | "height-to-year-2017-realized-cap-1m-net-change" | "height-to-market-price-to-from-3m-to-6m-realized-price-ratio-1w-sma" | "height-to-p2pk-30p-price-paid" | "height-to-year-2014-unrealized-loss" | "height-to-from-10y-85p-price-paid" | "height-to-from-2y-to-3y-95p-price-paid" | "height-to-market-price-to-from-1d-to-1w-realized-price-ratio-1y-sma" | "height-to-price-13d-sma-99-5p" | "height-to-price-21d-sma-1p" | "height-to-up-to-7y-15p-price-paid" | "height-to-year-2013-cumulative-net-realized-profit-and-loss-1m-net-change" | "height-to-year-2014-20p-price-paid" | "height-to-from-15y-negative-unrealized-loss" | "height-to-from-1w-to-1m-20p-price-paid" | "height-to-from-6m-to-1y-supply-in-loss-to-own-supply-ratio" | "height-to-plankton-realized-value" | "height-to-from-4y-cumulative-realized-loss" | "height-to-market-price-to-price-1w-sma-ratio-1y-sma-momentum-oscillator" | "height-to-from-2y-to-3y-cumulative-net-realized-profit-and-loss" | "height-to-plankton-net-unrealized-profit-and-loss-to-market-cap-ratio" | "height-to-up-to-1d-35p-price-paid" | "height-to-year-2017-supply" | "height-to-year-2023-value-destroyed" | "height-to-up-to-1d-supply-in-profit" | "height-to-market-price-to-year-2014-realized-price-ratio-1p" | "height-to-from-6m-to-1y-15p-price-paid" | "height-to-from-3m-to-6m-realized-loss" | "height-to-from-5y-to-7y-unrealized-profit" | "height-to-shark-realized-loss" | "height-to-p2pkh-address-count" | "height-to-humpback-realized-price-99p" | "height-to-from-1m-to-3m-cumulative-net-realized-profit-and-loss-1m-net-change" | "height-to-from-5y-to-7y-supply-in-profit-to-own-supply-ratio" | "height-to-market-price-to-p2pk-realized-price-ratio-1y-sma" | "height-to-year-2017-65p-price-paid" | "height-to-from-1y-realized-profit" | "height-to-from-1w-to-1m-value-destroyed" | "height-to-from-5y-to-7y-utxo-count" | "height-to-year-2012-unrealized-loss" | "height-to-year-2013-55p-price-paid" | "height-to-up-to-7y-input-count" | "height-to-year-2016-negative-realized-loss" | "height-to-year-2020-realized-price-0-5p" | "height-to-from-1y-realized-price-0-1p" | "height-to-year-2024-cumulative-net-realized-profit-and-loss" | "height-to-p2pk-negative-unrealized-loss" | "height-to-market-price-to-shark-realized-price-ratio-1y-sma" | "height-to-year-2014-supply-to-circulating-supply-ratio" | "height-to-market-price-to-year-2016-realized-price-ratio-1y-sma" | "height-to-price-1w-sma-0-5p" | "height-to-from-3y-to-5y-median-price-paid" | "height-to-from-1y-to-2y-cumulative-net-realized-profit-and-loss-1m-net-change" | "height-to-humpback-supply-in-loss" | "height-to-from-10y-supply-in-profit-to-circulating-supply-ratio" | "height-to-highly-liquid-median-price-paid" | "height-to-100" | "height-to-from-10y-input-volume" | "height-to-market-price-to-megalodon-realized-price-ratio-0-1p" | "height-to-market-price-to-from-3m-to-6m-realized-price-ratio-99-5p" | "height-to-from-3m-to-6m-halved-supply" | "height-to-up-to-5y-65p-price-paid" | "height-to-up-to-6m-supply-in-profit" | "height-to-p2sh-supply-in-profit" | "height-to-humpback-45p-price-paid" | "height-to-year-2016-60p-price-paid" | "height-to-crab-85p-price-paid" | "height-to-market-price-to-active-price-ratio-0-1p" | "height-to-humpback-55p-price-paid" | "height-to-megalodon-supply-in-profit" | "height-to-from-15y-net-unrealized-profit-and-loss-to-market-cap-ratio" | "height-to-year-2011-35p-price-paid" | "height-to-year-2024-net-realized-profit-and-loss-to-market-cap-ratio" | "height-to-market-price-to-from-7y-to-10y-realized-price-ratio-0-1p" | "height-to-year-2015-05p-price-paid" | "height-to-up-to-7y-85p-price-paid" | "height-to-from-10y-to-15y-unrealized-profit" | "height-to-vaulted-price-0-1p" | "height-to-year-2023-supply" | "height-to-whale-80p-price-paid" | "height-to-market-price-to-sth-realized-price-ratio-1y-sma" | "height-to-year-2024-15p-price-paid" | "height-to-price-55d-sma-99p" | "height-to-up-to-15y-realized-price-99p" | "height-to-year-2021-utxo-count" | "height-to-market-price-to-from-10y-realized-price-ratio-1w-sma" | "height-to-year-2016-adjusted-value-destroyed" | "height-to-year-2010-cumulative-realized-profit" | "height-to-from-2y-to-3y-80p-price-paid" | "height-to-market-price-to-up-to-1m-realized-price-ratio-0-5p" | "height-to-up-to-10y-75p-price-paid" | "height-to-up-to-1y-realized-price-0-1p" | "height-to-market-price-to-shrimp-realized-price-ratio-99-9p" | "height-to-year-2024-net-realized-profit-and-loss" | "height-to-from-10y-adjusted-value-destroyed" | "height-to-from-15y-70p-price-paid" | "height-to-from-1d-to-1w-spent-output-profit-ratio" | "height-to-up-to-5y-value-destroyed" | "height-to-from-15y-realized-price-1p" | "height-to-year-2009-supply" | "height-to-year-2014-realized-price-0-1p" | "height-to-from-1y-to-2y-realized-cap-1m-net-change" | "height-to-from-1m-to-3m-realized-price-0-5p" | "height-to-year-2017-value-destroyed" | "height-to-market-price-to-shrimp-realized-price-ratio-99-5p" | "height-to-year-2020-halved-supply-to-circulating-supply-ratio" | "height-to-p2wpkh-realized-price-0-5p" | "height-to-p2wsh-halved-supply" | "height-to-whale-supply-to-circulating-supply-ratio" | "height-to-year-2017-realized-price-99-9p" | "height-to-year-2011-10p-price-paid" | "height-to-market-price-to-year-2021-realized-price-ratio-0-5p" | "height-to-up-to-5m-realized-value" | "height-to-humpback-realized-price-0-5p" | "height-to-up-to-5m-realized-price-0-1p" | "height-to-p2tr-realized-cap" | "height-to-year-2011-halved-supply-to-circulating-supply-ratio" | "height-to-market-price-to-from-5y-to-7y-realized-price-ratio" | "height-to-shark-55p-price-paid" | "height-to-market-price-to-from-1d-to-1w-realized-price-ratio-0-5p" | "height-to-shark-supply-in-loss" | "height-to-megalodon-realized-price-99-9p" | "height-to-up-to-15y-negative-unrealized-loss" | "height-to-market-price-to-from-3m-to-6m-realized-price-ratio-99-9p" | "height-to-shark-unrealized-profit" | "height-to-up-to-1w-adjusted-value-destroyed" | "height-to-up-to-2y-net-realized-profit-and-loss" | "height-to-from-1w-to-1m-supply" | "height-to-up-to-3m-halved-supply-to-circulating-supply-ratio" | "height-to-p2pkh-realized-price-99-5p" | "height-to-year-2016-net-unrealized-profit-and-loss-to-market-cap-ratio" | "height-to-p2tr-realized-cap-1m-net-change" | "height-to-price-8d-sma" | "height-to-up-to-3m-60p-price-paid" | "height-to-from-1w-to-1m-negative-unrealized-loss" | "height-to-year-2015-realized-loss" | "height-to-year-2012-halved-supply" | "height-to-from-2y-realized-price" | "height-to-year-2024-supply-in-loss" | "height-to-up-to-1d-input-count" | "height-to-from-10y-40p-price-paid" | "height-to-year-2015-realized-cap" | "height-to-year-2020-supply-in-loss" | "height-to-up-to-1y-supply-in-loss-to-own-supply-ratio" | "height-to-year-2020-40p-price-paid" | "height-to-up-to-2y-30p-price-paid" | "height-to-from-10y-to-15y-realized-price-1p" | "height-to-crab-adjusted-value-destroyed" | "height-to-highly-liquid-value-destroyed" | "height-to-from-7y-to-10y-85p-price-paid" | "height-to-shark-halved-supply-to-circulating-supply-ratio" | "height-to-year-2010-supply-in-loss-to-own-supply-ratio" | "height-to-year-2015-supply-in-profit-to-own-supply-ratio" | "height-to-from-3y-to-5y-40p-price-paid" | "height-to-year-2020-realized-price-0-1p" | "height-to-up-to-7y-realized-price-0-1p" | "height-to-year-2022-realized-cap-1m-net-change" | "height-to-price-89d-sma" | "height-to-from-10y-realized-price-0-5p" | "height-to-up-to-2y-realized-cap" | "height-to-from-2y-realized-cap-1m-net-change" | "height-to-from-5y-to-7y-10p-price-paid" | "height-to-up-to-3m-65p-price-paid" | "height-to-year-2011-cumulative-net-realized-profit-and-loss-1m-net-change" | "height-to-up-to-4m-unrealized-profit" | "height-to-lth-supply-in-profit-to-circulating-supply-ratio" | "height-to-market-price-to-price-55d-sma-ratio-1y-sma-momentum-oscillator" | "height-to-from-1y-spent-output-profit-ratio" | "height-to-market-price-to-shark-realized-price-ratio-1m-sma" | "height-to-up-to-1w-25p-price-paid" | "height-to-market-price-to-up-to-7y-realized-price-ratio-0-1p" | "height-to-price-2y-sma-0-1p" | "height-to-up-to-5y-60p-price-paid" | "height-to-from-10y-to-15y-70p-price-paid" | "height-to-from-1w-to-1m-90p-price-paid" | "height-to-p2sh-net-unrealized-profit-and-loss-to-market-cap-ratio" | "height-to-year-2015-cumulative-realized-profit" | "height-to-p2sh-realized-price-99p" | "height-to-market-price-to-plankton-realized-price-ratio-1m-sma" | "height-to-up-to-2y-cumulative-realized-profit" | "height-to-shrimp-realized-price-99p" | "height-to-p2pkh-unrealized-profit" | "height-to-up-to-3m-cumulative-net-realized-profit-and-loss" | "height-to-price-55d-sma-0-5p" | "height-to-from-4y-85p-price-paid" | "height-to-price-8d-sma-0-1p" | "height-to-market-price-to-from-6m-to-1y-realized-price-ratio-1y-sma" | "height-to-market-price-to-year-2011-realized-price-ratio-1y-sma-momentum-oscillator" | "height-to-from-3m-to-6m-realized-price-99p" | "height-to-from-3m-to-6m-05p-price-paid" | "height-to-market-price-to-up-to-6m-realized-price-ratio-1y-sma-momentum-oscillator" | "height-to-crab-30p-price-paid" | "height-to-from-3m-to-6m-supply-in-loss-to-circulating-supply-ratio" | "height-to-from-3m-to-6m-supply-to-circulating-supply-ratio" | "height-to-year-2010-realized-price" | "height-to-year-2013-net-realized-profit-and-loss-to-market-cap-ratio" | "height-to-up-to-2m-realized-cap" | "height-to-highly-liquid-realized-price-1p" | "height-to-year-2013-75p-price-paid" | "height-to-up-to-1w-supply-in-profit-to-circulating-supply-ratio" | "height-to-market-price-to-from-7y-to-10y-realized-price-ratio-1y-sma-momentum-oscillator" | "height-to-up-to-1y-10p-price-paid" | "height-to-up-to-2y-85p-price-paid" | "height-to-cumulative-block-size" | "height-to-from-1y-to-2y-95p-price-paid" | "height-to-shark-net-unrealized-profit-and-loss" | "height-to-created-addresses" | "height-to-up-to-10y-halved-supply-to-circulating-supply-ratio" | "height-to-up-to-1m-55p-price-paid" | "height-to-from-1y-supply-in-profit" | "height-to-market-price-to-price-34d-sma-ratio-1p" | "height-to-megalodon-realized-cap" | "height-to-up-to-1m-realized-price-99-9p" | "height-to-year-2010-realized-price-0-1p" | "height-to-year-2011-adjusted-value-destroyed" | "height-to-up-to-2m-realized-price-0-5p" | "height-to-year-2023-80p-price-paid" | "height-to-market-price-to-from-10y-to-15y-realized-price-ratio-1w-sma" | "height-to-year-2018-realized-profit" | "height-to-sth-realized-price-0-1p" | "height-to-year-2014-cumulative-realized-loss" | "height-to-humpback-85p-price-paid" | "height-to-humpback-median-price-paid" | "height-to-year-2021-halved-supply" | "height-to-plankton-90p-price-paid" | "height-to-from-5y-to-7y-value-created" | "height-to-year-2020-adjusted-value-created" | "height-to-market-price-to-price-34d-sma-ratio-1w-sma" | "height-to-year-2021-median-price-paid" | "height-to-illiquid-cumulative-net-realized-profit-and-loss-1m-net-change" | "height-to-from-1y-cumulative-realized-profit" | "height-to-from-2y-70p-price-paid" | "height-to-market-price-to-from-1d-to-1w-realized-price-ratio-1w-sma" | "height-to-up-to-10y-15p-price-paid" | "height-to-year-2024-supply-in-loss-to-own-supply-ratio" | "height-to-up-to-5m-value-created" | "height-to-up-to-10y-unrealized-loss" | "height-to-shrimp-35p-price-paid" | "height-to-up-to-10y-net-realized-profit-and-loss-to-market-cap-ratio" | "height-to-market-price-to-from-2y-realized-price-ratio-99-5p" | "height-to-up-to-3y-input-count" | "height-to-year-2018-unrealized-profit" | "height-to-p2pkh-realized-price-0-5p" | "height-to-year-2018-supply-in-profit-to-circulating-supply-ratio" | "height-to-market-price-to-shrimp-realized-price-ratio-0-1p" | "height-to-market-price-to-up-to-6m-realized-price-ratio-99p" | "height-to-market-price-to-price-4y-sma-ratio-99-9p" | "height-to-up-to-10y-realized-profit" | "height-to-market-price-to-from-15y-realized-price-ratio-1y-sma-momentum-oscillator" | "height-to-year-2015-unrealized-profit" | "height-to-from-7y-to-10y-10p-price-paid" | "height-to-market-price-to-year-2017-realized-price-ratio-99-5p" | "height-to-from-2y-realized-loss" | "height-to-up-to-2m-realized-price-99-9p" | "height-to-from-3m-to-6m-10p-price-paid" | "height-to-shark-realized-cap" | "height-to-year-2009-value-created" | "height-to-highly-liquid-30p-price-paid" | "height-to-year-2010-supply-in-profit" | "height-to-year-2012-adjusted-spent-output-profit-ratio" | "height-to-from-2y-net-unrealized-profit-and-loss" | "height-to-highly-liquid-net-realized-profit-and-loss-to-market-cap-ratio" | "height-to-market-price-to-from-4y-realized-price-ratio-99-9p" | "height-to-market-price-to-up-to-4m-realized-price-ratio-99-9p" | "height-to-p2sh-supply-in-loss" | "height-to-year-2024-cumulative-realized-profit" | "height-to-year-2010-supply-in-profit-to-own-supply-ratio" | "height-to-from-5y-to-7y-95p-price-paid" | "height-to-crab-60p-price-paid" | "height-to-from-1d-to-1w-cumulative-net-realized-profit-and-loss" | "height-to-market-price-to-year-2018-realized-price-ratio-99p" | "height-to-p2wsh-realized-value" | "height-to-up-to-2m-90p-price-paid" | "height-to-liveliness-net-change-2w-median" | "height-to-up-to-3y-realized-price-1p" | "height-to-market-price-to-from-5y-to-7y-realized-price-ratio-99-9p" | "height-to-market-price-to-year-2016-realized-price-ratio-1m-sma" | "height-to-illiquid-negative-realized-loss" | "height-to-market-price-to-up-to-3m-realized-price-ratio-1y-sma-momentum-oscillator" | "height-to-from-15y-supply-in-profit-to-circulating-supply-ratio" | "height-to-from-2y-25p-price-paid" | "height-to-from-3y-to-5y-supply-in-profit-to-circulating-supply-ratio" | "height-to-price-1w-sma-99p" | "height-to-up-to-15y-95p-price-paid" | "height-to-market-price-to-price-2y-sma-ratio-99p" | "height-to-35p-price-paid" | "height-to-megalodon-55p-price-paid" | "height-to-liquid-unrealized-profit" | "height-to-p2sh-utxo-count" | "height-to-up-to-2m-realized-price-1p" | "height-to-year-2018-adjusted-value-created" | "height-to-year-2015-net-realized-profit-and-loss" | "height-to-year-2019-90p-price-paid" | "height-to-year-2024-halved-supply-to-circulating-supply-ratio" | "height-to-from-1m-to-3m-95p-price-paid" | "height-to-from-4y-value-created" | "height-to-market-price-to-up-to-2y-realized-price-ratio-99p" | "height-to-p2tr-supply-in-loss-to-own-supply-ratio" | "height-to-cumulative-coinblocks-destroyed" | "height-to-market-price-to-year-2013-realized-price-ratio-0-5p" | "height-to-year-2010-negative-realized-loss" | "height-to-up-to-5y-realized-price" | "height-to-market-price-to-up-to-7y-realized-price-ratio-1y-sma" | "height-to-up-to-1d-realized-price" | "height-to-year-2024-net-unrealized-profit-and-loss" | "height-to-from-15y-60p-price-paid" | "height-to-from-7y-to-10y-15p-price-paid" | "height-to-up-to-7y-40p-price-paid" | "height-to-from-3m-to-6m-55p-price-paid" | "height-to-from-4y-utxo-count" | "height-to-market-price-to-price-21d-sma-ratio-1p" | "height-to-up-to-1y-realized-value" | "height-to-p2pkh-10p-price-paid" | "height-to-up-to-1y-realized-price-0-5p" | "height-to-from-1m-to-3m-adjusted-spent-output-profit-ratio" | "height-to-p2wsh-cumulative-realized-profit" | "height-to-market-price-to-year-2017-realized-price-ratio-1w-sma" | "height-to-up-to-6m-supply-in-loss-to-own-supply-ratio" | "height-to-illiquid-realized-price-99p" | "height-to-true-market-mean-1p" | "height-to-year-2009-unrealized-loss" | "height-to-price-8d-sma-99-5p" | "height-to-up-to-15y-20p-price-paid" | "height-to-megalodon-supply-in-profit-to-circulating-supply-ratio" | "height-to-year-2019-adjusted-value-destroyed" | "height-to-year-2020-negative-realized-loss" | "height-to-year-2023-halved-supply" | "height-to-p2wsh-80p-price-paid" | "height-to-market-price-to-from-1y-to-2y-realized-price-ratio-1y-sma-momentum-oscillator" | "height-to-p2pk-45p-price-paid" | "height-to-up-to-2m-45p-price-paid" | "height-to-from-6m-to-1y-negative-realized-loss" | "height-to-year-2010-realized-cap-1m-net-change" | "height-to-market-price-to-up-to-1y-realized-price-ratio" | "height-to-whale-supply-in-loss" | "height-to-from-2y-to-3y-realized-profit" | "height-to-year-2020-value-created" | "height-to-from-5y-to-7y-45p-price-paid" | "height-to-from-10y-90p-price-paid" | "height-to-from-7y-to-10y-realized-cap" | "height-to-from-7y-to-10y-cumulative-net-realized-profit-and-loss" | "height-to-p2sh-unrealized-profit" | "height-to-year-2020-net-unrealized-profit-and-loss-to-market-cap-ratio" | "height-to-market-price-to-price-8d-sma-ratio-0-5p" | "height-to-market-price-to-up-to-3m-realized-price-ratio-0-1p" | "height-to-shrimp-unrealized-loss" | "height-to-up-to-2y-unrealized-profit" | "height-to-fees" | "height-to-market-price-to-from-10y-realized-price-ratio-1m-sma" | "height-to-p2wsh-input-count" | "height-to-from-2y-to-3y-supply-in-profit-to-own-supply-ratio" | "height-to-year-2009-80p-price-paid" | "height-to-from-3y-to-5y-input-volume" | "height-to-year-2017-80p-price-paid" | "height-to-from-15y-halved-supply-to-circulating-supply-ratio" | "height-to-plankton-realized-price-99-9p" | "height-to-illiquid-value-destroyed" | "height-to-plankton-realized-price-99p" | "height-to-up-to-4m-15p-price-paid" | "height-to-shark-40p-price-paid" | "height-to-year-2018-median-price-paid" | "height-to-whale-10p-price-paid" | "height-to-year-2018-value-created" | "height-to-fish-cumulative-realized-loss" | "height-to-from-10y-to-15y-10p-price-paid" | "height-to-market-price-to-price-4y-sma-ratio-1y-sma-momentum-oscillator" | "height-to-market-price-to-from-4y-realized-price-ratio-0-5p" | "height-to-from-3y-to-5y-unrealized-profit" | "height-to-up-to-1y-realized-profit" | "height-to-year-2019-cumulative-net-realized-profit-and-loss" | "height-to-plankton-negative-realized-loss" | "height-to-lth-spent-output-profit-ratio" | "height-to-year-2014-realized-price-0-5p" | "height-to-year-2009-realized-profit" | "height-to-market-price-to-from-1y-to-2y-realized-price-ratio-1y-sma" | "height-to-from-6m-to-1y-05p-price-paid" | "height-to-humpback-address-count" | "height-to-market-price-to-from-1m-to-3m-realized-price-ratio-99-5p" | "height-to-up-to-1m-35p-price-paid" | "height-to-up-to-1y-halved-supply" | "height-to-year-2012-supply-in-loss-to-own-supply-ratio" | "height-to-from-2y-supply-in-profit" | "height-to-realized-profit" | "height-to-market-price-to-up-to-10y-realized-price-ratio-1m-sma" | "height-to-year-2013-85p-price-paid" | "height-to-year-2014-90p-price-paid" | "height-to-up-to-1w-net-unrealized-profit-and-loss" | "height-to-year-2014-realized-cap" | "height-to-up-to-2y-utxo-count" | "height-to-from-5y-to-7y-25p-price-paid" | "height-to-year-2016-55p-price-paid" | "height-to-vaulted-supply-net-change" | "height-to-fish-halved-supply" | "height-to-from-3m-to-6m-cumulative-realized-loss" | "height-to-from-6m-to-1y-cumulative-realized-loss" | "height-to-market-price-to-from-15y-realized-price-ratio-99p" | "height-to-market-price-to-year-2011-realized-price-ratio-1p" | "height-to-up-to-1y-cumulative-realized-loss" | "height-to-up-to-2m-30p-price-paid" | "height-to-up-to-2y-95p-price-paid" | "height-to-year-2014-net-realized-profit-and-loss-to-market-cap-ratio" | "height-to-year-2024-70p-price-paid" | "height-to-highly-liquid-cumulative-net-realized-profit-and-loss-1m-net-change" | "height-to-megalodon-unrealized-profit" | "height-to-price-55d-sma-0-1p" | "height-to-from-10y-to-15y-adjusted-value-destroyed" | "height-to-market-price-to-price-89d-sma-ratio-99p" | "height-to-market-price-to-up-to-5y-realized-price-ratio-0-1p" | "height-to-up-to-1y-negative-realized-loss" | "height-to-market-price-to-from-1y-realized-price-ratio-1y-sma-momentum-oscillator" | "height-to-fish-adjusted-spent-output-profit-ratio" | "height-to-market-price-to-up-to-1w-realized-price-ratio-1p" | "height-to-market-price-to-year-2017-realized-price-ratio-1p" | "height-to-p2pk-85p-price-paid" | "height-to-shark-net-unrealized-profit-and-loss-to-market-cap-ratio" | "height-to-market-price-to-realized-price-ratio-0-1p" | "height-to-up-to-1m-05p-price-paid" | "height-to-up-to-2y-supply-in-loss-to-circulating-supply-ratio" | "height-to-year-2012-realized-price-0-5p" | "height-to-from-10y-value-destroyed" | "height-to-market-price-to-up-to-6m-realized-price-ratio-1y-sma" | "height-to-up-to-2y-realized-loss" | "height-to-year-2016-median-price-paid" | "height-to-market-price-to-from-1d-to-1w-realized-price-ratio-0-1p" | "height-to-60p-price-paid" | "height-to-from-2y-supply-in-profit-to-own-supply-ratio" | "height-to-market-price-to-up-to-10y-realized-price-ratio" | "height-to-market-price-to-from-2y-realized-price-ratio-99-9p" | "height-to-up-to-3m-realized-price-0-1p" | "height-to-p2wsh-cumulative-net-realized-profit-and-loss" | "height-to-transaction-volume-1m-sma" | "height-to-year-2009-realized-price-99-9p" | "height-to-year-2014-adjusted-value-created" | "height-to-year-2014-supply-in-loss-to-own-supply-ratio" | "height-to-year-2022-supply-in-loss-to-own-supply-ratio" | "height-to-market-price-to-p2sh-realized-price-ratio-99-9p" | "height-to-p2pk-supply-in-loss" | "height-to-from-4y-70p-price-paid" | "height-to-year-2024-supply-in-profit-to-own-supply-ratio" | "height-to-year-2012-05p-price-paid" | "height-to-up-to-1w-supply-in-loss-to-circulating-supply-ratio" | "height-to-shrimp-negative-realized-loss" | "height-to-active-price-99-5p" | "height-to-year-2015-realized-price-99p" | "height-to-year-2009-net-realized-profit-and-loss" | "height-to-crab-05p-price-paid" | "height-to-cumulative-fees-in-dollars" | "height-to-market-price-to-year-2015-realized-price-ratio-1m-sma" | "height-to-year-2021-realized-price-0-5p" | "height-to-p2pkh-spent-output-profit-ratio" | "height-to-year-2022-realized-price" | "height-to-address-count" | "height-to-annualized-transaction-volume" | "height-to-plankton-net-realized-profit-and-loss" | "height-to-market-price-to-p2pk-realized-price-ratio-0-1p" | "height-to-year-2009-85p-price-paid" | "height-to-illiquid-55p-price-paid" | "height-to-market-price-to-year-2019-realized-price-ratio-1w-sma" | "height-to-market-price-to-from-10y-to-15y-realized-price-ratio-1p" | "height-to-year-2014-75p-price-paid" | "height-to-from-2y-to-3y-realized-price-1p" | "height-to-illiquid-input-count" | "height-to-market-price-to-year-2022-realized-price-ratio-1w-sma" | "height-to-sth-realized-cap" | "height-to-illiquid-supply-in-loss-to-circulating-supply-ratio" | "height-to-price-1w-sma-1p" | "height-to-from-1w-to-1m-supply-in-profit-to-own-supply-ratio" | "height-to-from-2y-to-3y-cumulative-realized-loss" | "height-to-p2wsh-realized-price-99p" | "height-to-highly-liquid-supply" | "height-to-year-2021-supply" | "height-to-market-price-to-from-1m-to-3m-realized-price-ratio" | "height-to-up-to-6m-realized-price-0-5p" | "height-to-from-1y-value-created" | "height-to-up-to-6m-55p-price-paid" | "height-to-year-2017-realized-price" | "height-to-up-to-1m-input-volume" | "height-to-year-2020-supply" | "height-to-p2wpkh-net-realized-profit-and-loss-to-market-cap-ratio" | "height-to-price-13d-sma-0-1p" | "height-to-from-4y-supply-in-loss-to-own-supply-ratio" | "height-to-market-price-to-from-15y-realized-price-ratio-0-5p" | "height-to-sth-net-unrealized-profit-and-loss-to-market-cap-ratio" | "height-to-from-3y-to-5y-cumulative-net-realized-profit-and-loss" | "height-to-market-price-to-from-3y-to-5y-realized-price-ratio-99-9p" | "height-to-up-to-5m-realized-price-99p" | "height-to-up-to-1d-cumulative-realized-loss" | "height-to-year-2017-value-created" | "height-to-lth-cumulative-net-realized-profit-and-loss" | "height-to-year-2011-spent-output-profit-ratio" | "height-to-from-5y-to-7y-30p-price-paid" | "height-to-from-2y-to-3y-adjusted-value-created" | "height-to-year-2012-30p-price-paid" | "height-to-year-2014-80p-price-paid" | "height-to-from-2y-to-3y-spent-output-profit-ratio" | "height-to-market-price-to-from-1w-to-1m-realized-price-ratio-1y-sma-momentum-oscillator" | "height-to-from-1w-to-1m-adjusted-value-created" | "height-to-p2sh-adjusted-value-destroyed" | "height-to-shrimp-adjusted-value-destroyed" | "height-to-year-2018-adjusted-value-destroyed" | "height-to-cointime-price-99-9p" | "height-to-from-4y-55p-price-paid" | "height-to-from-1y-to-2y-halved-supply" | "height-to-market-price-to-price-1m-sma-ratio-1p" | "height-to-megalodon-supply-in-loss-to-circulating-supply-ratio" | "height-to-from-15y-30p-price-paid" | "height-to-year-2019-supply-in-profit-to-circulating-supply-ratio" | "height-to-market-price-to-year-2012-realized-price-ratio-99-9p" | "height-to-shark-75p-price-paid" | "height-to-market-price-to-cointime-price-ratio-99-9p" | "height-to-from-7y-to-10y-realized-profit" | "height-to-from-4y-spent-output-profit-ratio" | "height-to-illiquid-address-count" | "height-to-market-price-to-up-to-5y-realized-price-ratio-99-9p" | "height-to-shark-input-volume" | "height-to-from-5y-to-7y-supply-in-loss-to-own-supply-ratio" | "height-to-p2pkh-realized-value" | "height-to-up-to-10y-utxo-count" | "height-to-from-3y-to-5y-net-unrealized-profit-and-loss-to-market-cap-ratio" | "height-to-shark-input-count" | "height-to-market-price-to-year-2010-realized-price-ratio-99-5p" | "height-to-up-to-3y-halved-supply" | "height-to-from-1w-to-1m-net-unrealized-profit-and-loss-to-market-cap-ratio" | "height-to-from-3m-to-6m-input-count" | "height-to-market-price-to-humpback-realized-price-ratio-99-9p" | "height-to-market-price-to-shark-realized-price-ratio-99p" | "height-to-up-to-5y-negative-unrealized-loss" | "height-to-up-to-7y-adjusted-value-created" | "height-to-whale-unrealized-profit" | "height-to-year-2014-10p-price-paid" | "height-to-year-2022-adjusted-spent-output-profit-ratio" | "height-to-from-2y-cumulative-net-realized-profit-and-loss-1m-net-change" | "height-to-crab-realized-price-0-1p" | "height-to-humpback-90p-price-paid" | "height-to-p2wpkh-negative-realized-loss" | "height-to-sth-10p-price-paid" | "height-to-year-2013-adjusted-value-destroyed" | "height-to-up-to-4m-spent-output-profit-ratio" | "height-to-market-price-to-up-to-1d-realized-price-ratio-99-9p" | "height-to-up-to-4m-realized-value" | "height-to-up-to-1y-net-realized-profit-and-loss-to-market-cap-ratio" | "height-to-year-2013-supply-in-profit-to-own-supply-ratio" | "height-to-from-1y-70p-price-paid" | "height-to-price-55d-sma" | "height-to-year-2017-30p-price-paid" | "height-to-p2tr-negative-realized-loss" | "height-to-from-1y-unrealized-profit" | "height-to-from-10y-unrealized-profit" | "height-to-price-89d-sma-99-9p" | "height-to-from-10y-70p-price-paid" | "height-to-from-2y-realized-price-99-5p" | "height-to-market-price-to-up-to-5m-realized-price-ratio-1m-sma" | "height-to-sth-realized-cap-1m-net-change" | "height-to-market-price-to-year-2012-realized-price-ratio-0-1p" | "height-to-market-price-to-up-to-10y-realized-price-ratio-1y-sma" | "height-to-p2sh-55p-price-paid" | "height-to-from-10y-to-15y-value-created" | "height-to-up-to-5y-realized-price-1p" | "height-to-market-price-to-year-2023-realized-price-ratio-1p" | "height-to-from-5y-to-7y-cumulative-realized-loss" | "height-to-lth-25p-price-paid" | "height-to-year-2020-adjusted-value-destroyed" | "height-to-year-2009-cumulative-realized-profit" | "height-to-crab-supply-to-circulating-supply-ratio" | "height-to-megalodon-halved-supply" | "height-to-from-1d-to-1w-25p-price-paid" | "height-to-highly-liquid-adjusted-value-destroyed" | "height-to-megalodon-realized-price-99p" | "height-to-from-6m-to-1y-cumulative-realized-profit" | "height-to-from-1m-to-3m-05p-price-paid" | "height-to-market-price-to-illiquid-realized-price-ratio-1m-sma" | "height-to-market-price-to-fish-realized-price-ratio-99-9p" | "height-to-from-15y-supply-in-profit" | "height-to-market-price-to-up-to-3m-realized-price-ratio-99p" | "height-to-market-price-to-up-to-5m-realized-price-ratio-1p" | "height-to-humpback-realized-price" | "height-to-price-21d-sma-0-1p" | "height-to-year-2012-cumulative-net-realized-profit-and-loss" | "height-to-humpback-supply-in-loss-to-circulating-supply-ratio" | "height-to-from-1y-realized-price-1p" | "height-to-up-to-1w-05p-price-paid" | "height-to-market-price-to-from-4y-realized-price-ratio-1y-sma-momentum-oscillator" | "height-to-from-10y-cumulative-realized-profit" | "height-to-year-2017-supply-in-profit" | "height-to-market-price-to-year-2023-realized-price-ratio-1m-sma" | "height-to-market-price-to-year-2015-realized-price-ratio-1w-sma" | "height-to-p2pkh-35p-price-paid" | "height-to-p2pk-cumulative-realized-loss" | "height-to-up-to-7y-value-destroyed" | "height-to-from-15y-adjusted-value-destroyed" | "height-to-year-2012-adjusted-value-destroyed" | "height-to-from-3m-to-6m-65p-price-paid" | "height-to-from-7y-to-10y-55p-price-paid" | "height-to-from-1y-utxo-count" | "height-to-year-2020-70p-price-paid" | "height-to-p2wsh-unrealized-profit" | "height-to-from-1y-to-2y-realized-price-1p" | "height-to-year-2016-realized-value" | "height-to-market-price-to-p2tr-realized-price-ratio-99-9p" | "height-to-cumulative-realized-profit" | "height-to-liquid-realized-cap-1m-net-change" | "height-to-year-2022-supply-to-circulating-supply-ratio" | "height-to-up-to-1d-net-realized-profit-and-loss" | "height-to-year-2014-25p-price-paid" | "height-to-up-to-3y-15p-price-paid" | "height-to-fish-35p-price-paid" | "height-to-from-5y-to-7y-supply-in-profit" | "height-to-from-2y-supply-in-profit-to-circulating-supply-ratio" | "height-to-illiquid-35p-price-paid" | "height-to-from-3y-to-5y-value-created" | "height-to-crab-10p-price-paid" | "height-to-market-price-to-true-market-mean-ratio-0-5p" | "height-to-year-2011-supply-to-circulating-supply-ratio" | "height-to-sth-60p-price-paid" | "height-to-year-2020-35p-price-paid" | "height-to-shrimp-cumulative-net-realized-profit-and-loss" | "height-to-from-2y-to-3y-realized-price-0-1p" | "height-to-cointime-cap" | "height-to-from-1m-to-3m-90p-price-paid" | "height-to-market-price-to-up-to-4m-realized-price-ratio-0-5p" | "height-to-year-2020-85p-price-paid" | "height-to-market-price-to-price-1y-sma-ratio-1w-sma" | "height-to-from-1w-to-1m-spent-output-profit-ratio" | "height-to-up-to-6m-value-created" | "height-to-up-to-1d-supply" | "height-to-from-1m-to-3m-15p-price-paid" | "height-to-year-2017-realized-price-0-1p" | "height-to-from-10y-to-15y-65p-price-paid" | "height-to-up-to-15y-supply-in-loss" | "height-to-market-price-to-sth-realized-price-ratio-99p" | "height-to-highly-liquid-70p-price-paid" | "height-to-market-price-to-year-2021-realized-price-ratio-1y-sma" | "height-to-up-to-4m-adjusted-spent-output-profit-ratio" | "height-to-market-price-to-up-to-2y-realized-price-ratio-0-1p" | "height-to-annualized-transaction-volume-in-dollars" | "height-to-from-5y-to-7y-realized-price-1p" | "height-to-market-price-to-sth-realized-price-ratio" | "height-to-up-to-6m-net-unrealized-profit-and-loss-to-market-cap-ratio" | "height-to-year-2018-35p-price-paid" | "height-to-lth-cumulative-net-realized-profit-and-loss-1m-net-change" | "height-to-market-price-to-realized-price-ratio-99p" | "height-to-p2tr-realized-price-0-1p" | "height-to-up-to-3y-realized-price-0-5p" | "height-to-from-10y-80p-price-paid" | "height-to-year-2018-utxo-count" | "height-to-highly-liquid-realized-cap" | "height-to-from-2y-75p-price-paid" | "height-to-market-price-to-highly-liquid-realized-price-ratio-1m-sma" | "height-to-up-to-1w-supply" | "height-to-market-price-to-active-price-ratio-99p" | "height-to-year-2017-unrealized-profit" | "height-to-up-to-5y-unrealized-profit" | "height-to-cointime-value-created" | "height-to-whale-spent-output-profit-ratio" | "height-to-market-price-to-year-2023-realized-price-ratio-99-9p" | "height-to-fish-realized-profit" | "height-to-market-price-to-from-1y-to-2y-realized-price-ratio-99-9p" | "height-to-price-200w-sma-99p" | "height-to-up-to-1w-75p-price-paid" | "height-to-p2pkh-70p-price-paid" | "height-to-up-to-6m-05p-price-paid" | "height-to-from-1w-to-1m-realized-loss" | "height-to-market-price-to-from-10y-to-15y-realized-price-ratio-99-9p" | "height-to-market-price-to-from-3y-to-5y-realized-price-ratio-1w-sma" | "height-to-market-price-to-up-to-7y-realized-price-ratio" | "height-to-p2wsh-supply-in-profit" | "height-to-shark-realized-value" | "height-to-up-to-2m-net-unrealized-profit-and-loss-to-market-cap-ratio" | "height-to-up-to-5m-net-unrealized-profit-and-loss" | "height-to-up-to-2m-net-realized-profit-and-loss-to-market-cap-ratio" | "height-to-up-to-7y-20p-price-paid" | "height-to-year-2012-95p-price-paid" | "height-to-from-15y-net-unrealized-profit-and-loss" | "height-to-market-price-to-price-13d-sma-ratio-1y-sma" | "height-to-from-15y-80p-price-paid" | "height-to-market-price-to-year-2010-realized-price-ratio-1y-sma-momentum-oscillator" | "height-to-whale-realized-price-99-9p" | "height-to-lth-realized-loss" | "height-to-up-to-2m-20p-price-paid" | "height-to-whale-input-count" | "height-to-p2sh-halved-supply-to-circulating-supply-ratio" | "height-to-market-price-to-crab-realized-price-ratio-1y-sma" | "height-to-from-1d-to-1w-cumulative-realized-loss" | "height-to-from-1y-to-2y-supply" | "height-to-up-to-5m-80p-price-paid" | "height-to-year-2014-net-unrealized-profit-and-loss" | "height-to-85p-price-paid" | "height-to-from-1y-to-2y-adjusted-value-destroyed" | "height-to-market-price-to-p2pkh-realized-price-ratio" | "height-to-p2pk-adjusted-value-created" | "height-to-from-1y-supply-in-loss-to-own-supply-ratio" | "height-to-cumulative-coinbase" | "height-to-sth-35p-price-paid" | "height-to-from-1m-to-3m-supply-to-circulating-supply-ratio" | "height-to-highly-liquid-supply-in-loss-to-own-supply-ratio" | "height-to-liquid-cumulative-realized-profit" | "height-to-from-4y-input-volume" | "height-to-p2wsh-utxo-count" | "height-to-market-price-to-from-6m-to-1y-realized-price-ratio-1m-sma" | "height-to-sth-net-realized-profit-and-loss-to-market-cap-ratio" | "height-to-up-to-6m-halved-supply-to-circulating-supply-ratio" | "height-to-year-2009-supply-in-loss-to-circulating-supply-ratio" | "height-to-year-2024-55p-price-paid" | "height-to-humpback-supply-to-circulating-supply-ratio" | "height-to-market-price-to-p2sh-realized-price-ratio-1m-sma" | "height-to-market-price-to-year-2013-realized-price-ratio-1m-sma" | "height-to-plankton-supply-in-profit-to-circulating-supply-ratio" | "height-to-up-to-10y-adjusted-value-destroyed" | "height-to-sth-input-count" | "height-to-year-2024-realized-price" | "height-to-year-2014-realized-price-99-9p" | "height-to-from-10y-to-15y-75p-price-paid" | "height-to-plankton-unrealized-profit" | "height-to-from-2y-supply-in-loss-to-own-supply-ratio" | "height-to-up-to-10y-cumulative-realized-loss" | "height-to-up-to-6m-15p-price-paid" | "height-to-market-price-to-from-2y-realized-price-ratio-0-5p" | "height-to-year-2009-realized-cap" | "height-to-year-2016-cumulative-net-realized-profit-and-loss" | "height-to-year-2015-90p-price-paid" | "height-to-market-price-to-from-1w-to-1m-realized-price-ratio-0-5p" | "height-to-year-2010-70p-price-paid" | "height-to-year-2021-realized-profit" | "height-to-year-2018-40p-price-paid" | "height-to-market-price-to-liquid-realized-price-ratio-1p" | "height-to-highly-liquid-halved-supply" | "height-to-up-to-2m-supply-in-profit" | "height-to-crab-net-unrealized-profit-and-loss-to-market-cap-ratio" | "height-to-market-price-to-up-to-1y-realized-price-ratio-1y-sma" | "height-to-up-to-1y-unrealized-profit" | "height-to-p2wsh-85p-price-paid" | "height-to-liquid-utxo-count" | "height-to-price-144d-sma-0-1p" | "height-to-from-1y-25p-price-paid" | "height-to-market-price-to-year-2021-realized-price-ratio-99-9p" | "height-to-from-6m-to-1y-realized-price" | "height-to-up-to-2m-cumulative-realized-loss" | "height-to-market-price-to-price-34d-sma-ratio-1y-sma-momentum-oscillator" | "height-to-from-10y-supply-in-loss-to-own-supply-ratio" | "height-to-year-2013-60p-price-paid" | "height-to-from-6m-to-1y-realized-cap" | "height-to-up-to-6m-supply-in-profit-to-circulating-supply-ratio" | "height-to-up-to-5y-cumulative-realized-profit" | "height-to-p2wsh-95p-price-paid" | "height-to-p2wpkh-utxo-count" | "height-to-up-to-1d-realized-price-0-1p" | "height-to-p2pk-net-realized-profit-and-loss" | "height-to-year-2009-cumulative-realized-loss" | "height-to-from-1m-to-3m-input-volume" | "height-to-year-2013-45p-price-paid" | "height-to-year-2019-value-destroyed" | "height-to-from-1d-to-1w-supply-in-loss-to-own-supply-ratio" | "height-to-up-to-5m-supply-in-profit-to-own-supply-ratio" | "height-to-year-2024-realized-price-99p" | "height-to-year-2017-55p-price-paid" | "height-to-market-price-to-lth-realized-price-ratio-99-5p" | "height-to-up-to-7y-negative-realized-loss" | "height-to-year-2022-halved-supply" | "height-to-p2wpkh-net-unrealized-profit-and-loss" | "height-to-up-to-2m-95p-price-paid" | "height-to-liquid-value-destroyed" | "height-to-market-price-to-p2tr-realized-price-ratio-0-5p" | "height-to-shark-realized-price-99p" | "height-to-up-to-2y-80p-price-paid" | "height-to-up-to-1y-realized-price-99-5p" | "height-to-from-1w-to-1m-40p-price-paid" | "height-to-year-2015-realized-price" | "height-to-plankton-35p-price-paid" | "height-to-market-price-to-price-34d-sma-ratio-1m-sma" | "height-to-year-2013-cumulative-net-realized-profit-and-loss" | "height-to-market-price-to-year-2011-realized-price-ratio-1m-sma" | "height-to-year-2013-70p-price-paid" | "height-to-from-1w-to-1m-input-count" | "height-to-market-price-to-year-2019-realized-price-ratio-1y-sma-momentum-oscillator" | "height-to-net-realized-profit-and-loss" | "height-to-up-to-1w-40p-price-paid" | "height-to-year-2017-net-unrealized-profit-and-loss" | "height-to-crab-address-count" | "height-to-year-2018-input-count" | "height-to-year-2019-realized-price" | "height-to-year-2021-halved-supply-to-circulating-supply-ratio" | "height-to-year-2014-cumulative-realized-profit" | "height-to-year-2024-realized-cap" | "height-to-market-price-to-price-144d-sma-ratio-99p" | "height-to-up-to-10y-net-realized-profit-and-loss" | "height-to-from-1y-to-2y-25p-price-paid" | "height-to-price-1w-sma" | "height-to-market-price-to-year-2012-realized-price-ratio-0-5p" | "height-to-year-2017-realized-price-99p" | "height-to-sth-value-created" | "height-to-year-2011-realized-price-99-9p" | "height-to-from-1y-median-price-paid" | "height-to-p2tr-net-realized-profit-and-loss" | "height-to-up-to-7y-cumulative-realized-loss" | "height-to-liquid-realized-value" | "height-to-active-price-99-9p" | "height-to-spent-output-profit-ratio" | "height-to-from-4y-realized-value" | "height-to-up-to-1w-realized-price-1p" | "height-to-year-2017-realized-cap" | "height-to-year-2011-supply-in-profit-to-own-supply-ratio" | "height-to-highly-liquid-supply-in-loss" | "height-to-up-to-1w-realized-profit" | "height-to-market-price-to-p2wpkh-realized-price-ratio-99-9p" | "height-to-up-to-1y-supply-to-circulating-supply-ratio" | "height-to-shrimp-realized-cap" | "height-to-up-to-3m-70p-price-paid" | "height-to-p2sh-40p-price-paid" | "height-to-up-to-3m-cumulative-realized-loss" | "height-to-market-price-to-whale-realized-price-ratio-99-5p" | "height-to-price-200w-sma" | "height-to-from-1m-to-3m-net-unrealized-profit-and-loss" | "height-to-year-2013-10p-price-paid" | "height-to-market-price-to-year-2018-realized-price-ratio-1y-sma" | "height-to-from-2y-to-3y-90p-price-paid" | "height-to-market-price-to-price-13d-sma-ratio-0-5p" | "height-to-fish-supply-to-circulating-supply-ratio" | "height-to-from-2y-realized-price-0-5p" | "height-to-year-2010-25p-price-paid" | "height-to-market-price-to-from-1y-realized-price-ratio-0-5p" | "height-to-from-1y-95p-price-paid" | "height-to-from-7y-to-10y-realized-price-0-1p" | "height-to-from-2y-to-3y-unrealized-loss" | "height-to-from-10y-15p-price-paid" | "height-to-humpback-realized-profit" | "height-to-megalodon-halved-supply-to-circulating-supply-ratio" | "height-to-fish-realized-value" | "height-to-price-34d-sma-0-5p" | "height-to-from-4y-90p-price-paid" | "height-to-highly-liquid-spent-output-profit-ratio" | "height-to-up-to-2y-15p-price-paid" | "height-to-year-2012-15p-price-paid" | "height-to-year-2014-input-count" | "height-to-humpback-supply-in-profit-to-circulating-supply-ratio" | "height-to-market-price-to-up-to-5m-realized-price-ratio-99-9p" | "height-to-market-price-to-p2pkh-realized-price-ratio-1y-sma-momentum-oscillator" | "height-to-price-21d-sma-99-9p" | "height-to-year-2010-net-unrealized-profit-and-loss-to-market-cap-ratio" | "height-to-liquid-15p-price-paid" | "height-to-up-to-2y-40p-price-paid" | "height-to-market-price-to-fish-realized-price-ratio-1y-sma-momentum-oscillator" | "height-to-megalodon-realized-value" | "height-to-from-10y-to-15y-30p-price-paid" | "height-to-lth-net-realized-profit-and-loss-to-market-cap-ratio" | "height-to-year-2015-negative-unrealized-loss" | "height-to-from-5y-to-7y-cumulative-net-realized-profit-and-loss" | "height-to-market-price-to-up-to-5m-realized-price-ratio-1y-sma" | "height-to-from-1d-to-1w-30p-price-paid" | "height-to-p2pk-supply-in-profit-to-own-supply-ratio" | "height-to-up-to-6m-spent-output-profit-ratio" | "height-to-year-2010-realized-price-99-9p" | "height-to-from-10y-to-15y-60p-price-paid" | "height-to-up-to-5m-85p-price-paid" | "height-to-year-2013-90p-price-paid" | "height-to-from-6m-to-1y-net-realized-profit-and-loss" | "height-to-year-2021-adjusted-spent-output-profit-ratio" | "height-to-from-3y-to-5y-negative-realized-loss" | "height-to-p2pkh-20p-price-paid" | "height-to-up-to-5m-cumulative-realized-loss" | "height-to-liquid-adjusted-value-created" | "height-to-up-to-7y-supply-in-profit-to-own-supply-ratio" | "height-to-year-2017-10p-price-paid" | "height-to-market-price-to-fish-realized-price-ratio-0-5p" | "height-to-p2pk-realized-cap" | "height-to-up-to-4m-realized-loss" | "height-to-year-2018-25p-price-paid" | "height-to-year-2015-cumulative-realized-loss" | "height-to-p2sh-adjusted-spent-output-profit-ratio" | "height-to-up-to-7y-unrealized-profit" | "height-to-market-price-to-from-1d-to-1w-realized-price-ratio-1p" | "height-to-year-2020-value-destroyed" | "height-to-from-1y-to-2y-supply-in-profit-to-circulating-supply-ratio" | "height-to-humpback-95p-price-paid" | "height-to-illiquid-realized-value" | "height-to-from-4y-cumulative-realized-profit" | "height-to-highly-liquid-80p-price-paid" | "height-to-from-6m-to-1y-median-price-paid" | "height-to-market-price-to-from-6m-to-1y-realized-price-ratio-99-9p" | "height-to-up-to-1d-input-volume" | "height-to-p2sh-80p-price-paid" | "height-to-year-2024-25p-price-paid" | "height-to-year-2009-70p-price-paid" | "height-to-shrimp-supply-in-loss" | "height-to-year-2013-median-price-paid" | "height-to-up-to-2m-85p-price-paid" | "height-to-humpback-05p-price-paid" | "height-to-market-price-to-p2pk-realized-price-ratio-1m-sma" | "height-to-up-to-5m-supply-in-loss-to-own-supply-ratio" | "height-to-from-3m-to-6m-20p-price-paid" | "height-to-from-10y-55p-price-paid" | "height-to-liquid-realized-price-0-5p" | "height-to-plankton-adjusted-value-created" | "height-to-year-2011-realized-cap-1m-net-change" | "height-to-year-2014-55p-price-paid" | "height-to-from-10y-to-15y-adjusted-spent-output-profit-ratio" | "height-to-year-2010-realized-price-0-5p" | "height-to-year-2010-30p-price-paid" | "height-to-market-price-to-year-2016-realized-price-ratio-1y-sma-momentum-oscillator" | "height-to-market-price-to-year-2012-realized-price-ratio-99p" | "height-to-market-price-to-from-5y-to-7y-realized-price-ratio-99-5p" | "height-to-plankton-halved-supply" | "height-to-market-price-to-price-1w-sma-ratio-1y-sma" | "height-to-up-to-1d-95p-price-paid" | "height-to-up-to-2m-value-destroyed" | "height-to-up-to-3y-supply-in-profit-to-circulating-supply-ratio" | "height-to-p2wsh-supply-in-profit-to-own-supply-ratio" | "height-to-up-to-5m-25p-price-paid" | "height-to-year-2013-20p-price-paid" | "height-to-from-6m-to-1y-cumulative-net-realized-profit-and-loss-1m-net-change" | "height-to-year-2022-realized-price-1p" | "height-to-shrimp-supply-in-loss-to-circulating-supply-ratio" | "height-to-sth-realized-price-99-5p" | "height-to-up-to-5m-30p-price-paid" | "height-to-from-2y-realized-cap" | "height-to-market-price-to-year-2016-realized-price-ratio-0-5p" | "height-to-year-2013-supply-in-profit-to-circulating-supply-ratio" | "height-to-market-price-to-year-2023-realized-price-ratio-1y-sma-momentum-oscillator" | "height-to-highly-liquid-input-volume" | "height-to-p2wsh-negative-realized-loss" | "height-to-up-to-2y-60p-price-paid" | "height-to-up-to-4m-value-destroyed" | "height-to-market-price-to-up-to-3y-realized-price-ratio" | "height-to-up-to-1w-realized-price-99-5p" | "height-to-market-price-to-vaulted-price-ratio-1p" | "height-to-market-price-to-price-1w-sma-ratio-0-5p" | "height-to-from-1d-to-1w-unrealized-profit" | "height-to-year-2014-cumulative-net-realized-profit-and-loss-1m-net-change" | "height-to-up-to-7y-net-unrealized-profit-and-loss" | "height-to-lth-utxo-count" | "height-to-up-to-5y-55p-price-paid" | "height-to-market-price-to-year-2014-realized-price-ratio-1y-sma-momentum-oscillator" | "height-to-year-2009-adjusted-spent-output-profit-ratio" | "height-to-from-2y-to-3y-negative-unrealized-loss" | "height-to-market-price-to-price-1m-sma-ratio-1w-sma" | "height-to-plankton-supply-in-loss" | "height-to-up-to-1w-realized-price" | "height-to-from-6m-to-1y-20p-price-paid" | "height-to-active-supply" | "height-to-from-1w-to-1m-30p-price-paid" | "height-to-market-price-to-liquid-realized-price-ratio-0-1p" | "height-to-market-price-to-megalodon-realized-price-ratio-0-5p" | "height-to-cointime-price-99p" | "height-to-up-to-2m-75p-price-paid" | "height-to-year-2016-realized-price" | "height-to-market-price-to-price-2y-sma-ratio-99-5p" | "height-to-from-10y-to-15y-realized-cap" | "height-to-market-price-to-from-7y-to-10y-realized-price-ratio-99p" | "height-to-market-price-to-year-2024-realized-price-ratio-1y-sma" | "height-to-p2pkh-cumulative-realized-loss" | "height-to-year-2017-90p-price-paid" | "height-to-year-2015-realized-price-1p" | "height-to-sth-realized-profit" | "height-to-market-price-to-up-to-1w-realized-price-ratio-0-5p" | "height-to-year-2011-supply-in-profit-to-circulating-supply-ratio" | "height-to-up-to-1m-realized-price-99p" | "height-to-year-2020-input-count" | "height-to-year-2021-realized-price-1p" | "height-to-market-price-to-megalodon-realized-price-ratio-1m-sma" | "height-to-year-2024-median-price-paid" | "height-to-from-1y-to-2y-40p-price-paid" | "height-to-market-price-to-from-3y-to-5y-realized-price-ratio-0-1p" | "height-to-market-price-to-illiquid-realized-price-ratio-1w-sma" | "height-to-megalodon-65p-price-paid" | "height-to-p2pkh-realized-loss" | "height-to-highly-liquid-net-realized-profit-and-loss" | "height-to-up-to-7y-realized-cap" | "height-to-up-to-10y-input-volume" | "height-to-up-to-2y-halved-supply-to-circulating-supply-ratio" | "height-to-from-1w-to-1m-input-volume" | "height-to-plankton-40p-price-paid" | "height-to-up-to-5m-90p-price-paid" | "height-to-lth-halved-supply-to-circulating-supply-ratio" | "height-to-year-2019-cumulative-net-realized-profit-and-loss-1m-net-change" | "height-to-up-to-10y-55p-price-paid" | "height-to-p2pk-25p-price-paid" | "height-to-market-price-to-up-to-3m-realized-price-ratio-99-9p" | "height-to-up-to-1d-adjusted-value-created" | "height-to-from-3m-to-6m-net-unrealized-profit-and-loss" | "height-to-sth-supply-in-profit" | "height-to-year-2015-value-destroyed" | "height-to-p2pk-55p-price-paid" | "height-to-from-4y-supply-in-profit" | "height-to-market-price-to-price-1w-sma-ratio-1p" | "height-to-up-to-1m-realized-price-1p" | "height-to-p2wsh-input-volume" | "height-to-year-2021-85p-price-paid" | "height-to-market-price-to-price-144d-sma-ratio-0-1p" | "height-to-crab-realized-cap-1m-net-change" | "height-to-up-to-3m-utxo-count" | "height-to-fish-supply-in-profit" | "height-to-megalodon-60p-price-paid" | "height-to-from-1y-to-2y-90p-price-paid" | "height-to-year-2010-adjusted-value-destroyed" | "height-to-market-price-to-lth-realized-price-ratio-99p" | "height-to-p2wsh-realized-price-0-5p" | "height-to-market-price-to-from-1m-to-3m-realized-price-ratio-99-9p" | "height-to-year-2012-supply-in-profit-to-circulating-supply-ratio" | "height-to-whale-65p-price-paid" | "height-to-market-price-to-year-2017-realized-price-ratio-1m-sma" | "height-to-market-price-to-cointime-price-ratio-99-5p" | "height-to-up-to-15y-spent-output-profit-ratio" | "height-to-up-to-6m-75p-price-paid" | "height-to-p2wpkh-halved-supply" | "height-to-from-3m-to-6m-15p-price-paid" | "height-to-highly-liquid-20p-price-paid" | "height-to-market-price-to-illiquid-realized-price-ratio-1p" | "height-to-year-2012-80p-price-paid" | "height-to-year-2024-65p-price-paid" | "height-to-market-price-to-price-2y-sma-ratio-1w-sma" | "height-to-price-89d-sma-99-5p" | "height-to-fish-negative-unrealized-loss" | "height-to-whale-supply" | "height-to-up-to-2y-70p-price-paid" | "height-to-from-7y-to-10y-halved-supply" | "height-to-up-to-10y-cumulative-net-realized-profit-and-loss" | "height-to-liquid-95p-price-paid" | "height-to-market-price-to-from-7y-to-10y-realized-price-ratio-1m-sma" | "height-to-plankton-supply" | "height-to-year-2011-cumulative-realized-profit" | "height-to-up-to-1m-80p-price-paid" | "height-to-liquid-70p-price-paid" | "height-to-price-1m-sma-1p" | "height-to-year-2017-utxo-count" | "height-to-from-15y-negative-realized-loss" | "height-to-up-to-5y-realized-cap" | "height-to-shrimp-input-count" | "height-to-from-1w-to-1m-supply-to-circulating-supply-ratio" | "height-to-from-4y-realized-profit" | "height-to-market-price-to-up-to-5y-realized-price-ratio-1y-sma-momentum-oscillator" | "height-to-up-to-15y-supply-in-profit" | "height-to-year-2023-realized-price-99-9p" | "height-to-shark-90p-price-paid" | "height-to-year-2009-35p-price-paid" | "height-to-market-price-to-up-to-4m-realized-price-ratio-0-1p" | "height-to-year-2009-adjusted-value-created" | "height-to-market-price-to-year-2024-realized-price-ratio-1y-sma-momentum-oscillator" | "height-to-up-to-5y-realized-loss" | "height-to-market-price-to-from-1y-realized-price-ratio-1p" | "height-to-from-6m-to-1y-negative-unrealized-loss" | "height-to-market-price-to-price-200w-sma-ratio-99-9p" | "height-to-market-price-to-up-to-1d-realized-price-ratio" | "height-to-market-price-to-from-2y-to-3y-realized-price-ratio-0-1p" | "height-to-market-price-to-up-to-15y-realized-price-ratio-1y-sma" | "height-to-year-2011-input-volume" | "height-to-shark-realized-price-1p" | "height-to-from-6m-to-1y-95p-price-paid" | "height-to-lth-value-created" | "height-to-p2pk-10p-price-paid" | "height-to-up-to-3y-value-created" | "height-to-year-2017-20p-price-paid" | "height-to-up-to-5y-20p-price-paid" | "height-to-lth-supply-in-profit" | "height-to-market-price-to-year-2020-realized-price-ratio-99-9p" | "height-to-lth-95p-price-paid" | "height-to-from-3y-to-5y-95p-price-paid" | "height-to-market-price-to-up-to-3y-realized-price-ratio-0-5p" | "height-to-market-price-to-from-6m-to-1y-realized-price-ratio-0-1p" | "height-to-year-2015-supply-to-circulating-supply-ratio" | "height-to-highly-liquid-cumulative-realized-profit" | "height-to-up-to-1m-10p-price-paid" | "height-to-year-2015-unrealized-loss" | "height-to-p2wpkh-70p-price-paid" | "height-to-shrimp-20p-price-paid" | "height-to-year-2016-realized-cap-1m-net-change" | "height-to-year-2013-25p-price-paid" | "height-to-price-1y-sma-99p" | "height-to-liveliness" | "height-to-market-price-to-sth-realized-price-ratio-1y-sma-momentum-oscillator" | "height-to-up-to-1m-realized-price-0-1p" | "height-to-up-to-1w-net-realized-profit-and-loss-to-market-cap-ratio" | "height-to-up-to-3y-negative-realized-loss" | "height-to-liquid-supply-in-loss" | "height-to-market-price-to-price-200w-sma-ratio-1p" | "height-to-up-to-5m-input-count" | "height-to-from-1d-to-1w-input-count" | "height-to-up-to-1w-cumulative-net-realized-profit-and-loss" | "height-to-market-price-to-from-10y-realized-price-ratio-1p" | "height-to-sth-supply-in-profit-to-circulating-supply-ratio" | "height-to-year-2020-realized-value" | "height-to-market-price-to-liquid-realized-price-ratio-1y-sma-momentum-oscillator" | "height-to-p2pk-realized-profit" | "height-to-up-to-3m-realized-price-99-5p" | "height-to-year-2013-05p-price-paid" | "height-to-up-to-3m-adjusted-spent-output-profit-ratio" | "height-to-market-price-to-from-4y-realized-price-ratio-0-1p" | "height-to-up-to-1y-net-realized-profit-and-loss" | "height-to-from-1m-to-3m-75p-price-paid" | "height-to-up-to-2m-negative-realized-loss" | "height-to-from-2y-realized-price-1p" | "height-to-p2wsh-supply-in-loss" | "height-to-year-2018-75p-price-paid" | "height-to-market-price-to-illiquid-realized-price-ratio-99-5p" | "height-to-from-1w-to-1m-65p-price-paid" | "height-to-up-to-1d-10p-price-paid" | "height-to-up-to-1d-median-price-paid" | "height-to-p2tr-supply-in-profit-to-circulating-supply-ratio" | "height-to-year-2022-realized-price-99-5p" | "height-to-from-5y-to-7y-realized-profit" | "height-to-crab-supply-in-profit-to-own-supply-ratio" | "height-to-market-price-to-shark-realized-price-ratio-1p" | "height-to-fish-10p-price-paid" | "height-to-block-weight" | "height-to-up-to-1w-adjusted-spent-output-profit-ratio" | "height-to-from-2y-median-price-paid" | "height-to-up-to-5y-adjusted-spent-output-profit-ratio" | "height-to-vaulted-price-99-5p" | "height-to-from-2y-adjusted-value-created" | "height-to-up-to-10y-supply-in-profit-to-circulating-supply-ratio" | "height-to-market-price-to-shrimp-realized-price-ratio-1m-sma" | "height-to-up-to-4m-realized-price" | "height-to-market-price-to-up-to-5y-realized-price-ratio-1m-sma" | "height-to-year-2014-realized-price-1p" | "height-to-fish-70p-price-paid" | "height-to-year-2014-unrealized-profit" | "height-to-year-2015-80p-price-paid" | "height-to-shrimp-95p-price-paid" | "height-to-from-1w-to-1m-net-realized-profit-and-loss-to-market-cap-ratio" | "height-to-p2tr-realized-price-99p" | "height-to-market-price-to-year-2013-realized-price-ratio-1y-sma" | "height-to-year-2010-cumulative-net-realized-profit-and-loss-1m-net-change" | "height-to-year-2019-realized-cap" | "height-to-up-to-6m-40p-price-paid" | "height-to-market-price-to-shrimp-realized-price-ratio-1w-sma" | "height-to-from-1d-to-1w-negative-realized-loss" | "height-to-from-1w-to-1m-unrealized-profit" | "height-to-market-price-to-whale-realized-price-ratio-0-1p" | "height-to-up-to-7y-adjusted-value-destroyed" | "height-to-year-2009-median-price-paid" | "height-to-year-2024-realized-price-1p" | "height-to-market-price-to-year-2020-realized-price-ratio-0-5p" | "height-to-up-to-3y-median-price-paid" | "height-to-p2wpkh-supply-in-loss" | "height-to-market-price-to-up-to-3m-realized-price-ratio-1y-sma" | "height-to-market-price-to-sth-realized-price-ratio-0-5p" | "height-to-p2pk-net-unrealized-profit-and-loss" | "height-to-shark-25p-price-paid" | "height-to-vaulted-price" | "height-to-year-2018-supply-in-loss-to-own-supply-ratio" | "height-to-year-2020-input-volume" | "height-to-year-2024-realized-value" | "height-to-year-2022-75p-price-paid" | "height-to-up-to-3y-adjusted-spent-output-profit-ratio" | "height-to-market-price-to-from-15y-realized-price-ratio-1m-sma" | "height-to-from-3y-to-5y-supply-to-circulating-supply-ratio" | "height-to-megalodon-adjusted-spent-output-profit-ratio" | "height-to-up-to-1w-realized-price-0-5p" | "height-to-market-price-to-price-4y-sma-ratio-99p" | "height-to-p2pkh-net-unrealized-profit-and-loss-to-market-cap-ratio" | "height-to-market-price-to-year-2018-realized-price-ratio-0-1p" | "height-to-p2pkh-95p-price-paid" | "height-to-up-to-1y-20p-price-paid" | "height-to-p2wsh-adjusted-value-created" | "height-to-year-2024-supply-to-circulating-supply-ratio" | "height-to-from-10y-supply-in-profit-to-own-supply-ratio" | "height-to-up-to-1d-70p-price-paid" | "height-to-market-price-to-from-15y-realized-price-ratio-99-5p" | "height-to-market-price-to-year-2021-realized-price-ratio-1w-sma" | "height-to-illiquid-60p-price-paid" | "height-to-year-2017-supply-in-profit-to-own-supply-ratio" | "height-to-from-10y-to-15y-25p-price-paid" | "height-to-up-to-1d-cumulative-net-realized-profit-and-loss-1m-net-change" | "height-to-market-price-to-from-1y-to-2y-realized-price-ratio-0-1p" | "height-to-p2wpkh-cumulative-realized-profit" | "height-to-p2wsh-realized-loss" | "height-to-up-to-1d-20p-price-paid" | "height-to-market-price-to-price-1w-sma-ratio" | "height-to-year-2019-net-realized-profit-and-loss-to-market-cap-ratio" | "height-to-market-price-to-up-to-1w-realized-price-ratio-99-5p" | "height-to-year-2020-realized-loss" | "height-to-year-2021-negative-unrealized-loss" | "height-to-lth-realized-price-0-5p" | "height-to-p2wsh-value-created" | "height-to-year-2012-realized-cap-1m-net-change" | "height-to-true-market-mean" | "height-to-from-1m-to-3m-60p-price-paid" | "height-to-year-2010-realized-profit" | "height-to-year-2018-realized-price-0-1p" | "height-to-from-3y-to-5y-realized-price-0-5p" | "height-to-lth-realized-price-99-9p" | "height-to-from-15y-75p-price-paid" | "height-to-shrimp-adjusted-value-created" | "height-to-p2wpkh-median-price-paid" | "height-to-up-to-1y-cumulative-realized-profit" | "height-to-transaction-velocity" | "height-to-up-to-5y-supply-in-profit" | "height-to-whale-address-count" | "height-to-whale-net-realized-profit-and-loss-to-market-cap-ratio" | "height-to-year-2019-35p-price-paid" | "height-to-from-1d-to-1w-supply-in-profit" | "height-to-realized-loss" | "height-to-year-2013-realized-value" | "height-to-liquid-35p-price-paid" | "height-to-from-10y-realized-price" | "height-to-from-1d-to-1w-realized-price-1p" | "height-to-market-price-to-from-1m-to-3m-realized-price-ratio-1y-sma-momentum-oscillator" | "height-to-market-price-to-year-2023-realized-price-ratio-99p" | "height-to-whale-adjusted-spent-output-profit-ratio" | "height-to-year-2023-negative-realized-loss" | "height-to-market-price-to-p2wsh-realized-price-ratio-1p" | "height-to-year-2014-negative-realized-loss" | "height-to-negative-realized-loss" | "height-to-humpback-realized-price-1p" | "height-to-up-to-3y-supply-in-loss-to-own-supply-ratio" | "height-to-up-to-6m-utxo-count" | "height-to-from-2y-net-realized-profit-and-loss-to-market-cap-ratio" | "height-to-thermo-cap-to-investor-cap-ratio" | "height-to-shark-60p-price-paid" | "height-to-up-to-1d-realized-value" | "height-to-illiquid-75p-price-paid" | "height-to-up-to-2m-supply-in-loss" | "height-to-market-price-to-price-1y-sma-ratio-1y-sma" | "height-to-up-to-3y-net-realized-profit-and-loss-to-market-cap-ratio" | "height-to-up-to-7y-realized-cap-1m-net-change" | "height-to-fish-realized-price-0-5p" | "height-to-from-1d-to-1w-15p-price-paid" | "height-to-sth-realized-price" | "height-to-year-2012-realized-price-1p" | "height-to-price-21d-sma" | "height-to-year-2015-realized-cap-1m-net-change" | "height-to-market-price-to-from-6m-to-1y-realized-price-ratio-1w-sma" | "height-to-crab-20p-price-paid" | "height-to-from-2y-10p-price-paid" | "height-to-up-to-1m-supply-in-profit-to-own-supply-ratio" | "height-to-up-to-1w-65p-price-paid" | "height-to-p2pkh-negative-unrealized-loss" | "height-to-megalodon-85p-price-paid" | "height-to-p2pk-supply-in-loss-to-circulating-supply-ratio" | "height-to-plankton-30p-price-paid" | "height-to-from-3y-to-5y-halved-supply-to-circulating-supply-ratio" | "height-to-year-2021-realized-cap-1m-net-change" | "height-to-up-to-2m-cumulative-net-realized-profit-and-loss" | "height-to-liquid-supply" | "height-to-p2tr-net-unrealized-profit-and-loss" | "height-to-investor-cap" | "height-to-up-to-6m-65p-price-paid" | "height-to-shrimp-85p-price-paid" | "height-to-up-to-5m-halved-supply" | "height-to-illiquid-80p-price-paid" | "height-to-lth-30p-price-paid" | "height-to-from-1y-to-2y-adjusted-value-created" | "height-to-market-price-to-p2pkh-realized-price-ratio-1p" | "height-to-market-price-to-year-2018-realized-price-ratio-1w-sma" | "height-to-up-to-3y-cumulative-net-realized-profit-and-loss" | "height-to-price-34d-sma-99-9p" | "height-to-year-2018-halved-supply" | "height-to-year-2023-adjusted-value-destroyed" | "height-to-year-2009-utxo-count" | "height-to-highly-liquid-realized-price-0-5p" | "height-to-up-to-2y-10p-price-paid" | "height-to-year-2009-15p-price-paid" | "height-to-from-2y-to-3y-net-realized-profit-and-loss" | "height-to-close" | "height-to-from-1m-to-3m-70p-price-paid" | "height-to-from-2y-realized-price-99p" | "height-to-from-3m-to-6m-realized-price" | "height-to-from-3m-to-6m-75p-price-paid" | "height-to-from-7y-to-10y-adjusted-spent-output-profit-ratio" | "height-to-market-price-to-p2pk-realized-price-ratio-0-5p" | "height-to-megalodon-15p-price-paid" | "height-to-from-3y-to-5y-realized-cap" | "height-to-market-price-to-up-to-2m-realized-price-ratio-1y-sma-momentum-oscillator" | "height-to-year-2018-supply-in-profit" | "height-to-year-2010-unrealized-loss" | "height-to-70p-price-paid" | "height-to-year-2011-realized-cap" | "height-to-market-price-to-year-2009-realized-price-ratio-0-5p" | "height-to-market-price-to-year-2020-realized-price-ratio-99-5p" | "height-to-up-to-7y-net-realized-profit-and-loss-to-market-cap-ratio" | "height-to-p2wpkh-halved-supply-to-circulating-supply-ratio" | "height-to-from-4y-realized-cap" | "height-to-year-2020-realized-price-99-9p" | "height-to-p2sh-realized-cap-1m-net-change" | "height-to-up-to-1m-net-unrealized-profit-and-loss-to-market-cap-ratio" | "height-to-year-2023-30p-price-paid" | "height-to-from-2y-realized-price-0-1p" | "height-to-illiquid-95p-price-paid" | "height-to-p2sh-realized-price-0-1p" | "height-to-p2tr-supply-in-loss-to-circulating-supply-ratio" | "height-to-from-15y-realized-price-0-1p" | "height-to-year-2021-35p-price-paid" | "height-to-market-price-to-true-market-mean-ratio-1y-sma-momentum-oscillator" | "height-to-year-2013-supply-in-loss-to-own-supply-ratio" | "height-to-year-2016-supply-in-loss-to-circulating-supply-ratio" | "height-to-year-2014-realized-value" | "height-to-p2tr-supply-in-profit" | "height-to-up-to-4m-realized-price-0-5p" | "height-to-megalodon-supply-in-loss-to-own-supply-ratio" | "height-to-up-to-15y-15p-price-paid" | "height-to-p2pkh-25p-price-paid" | "height-to-shark-value-created" | "height-to-year-2015-net-unrealized-profit-and-loss" | "height-to-up-to-2y-supply-in-profit-to-circulating-supply-ratio" | "height-to-p2wpkh-realized-price-0-1p" | "height-to-year-2010-realized-price-1p" | "height-to-up-to-5y-cumulative-realized-loss" | "height-to-market-price-to-true-market-mean-ratio-1y-sma" | "height-to-year-2014-spent-output-profit-ratio" | "height-to-crab-40p-price-paid" | "height-to-market-price-to-up-to-6m-realized-price-ratio-1p" | "height-to-p2tr-70p-price-paid" | "height-to-year-2019-realized-cap-1m-net-change" | "height-to-crab-35p-price-paid" | "height-to-up-to-10y-95p-price-paid" | "height-to-market-price-to-price-13d-sma-ratio-0-1p" | "height-to-up-to-6m-realized-price" | "height-to-sth-90p-price-paid" | "height-to-cumulative-realized-loss" | "height-to-year-2015-supply-in-profit-to-circulating-supply-ratio" | "height-to-up-to-15y-realized-price-0-1p" | "height-to-market-price-to-up-to-1d-realized-price-ratio-1m-sma" | "height-to-market-price-to-price-55d-sma-ratio-1w-sma" | "height-to-year-2014-input-volume" | "height-to-highly-liquid-supply-in-profit-to-own-supply-ratio" | "height-to-whale-utxo-count" | "height-to-from-6m-to-1y-10p-price-paid" | "height-to-from-3m-to-6m-cumulative-net-realized-profit-and-loss" | "height-to-p2pkh-cumulative-net-realized-profit-and-loss" | "height-to-up-to-5m-10p-price-paid" | "height-to-from-4y-net-unrealized-profit-and-loss-to-market-cap-ratio" | "height-to-market-price-to-price-89d-sma-ratio-99-9p" | "height-to-price-21d-sma-99p" | "height-to-from-1w-to-1m-negative-realized-loss" | "height-to-market-price-to-price-4y-sma-ratio-0-5p" | "height-to-p2wpkh-75p-price-paid" | "height-to-up-to-6m-90p-price-paid" | "height-to-from-4y-supply-in-profit-to-circulating-supply-ratio" | "height-to-from-3y-to-5y-adjusted-spent-output-profit-ratio" | "height-to-year-2017-net-realized-profit-and-loss" | "height-to-megalodon-realized-price-99-5p" | "height-to-up-to-3m-cumulative-net-realized-profit-and-loss-1m-net-change" | "height-to-up-to-5m-realized-price-1p" | "height-to-market-price-to-price-144d-sma-ratio-1m-sma" | "height-to-active-price-0-5p" | "height-to-market-price-to-from-2y-realized-price-ratio-1p" | "height-to-from-1y-65p-price-paid" | "height-to-up-to-1m-halved-supply-to-circulating-supply-ratio" | "height-to-from-10y-to-15y-halved-supply-to-circulating-supply-ratio" | "height-to-year-2011-unrealized-loss" | "height-to-year-2022-supply-in-profit-to-own-supply-ratio" | "height-to-market-price-to-up-to-2m-realized-price-ratio-99-9p" | "height-to-year-2021-net-unrealized-profit-and-loss" | "height-to-year-2015-input-volume" | "height-to-shark-realized-price-0-1p" | "height-to-lth-supply-in-loss-to-own-supply-ratio" | "height-to-year-2016-net-realized-profit-and-loss" | "height-to-up-to-10y-realized-cap" | "height-to-from-1m-to-3m-supply-in-profit-to-own-supply-ratio" | "height-to-p2pk-value-destroyed" | "height-to-price-144d-sma-1p" | "height-to-market-price-to-year-2009-realized-price-ratio-0-1p" | "height-to-up-to-1w-value-destroyed" | "height-to-year-2016-25p-price-paid" | "height-to-up-to-2m-value-created" | "height-to-from-1y-halved-supply" | "height-to-p2pkh-realized-price-99p" | "height-to-up-to-3y-05p-price-paid" | "height-to-up-to-5m-supply-in-profit" | "height-to-fees-in-dollars" | "height-to-up-to-5y-value-created" | "height-to-up-to-15y-realized-cap-1m-net-change" | "height-to-up-to-1w-cumulative-net-realized-profit-and-loss-1m-net-change" | "height-to-from-10y-to-15y-adjusted-value-created" | "height-to-up-to-4m-realized-cap" | "height-to-humpback-net-unrealized-profit-and-loss" | "height-to-megalodon-spent-output-profit-ratio" | "height-to-from-4y-cumulative-net-realized-profit-and-loss-1m-net-change" | "height-to-from-7y-to-10y-utxo-count" | "height-to-up-to-1m-halved-supply" | "height-to-crab-net-realized-profit-and-loss-to-market-cap-ratio" | "height-to-from-2y-to-3y-utxo-count" | "height-to-highly-liquid-95p-price-paid" | "height-to-market-price-to-up-to-2m-realized-price-ratio-0-5p" | "height-to-market-price-to-up-to-2m-realized-price-ratio-1w-sma" | "height-to-up-to-2m-adjusted-value-created" | "height-to-up-to-5m-unrealized-loss" | "height-to-year-2011-realized-price-99-5p" | "height-to-year-2013-realized-price-0-5p" | "height-to-unrealized-loss" | "height-to-from-7y-to-10y-cumulative-realized-loss" | "height-to-year-2012-90p-price-paid" | "height-to-year-2010-supply-to-circulating-supply-ratio" | "height-to-from-7y-to-10y-cumulative-realized-profit" | "height-to-year-2022-net-realized-profit-and-loss" | "height-to-year-2018-cumulative-net-realized-profit-and-loss-1m-net-change" | "height-to-from-2y-to-3y-supply-in-loss-to-circulating-supply-ratio" | "height-to-liquid-05p-price-paid" | "height-to-from-3m-to-6m-negative-realized-loss" | "height-to-market-price-to-from-2y-to-3y-realized-price-ratio-0-5p" | "height-to-megalodon-35p-price-paid" | "height-to-megalodon-adjusted-value-destroyed" | "height-to-up-to-15y-60p-price-paid" | "height-to-from-1y-supply-to-circulating-supply-ratio" | "height-to-whale-30p-price-paid" | "height-to-up-to-2y-cumulative-realized-loss" | "height-to-from-1y-10p-price-paid" | "height-to-p2wsh-supply-in-loss-to-own-supply-ratio" | "height-to-year-2021-40p-price-paid" | "height-to-market-price-to-lth-realized-price-ratio-1y-sma-momentum-oscillator" | "height-to-from-10y-supply-in-loss" | "height-to-market-price-to-shark-realized-price-ratio-1w-sma" | "height-to-market-price-to-year-2012-realized-price-ratio-1m-sma" | "height-to-price-55d-sma-99-5p" | "height-to-shrimp-60p-price-paid" | "height-to-up-to-1d-realized-cap-1m-net-change" | "height-to-market-price-to-price-89d-sma-ratio-99-5p" | "height-to-year-2023-spent-output-profit-ratio" | "height-to-from-2y-to-3y-75p-price-paid" | "height-to-market-price-to-p2tr-realized-price-ratio-1y-sma-momentum-oscillator" | "height-to-from-4y-realized-loss" | "height-to-from-1d-to-1w-cumulative-realized-profit" | "height-to-from-1d-to-1w-realized-cap-1m-net-change" | "height-to-illiquid-40p-price-paid" | "height-to-p2tr-realized-value" | "height-to-year-2010-adjusted-value-created" | "height-to-from-15y-10p-price-paid" | "height-to-lth-realized-price-0-1p" | "height-to-from-1y-realized-price-99-5p" | "height-to-from-2y-net-realized-profit-and-loss" | "height-to-realized-price-99-5p" | "height-to-15p-price-paid" | "height-to-from-2y-negative-unrealized-loss" | "height-to-from-3m-to-6m-cumulative-net-realized-profit-and-loss-1m-net-change" | "height-to-p2wsh-supply-in-profit-to-circulating-supply-ratio" | "height-to-whale-95p-price-paid" | "height-to-whale-cumulative-realized-profit" | "height-to-year-2021-realized-price-99-5p" | "height-to-market-price-to-vaulted-price-ratio-99-9p" | "height-to-year-2024-85p-price-paid" | "height-to-from-1y-realized-price" | "height-to-up-to-10y-supply-in-profit-to-own-supply-ratio" | "height-to-from-1m-to-3m-realized-profit" | "height-to-up-to-2m-adjusted-spent-output-profit-ratio" | "height-to-year-2019-20p-price-paid" | "height-to-from-6m-to-1y-realized-price-0-5p" | "height-to-crab-55p-price-paid" | "height-to-up-to-10y-cumulative-realized-profit" | "height-to-drawdown" | "height-to-from-4y-realized-price-0-5p" | "height-to-from-1y-to-2y-realized-price" | "height-to-market-price-to-vaulted-price-ratio-1y-sma-momentum-oscillator" | "height-to-up-to-1m-cumulative-net-realized-profit-and-loss" | "height-to-up-to-7y-supply-in-loss-to-own-supply-ratio" | "height-to-up-to-15y-70p-price-paid" | "height-to-up-to-5y-input-volume" | "height-to-up-to-15y-adjusted-value-created" | "height-to-year-2022-cumulative-realized-profit" | "height-to-market-price-to-plankton-realized-price-ratio" | "height-to-year-2020-realized-price-1p" | "height-to-up-to-3y-70p-price-paid" | "height-to-fish-unrealized-profit" | "height-to-market-price-to-realized-price-ratio-1y-sma-momentum-oscillator" | "height-to-up-to-1m-90p-price-paid" | "height-to-year-2019-adjusted-spent-output-profit-ratio" | "height-to-humpback-input-count" | "height-to-from-1m-to-3m-unrealized-loss" | "height-to-year-2022-realized-price-99-9p" | "height-to-up-to-5y-realized-cap-1m-net-change" | "height-to-p2sh-75p-price-paid" | "height-to-price-200w-sma-99-9p" | "height-to-sth-adjusted-value-destroyed" | "height-to-year-2020-utxo-count" | "height-to-up-to-3m-input-count" | "height-to-market-price-to-fish-realized-price-ratio-99-5p" | "height-to-from-3m-to-6m-35p-price-paid" | "height-to-year-2015-halved-supply" | "height-to-year-2019-input-count" | "height-to-from-7y-to-10y-net-realized-profit-and-loss" | "height-to-from-1d-to-1w-20p-price-paid" | "height-to-shrimp-unrealized-profit" | "height-to-year-2019-75p-price-paid" | "height-to-from-5y-to-7y-realized-cap" | "height-to-market-price-to-price-144d-sma-ratio-1w-sma" | "height-to-market-price-to-p2wpkh-realized-price-ratio" | "height-to-from-5y-to-7y-75p-price-paid" | "height-to-market-price-to-whale-realized-price-ratio-1m-sma" | "height-to-p2pkh-75p-price-paid" | "height-to-fish-30p-price-paid" | "height-to-crab-realized-value" | "height-to-up-to-1w-cumulative-realized-loss" | "height-to-from-1m-to-3m-supply-in-loss-to-circulating-supply-ratio" | "height-to-up-to-5y-realized-price-99-9p" | "height-to-up-to-1y-realized-loss" | "height-to-up-to-6m-20p-price-paid" | "height-to-year-2018-realized-price" | "height-to-p2wsh-45p-price-paid" | "height-to-up-to-1m-realized-price" | "height-to-year-2011-negative-realized-loss" | "height-to-year-2021-net-realized-profit-and-loss-to-market-cap-ratio" | "height-to-market-price-to-up-to-15y-realized-price-ratio-1p" | "height-to-market-price-to-active-price-ratio-1m-sma" | "height-to-market-price-to-liquid-realized-price-ratio-1y-sma" | "height-to-up-to-1y-net-unrealized-profit-and-loss-to-market-cap-ratio" | "height-to-from-10y-to-15y-supply" | "height-to-market-price-to-p2sh-realized-price-ratio-0-5p" | "height-to-up-to-15y-halved-supply" | "height-to-from-7y-to-10y-realized-loss" | "height-to-year-2014-supply" | "height-to-year-2016-realized-profit" | "height-to-from-1y-to-2y-supply-in-profit-to-own-supply-ratio" | "height-to-activity-to-vaultedness-ratio" | "height-to-up-to-5y-supply-in-profit-to-own-supply-ratio" | "height-to-from-3m-to-6m-value-destroyed" | "height-to-up-to-1m-cumulative-realized-loss" | "height-to-market-price-to-price-89d-sma-ratio-0-5p" | "height-to-p2sh-cumulative-net-realized-profit-and-loss-1m-net-change" | "height-to-from-3m-to-6m-negative-unrealized-loss" | "height-to-shrimp-cumulative-realized-profit" | "height-to-fish-net-realized-profit-and-loss-to-market-cap-ratio" | "height-to-up-to-7y-65p-price-paid" | "height-to-year-2013-realized-cap-1m-net-change" | "height-to-p2pkh-supply-in-loss-to-circulating-supply-ratio" | "height-to-year-2023-40p-price-paid" | "height-to-p2pk-realized-loss" | "height-to-year-2017-supply-in-profit-to-circulating-supply-ratio" | "height-to-year-2016-realized-price-99-9p" | "height-to-from-3y-to-5y-15p-price-paid" | "height-to-market-price-to-illiquid-realized-price-ratio-1y-sma-momentum-oscillator" | "height-to-up-to-4m-supply-in-profit-to-circulating-supply-ratio" | "height-to-p2tr-90p-price-paid" | "height-to-up-to-7y-realized-value" | "height-to-year-2010-65p-price-paid" | "height-to-year-2016-input-count" | "height-to-market-price-to-illiquid-realized-price-ratio-99-9p" | "height-to-price-1y-sma-1p" | "height-to-from-10y-to-15y-net-unrealized-profit-and-loss-to-market-cap-ratio" | "height-to-market-price-to-lth-realized-price-ratio-1p" | "height-to-from-5y-to-7y-spent-output-profit-ratio" | "height-to-market-price-to-p2wpkh-realized-price-ratio-1y-sma-momentum-oscillator" | "height-to-market-price-to-year-2010-realized-price-ratio-1w-sma" | "height-to-market-price-to-from-3m-to-6m-realized-price-ratio" | "height-to-year-2015-adjusted-value-destroyed" | "height-to-year-2023-realized-price-0-1p" | "height-to-p2tr-net-realized-profit-and-loss-to-market-cap-ratio" | "height-to-year-2010-net-realized-profit-and-loss-to-market-cap-ratio" | "height-to-year-2011-halved-supply" | "height-to-liquid-cumulative-realized-loss" | "height-to-whale-cumulative-net-realized-profit-and-loss" | "height-to-crab-negative-realized-loss" | "height-to-from-4y-value-destroyed" | "height-to-year-2019-unrealized-loss" | "height-to-p2sh-realized-cap" | "height-to-up-to-1d-supply-in-loss-to-circulating-supply-ratio" | "height-to-crab-input-count" | "height-to-from-1y-to-2y-realized-value" | "height-to-up-to-3m-90p-price-paid" | "height-to-p2sh-value-created" | "height-to-market-price-to-from-5y-to-7y-realized-price-ratio-1w-sma" | "height-to-from-1y-40p-price-paid" | "height-to-illiquid-supply" | "height-to-up-to-1d-30p-price-paid" | "height-to-from-1d-to-1w-net-realized-profit-and-loss" | "height-to-market-price-to-price-200w-sma-ratio-0-5p" | "height-to-up-to-4m-value-created" | "height-to-from-1d-to-1w-supply-in-profit-to-own-supply-ratio" | "height-to-market-price-to-price-21d-sma-ratio-1m-sma" | "height-to-up-to-5y-30p-price-paid" | "height-to-up-to-5y-realized-price-0-5p" | "height-to-from-4y-cumulative-net-realized-profit-and-loss" | "height-to-up-to-7y-net-realized-profit-and-loss" | "height-to-year-2015-cumulative-net-realized-profit-and-loss" | "height-to-from-1m-to-3m-40p-price-paid" | "height-to-from-1w-to-1m-85p-price-paid" | "height-to-market-price-to-p2pkh-realized-price-ratio-0-1p" | "height-to-from-1y-to-2y-realized-profit" | "height-to-year-2022-input-count" | "height-to-market-price-to-price-34d-sma-ratio-1y-sma" | "height-to-year-2018-60p-price-paid" | "height-to-fish-negative-realized-loss" | "height-to-from-1y-to-2y-realized-price-99-9p" | "height-to-market-price-to-from-4y-realized-price-ratio-1m-sma" | "height-to-shrimp-net-realized-profit-and-loss" | "height-to-up-to-7y-35p-price-paid" | "height-to-from-10y-to-15y-supply-in-profit-to-own-supply-ratio" | "height-to-from-15y-supply-in-profit-to-own-supply-ratio" | "height-to-p2pkh-utxo-count" | "height-to-p2wpkh-30p-price-paid" | "height-to-up-to-4m-75p-price-paid" | "height-to-market-price-to-year-2014-realized-price-ratio-1w-sma" | "height-to-year-2023-realized-value" | "height-to-market-price-to-year-2014-realized-price-ratio-1m-sma" | "height-to-from-10y-to-15y-realized-price-99p" | "height-to-year-2010-35p-price-paid" | "height-to-from-1y-negative-unrealized-loss" | "height-to-from-15y-utxo-count" | "height-to-supply-in-profit" | "height-to-market-price-to-price-8d-sma-ratio-1y-sma-momentum-oscillator" | "height-to-market-price-to-from-10y-realized-price-ratio-99-5p" | "height-to-from-5y-to-7y-supply-in-loss" | "height-to-plankton-unrealized-loss" | "height-to-from-15y-halved-supply" | "height-to-up-to-4m-40p-price-paid" | "height-to-illiquid-value-created" | "height-to-year-2016-adjusted-value-created" | "height-to-from-4y-realized-price-99-9p" | "height-to-up-to-10y-supply-in-loss" | "height-to-from-4y-negative-unrealized-loss" | "height-to-market-price-to-whale-realized-price-ratio-99-9p" | "height-to-p2tr-35p-price-paid" | "height-to-up-to-1w-85p-price-paid" | "height-to-from-2y-to-3y-value-created" | "height-to-year-2009-45p-price-paid" | "height-to-highly-liquid-55p-price-paid" | "height-to-up-to-15y-realized-price-1p" | "height-to-whale-median-price-paid" | "height-to-year-2019-net-unrealized-profit-and-loss-to-market-cap-ratio" | "height-to-up-to-3m-05p-price-paid" | "height-to-from-10y-realized-loss" | "height-to-humpback-80p-price-paid" | "height-to-market-price-to-active-price-ratio-1y-sma" | "height-to-market-price-to-shark-realized-price-ratio-0-1p" | "height-to-p2pk-supply-in-profit" | "height-to-up-to-2m-realized-price" | "height-to-market-price-to-lth-realized-price-ratio-1m-sma" | "height-to-p2pk-median-price-paid" | "height-to-p2wsh-supply-to-circulating-supply-ratio" | "height-to-up-to-4m-55p-price-paid" | "height-to-year-2010-realized-loss" | "height-to-year-2011-cumulative-realized-loss" | "height-to-cointime-price" | "height-to-from-6m-to-1y-supply" | "height-to-p2wsh-25p-price-paid" | "height-to-year-2018-supply-to-circulating-supply-ratio" | "height-to-fish-80p-price-paid" | "height-to-illiquid-90p-price-paid" | "height-to-from-10y-negative-unrealized-loss" | "height-to-market-price-to-year-2016-realized-price-ratio-1w-sma" | "height-to-price-21d-sma-99-5p" | "height-to-up-to-5m-supply-to-circulating-supply-ratio" | "height-to-year-2024-90p-price-paid" | "height-to-market-price-to-from-1y-realized-price-ratio-1m-sma" | "height-to-year-2009-cumulative-net-realized-profit-and-loss" | "height-to-active-price-0-1p" | "height-to-from-1d-to-1w-adjusted-spent-output-profit-ratio" | "height-to-market-price-to-from-7y-to-10y-realized-price-ratio-1w-sma" | "height-to-from-1m-to-3m-realized-price-99-5p" | "height-to-up-to-7y-supply-in-loss-to-circulating-supply-ratio" | "height-to-year-2011-realized-price-0-5p" | "height-to-p2tr-cumulative-net-realized-profit-and-loss" | "height-to-market-price-to-up-to-5m-realized-price-ratio-1y-sma-momentum-oscillator" | "height-to-up-to-6m-95p-price-paid" | "height-to-market-price-to-up-to-15y-realized-price-ratio-99-9p" | "height-to-megalodon-realized-price-0-5p" | "height-to-year-2020-net-unrealized-profit-and-loss" | "height-to-year-2014-realized-price" | "height-to-up-to-1w-20p-price-paid" | "height-to-from-3m-to-6m-supply-in-loss" | "height-to-market-price-to-liquid-realized-price-ratio-99-5p" | "height-to-from-15y-realized-price" | "height-to-market-price-to-price-1w-sma-ratio-1w-sma" | "height-to-market-price-to-fish-realized-price-ratio-1w-sma" | "height-to-from-1w-to-1m-realized-cap" | "height-to-up-to-15y-90p-price-paid" | "height-to-up-to-2y-realized-price-99-5p" | "height-to-whale-20p-price-paid" | "height-to-year-2015-65p-price-paid" | "height-to-up-to-1w-input-count" | "height-to-year-2023-median-price-paid" | "height-to-from-5y-to-7y-realized-cap-1m-net-change" | "height-to-market-price-to-price-200w-sma-ratio-1y-sma-momentum-oscillator" | "height-to-market-price-to-price-1w-sma-ratio-0-1p" | "height-to-market-price-to-crab-realized-price-ratio-0-1p" | "height-to-shrimp-negative-unrealized-loss" | "height-to-from-1y-to-2y-cumulative-realized-loss" | "height-to-from-2y-95p-price-paid" | "height-to-illiquid-utxo-count" | "height-to-crab-negative-unrealized-loss" | "height-to-from-15y-45p-price-paid" | "height-to-market-price-to-year-2014-realized-price-ratio-99-5p" | "height-to-market-price-to-from-1w-to-1m-realized-price-ratio-1y-sma" | "height-to-year-2022-cumulative-net-realized-profit-and-loss" | "height-to-lth-negative-realized-loss" | "height-to-market-price-to-whale-realized-price-ratio-1y-sma-momentum-oscillator" | "height-to-market-price-to-up-to-1d-realized-price-ratio-1p" | "height-to-year-2013-adjusted-spent-output-profit-ratio" | "height-to-from-3y-to-5y-realized-price-99-9p" | "height-to-price-1m-sma" | "height-to-from-1d-to-1w-supply-in-profit-to-circulating-supply-ratio" | "height-to-year-2024-20p-price-paid" | "height-to-market-price-to-up-to-1w-realized-price-ratio-99-9p" | "height-to-p2wsh-realized-price-99-9p" | "height-to-lth-05p-price-paid" | "height-to-market-price-to-p2pkh-realized-price-ratio-1y-sma" | "height-to-from-1d-to-1w-adjusted-value-destroyed" | "height-to-p2pk-20p-price-paid" | "height-to-year-2014-70p-price-paid" | "height-to-up-to-1w-realized-value" | "height-to-p2wpkh-10p-price-paid" | "height-to-sth-utxo-count" | "height-to-up-to-15y-45p-price-paid" | "height-to-p2sh-05p-price-paid" | "height-to-up-to-15y-realized-price-0-5p" | "height-to-fish-supply-in-profit-to-circulating-supply-ratio" | "height-to-up-to-10y-realized-price-99-9p" | "height-to-market-price-to-year-2022-realized-price-ratio-0-1p" | "height-to-market-price-to-price-200w-sma-ratio" | "height-to-up-to-3y-realized-price-99p" | "height-to-year-2018-halved-supply-to-circulating-supply-ratio" | "height-to-from-1d-to-1w-realized-price-99p" | "height-to-from-10y-30p-price-paid" | "height-to-cointime-value-destroyed" | "height-to-liquid-unrealized-loss" | "height-to-market-price-to-humpback-realized-price-ratio-0-1p" | "height-to-market-price-to-up-to-2y-realized-price-ratio-1y-sma" | "height-to-market-price-to-price-34d-sma-ratio-0-5p" | "height-to-from-6m-to-1y-input-count" | "height-to-market-price-to-from-2y-to-3y-realized-price-ratio" | "height-to-year-2016-65p-price-paid" | "height-to-market-price-to-highly-liquid-realized-price-ratio-1y-sma-momentum-oscillator" | "height-to-from-10y-to-15y-realized-price-0-5p" | "height-to-illiquid-net-unrealized-profit-and-loss" | "height-to-market-price-to-up-to-3m-realized-price-ratio-1w-sma" | "height-to-vaulted-price-99p" | "height-to-humpback-halved-supply" | "height-to-liquid-85p-price-paid" | "height-to-year-2024-cumulative-net-realized-profit-and-loss-1m-net-change" | "height-to-up-to-15y-75p-price-paid" | "height-to-year-2022-adjusted-value-destroyed" | "height-to-from-1m-to-3m-80p-price-paid" | "height-to-shrimp-supply-in-profit-to-circulating-supply-ratio" | "height-to-year-2013-unrealized-profit" | "height-to-from-1y-to-2y-70p-price-paid" | "height-to-market-price-to-year-2016-realized-price-ratio" | "height-to-up-to-5y-realized-price-0-1p" | "height-to-year-2017-net-realized-profit-and-loss-to-market-cap-ratio" | "height-to-market-price-to-from-4y-realized-price-ratio-1y-sma" | "height-to-up-to-7y-90p-price-paid" | "height-to-year-2010-supply-in-loss-to-circulating-supply-ratio" | "height-to-year-2019-realized-value" | "height-to-from-2y-to-3y-realized-loss" | "height-to-price-144d-sma-99-5p" | "height-to-whale-90p-price-paid" | "height-to-sth-95p-price-paid" | "height-to-crab-input-volume" | "height-to-year-2017-halved-supply" | "height-to-humpback-supply-in-profit-to-own-supply-ratio" | "height-to-up-to-3m-net-unrealized-profit-and-loss-to-market-cap-ratio" | "height-to-up-to-2y-cumulative-net-realized-profit-and-loss-1m-net-change" | "height-to-up-to-6m-cumulative-realized-loss" | "height-to-illiquid-adjusted-value-destroyed" | "height-to-transactions-per-second" | "height-to-p2tr-45p-price-paid" | "height-to-from-10y-net-realized-profit-and-loss-to-market-cap-ratio" | "height-to-up-to-4m-realized-price-99-9p" | "height-to-up-to-6m-60p-price-paid" | "height-to-year-2021-95p-price-paid" | "height-to-shark-supply" | "height-to-year-2022-90p-price-paid" | "height-to-market-price-to-from-1d-to-1w-realized-price-ratio-99-9p" | "height-to-year-2011-net-unrealized-profit-and-loss" | "height-to-block-size" | "height-to-year-2011-supply-in-profit" | "height-to-shrimp-cumulative-net-realized-profit-and-loss-1m-net-change" | "height-to-fish-05p-price-paid" | "height-to-market-price-to-price-144d-sma-ratio-1p" | "height-to-shrimp-realized-value" | "height-to-shark-address-count" | "height-to-from-1m-to-3m-cumulative-net-realized-profit-and-loss" | "height-to-from-1w-to-1m-realized-price-99p" | "height-to-market-price-to-realized-price-ratio-99-5p" | "height-to-from-3y-to-5y-70p-price-paid" | "height-to-input-volume" | "height-to-year-2014-realized-loss" | "height-to-up-to-1m-supply-in-profit" | "height-to-market-price-to-up-to-2m-realized-price-ratio" | "height-to-market-price-to-year-2017-realized-price-ratio-1y-sma" | "height-to-cointime-value-stored" | "height-to-up-to-10y-realized-price-99p" | "height-to-market-price-to-humpback-realized-price-ratio-1y-sma" | "height-to-year-2024-value-created" | "height-to-up-to-5y-supply-in-loss-to-circulating-supply-ratio" | "height-to-market-price-to-from-1d-to-1w-realized-price-ratio-1m-sma" | "height-to-market-price-to-year-2022-realized-price-ratio-0-5p" | "height-to-year-2019-realized-price-99-9p" | "height-to-up-to-3m-supply-in-profit" | "height-to-market-price-to-up-to-1d-realized-price-ratio-0-1p" | "height-to-from-5y-to-7y-realized-price-99-9p" | "height-to-market-price-to-p2wsh-realized-price-ratio-1y-sma-momentum-oscillator" | "height-to-shrimp-cumulative-realized-loss" | "height-to-lth-60p-price-paid" | "height-to-p2sh-30p-price-paid" | "height-to-market-price-to-humpback-realized-price-ratio-1p" | "height-to-illiquid-realized-price-1p" | "height-to-p2wpkh-adjusted-value-created" | "height-to-market-price-to-up-to-10y-realized-price-ratio-1p" | "height-to-up-to-1d-value-created" | "height-to-up-to-2y-75p-price-paid" | "height-to-year-2018-30p-price-paid" | "height-to-year-2016-cumulative-realized-profit" | "height-to-from-3m-to-6m-realized-price-1p" | "height-to-from-1y-supply-in-profit-to-circulating-supply-ratio" | "height-to-p2tr-supply" | "height-to-year-2015-35p-price-paid" | "height-to-year-2016-unrealized-profit" | "height-to-plankton-cumulative-net-realized-profit-and-loss-1m-net-change" | "height-to-market-price-to-year-2015-realized-price-ratio-99-9p" | "height-to-realized-price" | "height-to-market-price-to-highly-liquid-realized-price-ratio-99p" | "height-to-plankton-median-price-paid" | "height-to-up-to-10y-realized-loss" | "height-to-year-2022-20p-price-paid" | "height-to-market-price-to-megalodon-realized-price-ratio-1y-sma-momentum-oscillator" | "height-to-p2wpkh-55p-price-paid" | "height-to-90p-price-paid" | "height-to-from-10y-to-15y-value-destroyed" | "height-to-from-3y-to-5y-adjusted-value-destroyed" | "height-to-year-2009-supply-to-circulating-supply-ratio" | "height-to-illiquid-realized-loss" | "height-to-sth-75p-price-paid" | "height-to-shrimp-halved-supply" | "height-to-from-1y-to-2y-adjusted-spent-output-profit-ratio" | "height-to-p2pk-utxo-count" | "height-to-crab-supply-in-loss-to-circulating-supply-ratio" | "height-to-fish-25p-price-paid" | "height-to-up-to-2y-adjusted-value-destroyed" | "height-to-year-2010-adjusted-spent-output-profit-ratio" | "height-to-from-4y-input-count" | "height-to-shrimp-adjusted-spent-output-profit-ratio" | "height-to-from-1d-to-1w-10p-price-paid" | "height-to-year-2024-input-count" | "height-to-from-1m-to-3m-adjusted-value-created" | "height-to-from-5y-to-7y-realized-loss" | "height-to-p2wsh-unrealized-loss" | "height-to-up-to-1d-adjusted-spent-output-profit-ratio" | "height-to-year-2015-value-created" | "height-to-market-price-to-active-price-ratio" | "height-to-up-to-1y-60p-price-paid" | "height-to-up-to-2m-realized-loss" | "height-to-up-to-5m-realized-price-99-5p" | "height-to-from-4y-realized-cap-1m-net-change" | "height-to-p2tr-supply-to-circulating-supply-ratio" | "height-to-p2tr-75p-price-paid" | "height-to-unrealized-profit" | "height-to-year-2016-spent-output-profit-ratio" | "height-to-market-price-to-year-2020-realized-price-ratio-1p" | "height-to-fish-net-unrealized-profit-and-loss-to-market-cap-ratio" | "height-to-from-2y-to-3y-net-realized-profit-and-loss-to-market-cap-ratio" | "height-to-up-to-4m-cumulative-realized-profit" | "height-to-year-2019-05p-price-paid" | "height-to-year-2021-15p-price-paid" | "height-to-75p-price-paid" | "height-to-p2pk-input-volume" | "height-to-up-to-2y-supply-in-loss-to-own-supply-ratio" | "height-to-market-price-to-cointime-price-ratio-1m-sma" | "height-to-megalodon-05p-price-paid" | "height-to-year-2021-25p-price-paid" | "height-to-supply-in-loss-to-own-supply-ratio" | "height-to-from-10y-realized-price-1p" | "height-to-year-2014-realized-profit" | "height-to-year-2011-realized-price-99p" | "height-to-from-6m-to-1y-unrealized-loss" | "height-to-fish-65p-price-paid" | "height-to-market-price-to-shrimp-realized-price-ratio-1y-sma" | "height-to-from-6m-to-1y-85p-price-paid" | "height-to-year-2013-supply" | "height-to-up-to-15y-adjusted-spent-output-profit-ratio" | "height-to-from-3m-to-6m-realized-price-99-5p" | "height-to-sth-80p-price-paid" | "height-to-market-price-to-price-1m-sma-ratio-1y-sma" | "height-to-market-price-to-from-10y-to-15y-realized-price-ratio" | "height-to-year-2010-value-destroyed" | "height-to-up-to-6m-70p-price-paid" | "height-to-fish-supply" | "height-to-up-to-3m-realized-value" | "height-to-p2tr-realized-price-0-5p" | "height-to-market-price-to-price-1y-sma-ratio-1m-sma" | "height-to-highly-liquid-45p-price-paid" | "height-to-from-7y-to-10y-net-unrealized-profit-and-loss-to-market-cap-ratio" | "height-to-year-2019-supply-in-profit" | "height-to-from-3y-to-5y-realized-loss" | "height-to-market-price-to-year-2017-realized-price-ratio" | "height-to-up-to-3m-unrealized-profit" | "height-to-from-1y-to-2y-supply-to-circulating-supply-ratio" | "height-to-year-2023-negative-unrealized-loss" | "height-to-market-price-to-year-2015-realized-price-ratio-0-1p" | "height-to-up-to-15y-realized-value" | "height-to-shark-05p-price-paid" | "height-to-market-price-to-year-2024-realized-price-ratio-99-9p" | "height-to-from-3m-to-6m-adjusted-value-destroyed" | "height-to-year-2017-halved-supply-to-circulating-supply-ratio" | "height-to-from-1d-to-1w-realized-price-99-5p" | "height-to-up-to-15y-net-realized-profit-and-loss" | "height-to-from-7y-to-10y-realized-price" | "height-to-from-6m-to-1y-realized-value" | "height-to-year-2018-55p-price-paid" | "height-to-year-2017-realized-price-99-5p" | "height-to-crab-value-destroyed" | "height-to-crab-45p-price-paid" | "height-to-market-price-to-from-10y-to-15y-realized-price-ratio-99-5p" | "height-to-from-3m-to-6m-net-realized-profit-and-loss" | "height-to-up-to-1m-adjusted-spent-output-profit-ratio" | "height-to-market-price-to-year-2021-realized-price-ratio-1p" | "height-to-crab-halved-supply" | "height-to-illiquid-70p-price-paid" | "height-to-p2pk-net-realized-profit-and-loss-to-market-cap-ratio" | "height-to-from-3m-to-6m-realized-cap" | "height-to-market-price-to-cointime-price-ratio-1y-sma" | "height-to-transaction-count-1w-sma" | "height-to-from-7y-to-10y-adjusted-value-created" | "height-to-up-to-3m-adjusted-value-destroyed" | "height-to-market-price-to-price-4y-sma-ratio-1w-sma" | "height-to-from-15y-realized-cap-1m-net-change" | "height-to-from-1y-to-2y-realized-price-99-5p" | "height-to-market-price-to-from-1m-to-3m-realized-price-ratio-1m-sma" | "height-to-year-2016-realized-loss" | "height-to-from-3y-to-5y-cumulative-net-realized-profit-and-loss-1m-net-change" | "height-to-plankton-supply-in-profit-to-own-supply-ratio" | "height-to-market-price-to-up-to-10y-realized-price-ratio-1w-sma" | "height-to-year-2013-realized-price-1p" | "height-to-highly-liquid-value-created" | "height-to-market-price-to-shark-realized-price-ratio-99-5p" | "height-to-from-1m-to-3m-10p-price-paid" | "height-to-up-to-6m-cumulative-net-realized-profit-and-loss-1m-net-change" | "height-to-up-to-2y-input-count" | "height-to-up-to-4m-realized-profit" | "height-to-up-to-1w-supply-in-loss-to-own-supply-ratio" | "height-to-humpback-net-realized-profit-and-loss-to-market-cap-ratio" | "height-to-p2wsh-adjusted-spent-output-profit-ratio" | "height-to-market-price-to-price-13d-sma-ratio-99p" | "height-to-from-2y-realized-value" | "height-to-from-2y-cumulative-realized-loss" | "height-to-market-price-to-sth-realized-price-ratio-99-9p" | "height-to-from-7y-to-10y-input-count" | "height-to-from-1m-to-3m-value-created" | "height-to-up-to-6m-30p-price-paid" | "height-to-up-to-5m-net-unrealized-profit-and-loss-to-market-cap-ratio" | "height-to-market-price-to-price-8d-sma-ratio-1p" | "height-to-up-to-1y-realized-price" | "height-to-year-2010-value-created" | "height-to-shrimp-value-created" | "height-to-from-2y-to-3y-value-destroyed" | "height-to-up-to-1y-90p-price-paid" | "height-to-year-2024-realized-profit" | "height-to-shrimp-median-price-paid" | "height-to-year-2013-95p-price-paid" | "height-to-adjusted-spent-output-profit-ratio" | "height-to-market-price-to-year-2019-realized-price-ratio-0-5p" | "height-to-from-1y-to-2y-30p-price-paid" | "height-to-shrimp-15p-price-paid" | "height-to-price-21d-sma-0-5p" | "height-to-humpback-supply-in-profit" | "height-to-up-to-2y-realized-price-99-9p" | "height-to-from-10y-supply-in-loss-to-circulating-supply-ratio" | "height-to-from-2y-value-destroyed" | "height-to-up-to-5y-90p-price-paid" | "height-to-sth-15p-price-paid" | "height-to-from-5y-to-7y-realized-price-0-1p" | "height-to-from-5y-to-7y-55p-price-paid" | "height-to-market-price-to-up-to-7y-realized-price-ratio-99-9p" | "height-to-up-to-1d-negative-realized-loss" | "height-to-year-2013-realized-price" | "height-to-from-7y-to-10y-unrealized-profit" | "height-to-whale-net-unrealized-profit-and-loss" | "height-to-year-2015-realized-price-0-5p" | "height-to-from-6m-to-1y-realized-profit" | "height-to-year-2010-supply-in-profit-to-circulating-supply-ratio" | "height-to-from-7y-to-10y-20p-price-paid" | "height-to-shrimp-realized-cap-1m-net-change" | "height-to-p2pk-realized-price-0-5p" | "height-to-up-to-2m-supply" | "height-to-up-to-4m-30p-price-paid" | "height-to-block-vbytes" | "height-to-p2pkh-realized-price-0-1p" | "height-to-market-price-to-shark-realized-price-ratio-1y-sma-momentum-oscillator" | "height-to-year-2018-85p-price-paid" | "height-to-market-price-to-up-to-1w-realized-price-ratio-1m-sma" | "height-to-liquid-realized-price" | "height-to-from-1d-to-1w-realized-cap" | "height-to-humpback-realized-loss" | "height-to-year-2009-supply-in-loss-to-own-supply-ratio" | "height-to-from-7y-to-10y-80p-price-paid" | "height-to-market-price-to-year-2011-realized-price-ratio-0-1p" | "height-to-megalodon-cumulative-realized-loss" | "height-to-up-to-3y-30p-price-paid" | "height-to-lth-adjusted-value-destroyed" | "height-to-up-to-10y-median-price-paid" | "height-to-year-2012-value-created" | "height-to-p2pkh-adjusted-value-destroyed" | "height-to-up-to-6m-net-unrealized-profit-and-loss" | "height-to-up-to-3m-realized-price-0-5p" | "height-to-net-realized-profit-and-loss-to-market-cap-ratio" | "height-to-market-price-to-year-2011-realized-price-ratio-1w-sma" | "height-to-market-price-to-p2sh-realized-price-ratio-1y-sma" | "height-to-up-to-3m-negative-realized-loss" | "height-to-up-to-2m-35p-price-paid" | "height-to-up-to-4m-65p-price-paid" | "height-to-market-price-to-from-3m-to-6m-realized-price-ratio-1y-sma-momentum-oscillator" | "height-to-from-10y-35p-price-paid" | "height-to-market-price-to-from-1y-to-2y-realized-price-ratio-1p" | "height-to-from-15y-85p-price-paid" | "height-to-from-1d-to-1w-input-volume" | "height-to-illiquid-negative-unrealized-loss" | "height-to-year-2018-05p-price-paid" | "height-to-market-price-to-year-2009-realized-price-ratio-1w-sma" | "height-to-up-to-6m-realized-price-99p" | "height-to-illiquid-cumulative-net-realized-profit-and-loss" | "height-to-from-10y-to-15y-95p-price-paid" | "height-to-from-15y-supply-to-circulating-supply-ratio" | "height-to-from-3y-to-5y-spent-output-profit-ratio" | "height-to-up-to-1m-unrealized-loss" | "height-to-from-10y-to-15y-spent-output-profit-ratio" | "height-to-liquid-net-realized-profit-and-loss" | "height-to-year-2012-55p-price-paid" | "height-to-from-10y-to-15y-40p-price-paid" | "height-to-up-to-2m-unrealized-loss" | "height-to-year-2020-55p-price-paid" | "height-to-p2wpkh-60p-price-paid" | "height-to-year-2022-35p-price-paid" | "height-to-from-1d-to-1w-80p-price-paid" | "height-to-up-to-3m-supply-in-loss" | "height-to-market-price-to-humpback-realized-price-ratio-1w-sma" | "height-to-p2wsh-spent-output-profit-ratio" | "height-to-price-2y-sma-99-9p" | "height-to-market-price-to-from-1d-to-1w-realized-price-ratio" | "height-to-market-price-to-p2wsh-realized-price-ratio-99p" | "height-to-up-to-3m-40p-price-paid" | "height-to-market-price-to-year-2014-realized-price-ratio-99-9p" | "height-to-market-price-to-from-2y-to-3y-realized-price-ratio-1y-sma-momentum-oscillator" | "height-to-market-price-to-price-8d-sma-ratio" | "height-to-megalodon-value-created" | "height-to-realized-price-0-1p" | "height-to-sth-cumulative-realized-profit" | "height-to-up-to-1d-realized-price-99p" | "height-to-market-price-to-p2wsh-realized-price-ratio-1m-sma" | "height-to-from-3y-to-5y-supply-in-loss" | "height-to-from-1w-to-1m-realized-price" | "height-to-market-price-to-price-13d-sma-ratio-99-9p" | "height-to-p2wsh-supply-in-loss-to-circulating-supply-ratio" | "height-to-year-2016-10p-price-paid" | "height-to-year-2024-realized-price-99-9p" | "height-to-highly-liquid-cumulative-net-realized-profit-and-loss" | "height-to-market-price-to-up-to-5m-realized-price-ratio-0-1p" | "height-to-crab-realized-price-1p" | "height-to-up-to-15y-negative-realized-loss" | "height-to-sth-halved-supply-to-circulating-supply-ratio" | "height-to-up-to-5y-adjusted-value-destroyed" | "height-to-from-1y-to-2y-value-created" | "height-to-p2tr-net-unrealized-profit-and-loss-to-market-cap-ratio" | "height-to-up-to-3y-value-destroyed" | "height-to-up-to-1m-realized-price-0-5p" | "height-to-up-to-7y-supply-in-loss" | "height-to-from-5y-to-7y-supply-to-circulating-supply-ratio" | "height-to-market-price-to-from-6m-to-1y-realized-price-ratio-1p" | "height-to-up-to-1y-05p-price-paid" | "height-to-year-2014-adjusted-value-destroyed" | "height-to-market-price-to-from-4y-realized-price-ratio" | "height-to-year-2017-median-price-paid" | "height-to-up-to-6m-realized-loss" | "height-to-supply-in-profit-to-own-supply-ratio" | "height-to-shark-95p-price-paid" | "height-to-year-2020-supply-in-profit-to-own-supply-ratio" | "height-to-from-10y-supply-in-profit" | "height-to-market-price-to-year-2020-realized-price-ratio-1y-sma" | "height-to-up-to-1m-85p-price-paid" | "height-to-up-to-3y-adjusted-value-created" | "height-to-humpback-net-realized-profit-and-loss" | "height-to-market-price-to-up-to-3y-realized-price-ratio-1y-sma-momentum-oscillator" | "height-to-from-3y-to-5y-supply" | "height-to-from-2y-55p-price-paid" | "height-to-from-5y-to-7y-85p-price-paid" | "height-to-market-price-to-true-market-mean-ratio-99-9p" | "height-to-up-to-4m-negative-unrealized-loss" | "height-to-p2wpkh-25p-price-paid" | "height-to-from-2y-to-3y-net-unrealized-profit-and-loss" | "height-to-up-to-1w-halved-supply-to-circulating-supply-ratio" | "height-to-from-2y-to-3y-median-price-paid" | "height-to-market-price-to-price-2y-sma-ratio-99-9p" | "height-to-illiquid-45p-price-paid" | "height-to-lth-supply-in-loss" | "height-to-cointime-price-0-5p" | "height-to-plankton-net-unrealized-profit-and-loss" | "height-to-supply" | "height-to-up-to-4m-supply-to-circulating-supply-ratio" | "height-to-year-2022-supply-in-loss" | "height-to-45p-price-paid" | "height-to-year-2016-35p-price-paid" | "height-to-up-to-2m-80p-price-paid" | "height-to-market-price-to-up-to-1y-realized-price-ratio-99p" | "height-to-market-price-to-liquid-realized-price-ratio-1m-sma" | "height-to-year-2019-supply-in-loss-to-own-supply-ratio" | "height-to-up-to-3y-20p-price-paid" | "height-to-humpback-value-created" | "height-to-shark-net-realized-profit-and-loss-to-market-cap-ratio" | "height-to-from-1y-35p-price-paid" | "height-to-from-2y-supply-in-loss" | "height-to-from-1m-to-3m-net-unrealized-profit-and-loss-to-market-cap-ratio" | "height-to-from-5y-to-7y-05p-price-paid" | "height-to-market-price-to-year-2009-realized-price-ratio" | "height-to-sth-realized-value" | "height-to-year-2015-75p-price-paid" | "height-to-year-2021-realized-price-0-1p" | "height-to-price-1w-sma-99-9p" | "height-to-market-price-to-year-2024-realized-price-ratio-1m-sma" | "height-to-p2tr-realized-price" | "height-to-market-price-to-price-2y-sma-ratio-1y-sma-momentum-oscillator" | "height-to-year-2023-15p-price-paid" | "height-to-highly-liquid-net-unrealized-profit-and-loss-to-market-cap-ratio" | "height-to-from-10y-to-15y-cumulative-realized-profit" | "height-to-year-2009-value-destroyed" | "height-to-year-2011-realized-price-1p" | "height-to-market-price-to-humpback-realized-price-ratio" | "height-to-lth-realized-price" | "height-to-year-2016-halved-supply-to-circulating-supply-ratio" | "height-to-up-to-15y-utxo-count" | "height-to-market-price-to-price-55d-sma-ratio-0-1p" | "height-to-up-to-7y-negative-unrealized-loss" | "height-to-year-2019-95p-price-paid" | "height-to-market-price-to-up-to-7y-realized-price-ratio-1m-sma" | "height-to-up-to-3y-realized-price-99-9p" | "height-to-up-to-2y-supply-in-profit" | "height-to-market-price-to-active-price-ratio-1p" | "height-to-up-to-6m-negative-realized-loss" | "height-to-market-price-to-p2pk-realized-price-ratio-1p" | "height-to-year-2009-25p-price-paid" | "height-to-from-1y-60p-price-paid" | "height-to-plankton-supply-in-loss-to-circulating-supply-ratio" | "height-to-year-2021-90p-price-paid" | "height-to-megalodon-cumulative-net-realized-profit-and-loss" | "height-to-p2tr-15p-price-paid" | "height-to-year-2022-halved-supply-to-circulating-supply-ratio" | "height-to-market-price-to-from-3y-to-5y-realized-price-ratio-1y-sma-momentum-oscillator" | "height-to-up-to-1w-unrealized-loss" | "height-to-market-price-to-from-4y-realized-price-ratio-99p" | "height-to-market-price-to-year-2023-realized-price-ratio-1y-sma" | "height-to-from-1y-to-2y-utxo-count" | "height-to-liquid-median-price-paid" | "height-to-p2pk-cumulative-net-realized-profit-and-loss-1m-net-change" | "height-to-up-to-15y-realized-cap" | "height-to-p2tr-25p-price-paid" | "height-to-p2pk-35p-price-paid" | "height-to-from-2y-to-3y-net-unrealized-profit-and-loss-to-market-cap-ratio" | "height-to-plankton-realized-price-99-5p" | "height-to-sth-20p-price-paid" | "height-to-up-to-5y-supply-in-profit-to-circulating-supply-ratio" | "height-to-up-to-6m-realized-price-1p" | "height-to-from-2y-to-3y-realized-price-99p" | "height-to-market-price-to-price-55d-sma-ratio-1m-sma" | "height-to-from-6m-to-1y-80p-price-paid" | "height-to-market-price-to-from-1y-realized-price-ratio-1w-sma" | "height-to-up-to-15y-input-count" | "height-to-up-to-2y-90p-price-paid" | "height-to-year-2009-10p-price-paid" | "height-to-up-to-2y-55p-price-paid" | "height-to-year-2022-55p-price-paid" | "height-to-year-2023-supply-in-loss-to-circulating-supply-ratio" | "height-to-market-price-to-up-to-6m-realized-price-ratio-0-5p" | "height-to-year-2022-45p-price-paid" | "height-to-year-2017-35p-price-paid" | "height-to-up-to-2m-05p-price-paid" | "height-to-market-price-to-lth-realized-price-ratio-0-1p" | "height-to-p2wpkh-net-realized-profit-and-loss" | "height-to-up-to-3y-supply-in-loss" | "height-to-whale-cumulative-net-realized-profit-and-loss-1m-net-change" | "height-to-year-2022-15p-price-paid" | "height-to-up-to-1m-net-realized-profit-and-loss" | "height-to-from-1y-cumulative-net-realized-profit-and-loss-1m-net-change" | "height-to-transaction-volume-in-dollars" | "height-to-year-2013-utxo-count" | "height-to-year-2024-05p-price-paid" | "height-to-market-price-to-year-2012-realized-price-ratio-1y-sma-momentum-oscillator" | "height-to-transaction-volume" | "height-to-market-price-to-from-10y-realized-price-ratio-1y-sma" | "height-to-up-to-1y-75p-price-paid" | "height-to-up-to-1w-supply-in-profit" | "height-to-p2pk-unrealized-loss" | "height-to-year-2015-utxo-count" | "height-to-market-price-to-sth-realized-price-ratio-1p" | "height-to-p2wpkh-cumulative-realized-loss" | "height-to-from-4y-adjusted-value-created" | "height-to-p2sh-value-destroyed" | "height-to-from-1y-supply-in-loss" | "height-to-from-2y-to-3y-realized-cap" | "height-to-from-2y-cumulative-realized-profit" | "height-to-from-6m-to-1y-70p-price-paid" | "height-to-liquid-10p-price-paid" | "height-to-market-price-to-up-to-1m-realized-price-ratio-99-5p" | "height-to-megalodon-net-unrealized-profit-and-loss" | "height-to-up-to-1m-realized-loss" | "height-to-year-2013-35p-price-paid" | "height-to-year-2017-adjusted-value-destroyed" | "height-to-year-2023-value-created" | "height-to-from-10y-realized-price-99p" | "height-to-p2tr-adjusted-spent-output-profit-ratio" | "height-to-year-2019-net-unrealized-profit-and-loss" | "height-to-from-2y-to-3y-60p-price-paid" | "height-to-p2wsh-realized-profit" | "height-to-up-to-1d-supply-in-loss" | "height-to-year-2019-65p-price-paid" | "height-to-up-to-2m-supply-in-loss-to-own-supply-ratio" | "height-to-year-2018-value-destroyed" | "height-to-from-2y-to-3y-realized-value" | "height-to-from-1d-to-1w-net-unrealized-profit-and-loss" | "height-to-market-price-to-up-to-5y-realized-price-ratio" | "height-to-market-price-to-from-15y-realized-price-ratio-0-1p" | "height-to-year-2022-net-realized-profit-and-loss-to-market-cap-ratio" | "height-to-from-1y-input-count" | "height-to-year-2010-60p-price-paid" | "height-to-up-to-1w-45p-price-paid" | "height-to-from-15y-realized-price-0-5p" | "height-to-p2wpkh-35p-price-paid" | "height-to-up-to-1y-adjusted-value-destroyed" | "height-to-price-34d-sma-99p" | "height-to-up-to-1m-supply-to-circulating-supply-ratio" | "height-to-market-price-to-vaulted-price-ratio-0-1p" | "height-to-year-2012-unrealized-profit" | "height-to-whale-45p-price-paid" | "height-to-year-2017-supply-to-circulating-supply-ratio" | "height-to-up-to-1y-spent-output-profit-ratio" | "height-to-from-10y-net-unrealized-profit-and-loss-to-market-cap-ratio" | "height-to-market-price-to-from-3y-to-5y-realized-price-ratio" | "height-to-p2pkh-input-count" | "height-to-from-3y-to-5y-realized-price-1p" | "height-to-plankton-95p-price-paid" | "height-to-year-2017-25p-price-paid" | "height-to-year-2023-supply-in-loss" | "height-to-up-to-7y-halved-supply" | "height-to-05p-price-paid" | "height-to-from-1w-to-1m-cumulative-net-realized-profit-and-loss" | "height-to-from-1w-to-1m-cumulative-realized-loss" | "height-to-from-5y-to-7y-cumulative-net-realized-profit-and-loss-1m-net-change" | "height-to-p2sh-realized-price-99-5p" | "height-to-shark-realized-price-0-5p" | "height-to-year-2011-55p-price-paid" | "height-to-market-price-to-year-2016-realized-price-ratio-99-5p" | "height-to-year-2016-supply-in-loss" | "height-to-year-2017-45p-price-paid" | "height-to-from-5y-to-7y-input-volume" | "height-to-year-2016-unrealized-loss" | "height-to-up-to-3m-95p-price-paid" | "height-to-market-price-to-lth-realized-price-ratio-0-5p" | "height-to-year-2017-realized-loss" | "height-to-from-6m-to-1y-halved-supply" | "height-to-market-price-to-liquid-realized-price-ratio-0-5p" | "height-to-market-price-to-humpback-realized-price-ratio-1m-sma" | "height-to-from-2y-unrealized-loss" | "height-to-year-2020-unrealized-loss" | "height-to-year-2018-net-unrealized-profit-and-loss-to-market-cap-ratio" | "height-to-market-price-to-from-1m-to-3m-realized-price-ratio-1y-sma" | "height-to-from-3m-to-6m-85p-price-paid" | "height-to-up-to-3m-realized-profit" | "height-to-up-to-4m-25p-price-paid" | "height-to-from-1y-to-2y-80p-price-paid" | "height-to-lth-cumulative-realized-profit" | "height-to-from-1y-to-2y-75p-price-paid" | "height-to-market-price-to-up-to-10y-realized-price-ratio-0-1p" | "height-to-market-price-to-up-to-7y-realized-price-ratio-99p" | "height-to-up-to-3m-realized-cap-1m-net-change" | "height-to-fish-net-unrealized-profit-and-loss" | "height-to-market-price-to-year-2015-realized-price-ratio-99p" | "height-to-from-2y-to-3y-cumulative-realized-profit" | "height-to-plankton-realized-cap" | "height-to-up-to-2y-realized-price-99p" | "height-to-from-1y-realized-cap-1m-net-change" | "height-to-year-2010-55p-price-paid" | "height-to-year-2010-input-volume" | "height-to-from-6m-to-1y-realized-price-0-1p" | "height-to-year-2010-utxo-count" | "height-to-market-price-to-p2wpkh-realized-price-ratio-1m-sma" | "height-to-p2tr-05p-price-paid" | "height-to-market-price-to-year-2012-realized-price-ratio" | "height-to-year-2019-net-realized-profit-and-loss" | "height-to-humpback-70p-price-paid" | "height-to-year-2019-85p-price-paid" | "height-to-market-price-to-up-to-5y-realized-price-ratio-99-5p" | "height-to-fish-address-count" | "height-to-up-to-4m-10p-price-paid" | "height-to-year-2017-unrealized-loss" | "height-to-year-2016-realized-price-0-1p" | "height-to-year-2015-supply-in-loss" | "height-to-from-1y-30p-price-paid" | "height-to-from-1m-to-3m-realized-value" | "height-to-market-price-to-price-89d-sma-ratio-1y-sma-momentum-oscillator" | "height-to-illiquid-median-price-paid" | "height-to-year-2009-input-volume" | "height-to-whale-halved-supply" | "height-to-year-2023-realized-profit" | "height-to-price-200w-sma-99-5p" | "height-to-from-1d-to-1w-cumulative-net-realized-profit-and-loss-1m-net-change" | "height-to-year-2012-net-unrealized-profit-and-loss-to-market-cap-ratio" | "height-to-from-4y-35p-price-paid" | "height-to-year-2016-halved-supply" | "height-to-market-price-to-up-to-6m-realized-price-ratio-99-5p" | "height-to-up-to-15y-supply" | "height-to-crab-95p-price-paid" | "height-to-from-6m-to-1y-supply-in-profit" | "height-to-market-price-to-price-1m-sma-ratio-99p" | "height-to-market-price-to-year-2015-realized-price-ratio-1p" | "height-to-up-to-7y-realized-profit" | "height-to-up-to-15y-55p-price-paid" | "height-to-market-price-to-price-200w-sma-ratio-0-1p" | "height-to-illiquid-05p-price-paid" | "height-to-p2tr-unrealized-profit" | "height-to-up-to-15y-85p-price-paid" | "height-to-market-price-to-price-144d-sma-ratio-99-5p" | "height-to-from-3m-to-6m-realized-price-99-9p" | "height-to-p2wpkh-address-count" | "height-to-crab-supply-in-profit-to-circulating-supply-ratio" | "height-to-up-to-6m-unrealized-loss" | "height-to-up-to-3m-realized-loss" | "height-to-shark-supply-in-loss-to-own-supply-ratio" | "height-to-p2wpkh-input-count" | "height-to-shark-cumulative-realized-profit" | "height-to-market-price-to-year-2023-realized-price-ratio-99-5p" | "height-to-liquid-55p-price-paid" | "height-to-market-price-to-from-1y-realized-price-ratio-1y-sma" | "height-to-market-price-to-price-55d-sma-ratio-99p" | "height-to-up-to-1y-halved-supply-to-circulating-supply-ratio" | "height-to-year-2019-spent-output-profit-ratio" | "height-to-year-2023-supply-in-profit-to-circulating-supply-ratio" | "height-to-illiquid-supply-in-profit-to-circulating-supply-ratio" | "height-to-market-price-to-price-2y-sma-ratio" | "height-to-p2pkh-60p-price-paid" | "height-to-p2tr-adjusted-value-created" | "height-to-year-2021-supply-in-loss-to-circulating-supply-ratio" | "height-to-from-2y-input-volume" | "height-to-from-1w-to-1m-supply-in-profit" | "height-to-p2tr-20p-price-paid" | "height-to-price-8d-sma-1p" | "height-to-fish-realized-price-0-1p" | "height-to-p2pkh-net-realized-profit-and-loss-to-market-cap-ratio" | "height-to-year-2018-supply-in-profit-to-own-supply-ratio" | "height-to-year-2022-realized-cap" | "height-to-highly-liquid-60p-price-paid" | "height-to-market-price-to-up-to-15y-realized-price-ratio" | "height-to-supply-in-loss-to-circulating-supply-ratio" | "height-to-year-2016-20p-price-paid" | "height-to-year-2021-spent-output-profit-ratio" | "height-to-from-10y-10p-price-paid" | "height-to-market-price-to-price-89d-sma-ratio-1p" | "height-to-market-price-to-all-time-high-ratio" | "height-to-p2tr-median-price-paid" | "height-to-sth-adjusted-spent-output-profit-ratio" | "height-to-market-price-to-price-4y-sma-ratio-0-1p" | "height-to-up-to-1w-realized-cap-1m-net-change" | "height-to-up-to-1d-unrealized-profit" | "height-to-market-price-to-whale-realized-price-ratio-0-5p" | "height-to-from-10y-20p-price-paid" | "height-to-from-2y-negative-realized-loss" | "height-to-market-price-to-from-15y-realized-price-ratio-1p" | "height-to-market-price-to-price-1y-sma-ratio-1y-sma-momentum-oscillator" | "height-to-market-price-to-plankton-realized-price-ratio-0-5p" | "height-to-year-2024-value-destroyed" | "height-to-market-price-to-up-to-5y-realized-price-ratio-0-5p" | "height-to-from-6m-to-1y-40p-price-paid" | "height-to-p2pkh-cumulative-net-realized-profit-and-loss-1m-net-change" | "height-to-year-2013-realized-price-99-9p" | "height-to-from-2y-to-3y-05p-price-paid" | "height-to-from-1d-to-1w-35p-price-paid" | "height-to-crab-utxo-count" | "height-to-market-price-to-year-2024-realized-price-ratio-0-1p" | "height-to-year-2023-45p-price-paid" | "height-to-from-7y-to-10y-unrealized-loss" | "height-to-from-2y-90p-price-paid" | "height-to-from-5y-to-7y-value-destroyed" | "height-to-market-price-to-from-15y-realized-price-ratio-1y-sma" | "height-to-market-price-to-highly-liquid-realized-price-ratio-1w-sma" | "height-to-market-price-to-from-10y-realized-price-ratio" | "height-to-crab-realized-loss" | "height-to-market-price-to-p2sh-realized-price-ratio-0-1p" | "height-to-year-2023-utxo-count" | "height-to-total-cointime-value-created" | "height-to-year-2020-realized-price-99-5p" | "height-to-up-to-4m-supply-in-profit-to-own-supply-ratio" | "height-to-price-4y-sma-99-9p" | "height-to-active-price-1p" | "height-to-market-price-to-from-2y-to-3y-realized-price-ratio-99-9p" | "height-to-from-1m-to-3m-net-realized-profit-and-loss-to-market-cap-ratio" | "height-to-year-2015-60p-price-paid" | "height-to-year-2015-realized-price-99-5p" | "height-to-lth-realized-price-99p" | "height-to-p2pkh-adjusted-spent-output-profit-ratio" | "height-to-whale-value-destroyed" | "height-to-p2pk-halved-supply-to-circulating-supply-ratio" | "height-to-from-1y-20p-price-paid" | "height-to-market-price-to-up-to-4m-realized-price-ratio" | "height-to-from-3y-to-5y-05p-price-paid" | "height-to-market-price-to-from-1m-to-3m-realized-price-ratio-1w-sma" | "height-to-up-to-4m-net-realized-profit-and-loss" | "height-to-lth-realized-profit" | "height-to-market-price-to-up-to-3y-realized-price-ratio-1y-sma" | "height-to-from-2y-to-3y-15p-price-paid" | "height-to-up-to-6m-cumulative-net-realized-profit-and-loss" | "height-to-up-to-10y-cumulative-net-realized-profit-and-loss-1m-net-change" | "height-to-market-price-to-up-to-2y-realized-price-ratio-0-5p" | "height-to-p2pk-value-created" | "height-to-net-unrealized-profit-and-loss-to-market-cap-ratio" | "height-to-up-to-15y-net-unrealized-profit-and-loss-to-market-cap-ratio" | "height-to-up-to-2m-realized-cap-1m-net-change" | "height-to-market-price-to-true-market-mean-ratio-1p" | "height-to-market-price-to-up-to-3y-realized-price-ratio-99p" | "height-to-up-to-3m-85p-price-paid" | "height-to-up-to-2m-70p-price-paid" | "height-to-from-2y-to-3y-supply-to-circulating-supply-ratio" | "height-to-up-to-7y-10p-price-paid" | "height-to-year-2023-supply-in-profit-to-own-supply-ratio" | "height-to-megalodon-80p-price-paid" | "height-to-up-to-1d-realized-price-0-5p" | "height-to-from-1w-to-1m-realized-cap-1m-net-change" | "height-to-p2pkh-65p-price-paid" | "height-to-p2sh-cumulative-net-realized-profit-and-loss" | "height-to-crab-cumulative-realized-loss" | "height-to-p2pk-negative-realized-loss" | "height-to-humpback-cumulative-realized-profit" | "height-to-year-2024-45p-price-paid" | "height-to-year-2024-realized-price-0-5p" | "height-to-from-3y-to-5y-35p-price-paid" | "height-to-market-price-to-plankton-realized-price-ratio-1w-sma" | "height-to-year-2021-input-volume" | "height-to-market-price-to-active-price-ratio-99-9p" | "height-to-from-3m-to-6m-cumulative-realized-profit" | "height-to-from-1w-to-1m-95p-price-paid" | "height-to-from-5y-to-7y-halved-supply-to-circulating-supply-ratio" | "height-to-up-to-1y-net-unrealized-profit-and-loss" | "height-to-p2tr-55p-price-paid" | "height-to-year-2013-input-volume" | "height-to-from-3y-to-5y-supply-in-profit" | "height-to-illiquid-realized-price-99-5p" | "height-to-up-to-5y-35p-price-paid" | "height-to-market-price-to-price-144d-sma-ratio" | "height-to-up-to-1w-realized-price-99-9p" | "height-to-year-2011-65p-price-paid" | "height-to-from-2y-adjusted-spent-output-profit-ratio" | "height-to-from-5y-to-7y-adjusted-value-created" | "height-to-year-2015-supply-in-loss-to-circulating-supply-ratio" | "height-to-from-4y-supply-to-circulating-supply-ratio" | "height-to-market-price-to-up-to-3y-realized-price-ratio-99-5p" | "height-to-year-2016-input-volume" | "height-to-up-to-1m-supply-in-loss-to-circulating-supply-ratio" | "height-to-from-10y-to-15y-supply-in-loss" | "height-to-year-2017-05p-price-paid" | "height-to-megalodon-realized-price" | "height-to-up-to-5m-realized-loss" | "height-to-active-cap" | "height-to-year-2018-20p-price-paid" | "height-to-from-7y-to-10y-65p-price-paid" | "height-to-from-15y-net-realized-profit-and-loss" | "height-to-from-10y-to-15y-35p-price-paid" | "height-to-year-2017-85p-price-paid" | "height-to-market-price-to-price-89d-sma-ratio" | "height-to-from-1y-to-2y-realized-cap" | "height-to-market-price-to-year-2016-realized-price-ratio-99-9p" | "height-to-transaction-volume-in-dollars-1m-sma" | "height-to-market-price-to-crab-realized-price-ratio-0-5p" | "height-to-year-2020-75p-price-paid" | "height-to-year-2022-60p-price-paid" | "height-to-year-2024-supply" | "height-to-p2pkh-cumulative-realized-profit" | "height-to-year-2015-median-price-paid" | "height-to-vaulted-price-1p" | "height-to-up-to-1m-65p-price-paid" | "height-to-year-2022-realized-value" | "height-to-year-2020-45p-price-paid" | "height-to-illiquid-cumulative-realized-loss" | "height-to-plankton-supply-in-profit" | "height-to-up-to-5y-supply-in-loss" | "height-to-year-2011-cumulative-net-realized-profit-and-loss" | "height-to-from-1d-to-1w-realized-profit" | "height-to-year-2014-65p-price-paid" | "height-to-year-2015-negative-realized-loss" | "height-to-year-2024-halved-supply" | "height-to-year-2013-net-unrealized-profit-and-loss" | "height-to-year-2020-95p-price-paid" | "height-to-megalodon-realized-profit" | "height-to-p2tr-60p-price-paid" | "height-to-whale-15p-price-paid" | "height-to-from-1d-to-1w-utxo-count" | "height-to-year-2022-05p-price-paid" | "height-to-market-price-to-crab-realized-price-ratio-1w-sma" | "height-to-up-to-10y-supply-in-loss-to-circulating-supply-ratio" | "height-to-up-to-2m-15p-price-paid" | "height-to-from-2y-to-3y-supply" | "height-to-up-to-3m-value-destroyed" | "height-to-market-price-to-year-2024-realized-price-ratio-99-5p" | "height-to-up-to-10y-realized-price" | "height-to-from-1m-to-3m-spent-output-profit-ratio" | "height-to-up-to-6m-value-destroyed" | "height-to-from-1d-to-1w-realized-price-0-5p" | "height-to-year-2020-25p-price-paid" | "height-to-year-2009-realized-price-0-1p" | "height-to-p2wpkh-negative-unrealized-loss" | "height-to-market-price-to-from-2y-realized-price-ratio-1y-sma" | "height-to-from-3y-to-5y-80p-price-paid" | "height-to-price-89d-sma-99p" | "height-to-from-1y-value-destroyed" | "height-to-up-to-2y-negative-unrealized-loss" | "height-to-year-2017-cumulative-net-realized-profit-and-loss-1m-net-change" | "height-to-market-price-to-year-2014-realized-price-ratio-1y-sma" | "height-to-up-to-10y-85p-price-paid" | "height-to-market-price-to-p2tr-realized-price-ratio-1m-sma" | "height-to-year-2016-80p-price-paid" | "height-to-market-price-to-fish-realized-price-ratio-1p" | "height-to-crab-net-unrealized-profit-and-loss" | "height-to-megalodon-30p-price-paid" | "height-to-from-7y-to-10y-halved-supply-to-circulating-supply-ratio" | "height-to-from-10y-realized-price-99-5p" | "height-to-market-price-to-from-5y-to-7y-realized-price-ratio-1y-sma" | "height-to-market-price-to-price-1m-sma-ratio-1y-sma-momentum-oscillator" | "height-to-up-to-3m-median-price-paid" | "height-to-from-1w-to-1m-realized-price-0-1p" | "height-to-year-2012-realized-price-99p" | "height-to-p2pk-90p-price-paid" | "height-to-from-10y-realized-cap" | "height-to-p2sh-realized-price-1p" | "height-to-up-to-15y-unrealized-profit" | "height-to-year-2020-65p-price-paid" | "height-to-lth-supply-in-profit-to-own-supply-ratio" | "height-to-from-2y-to-3y-20p-price-paid" | "height-to-from-2y-halved-supply-to-circulating-supply-ratio" | "height-to-year-2015-20p-price-paid" | "height-to-from-3m-to-6m-40p-price-paid" | "height-to-year-2013-supply-in-profit" | "height-to-concurrent-liveliness-2w-median" | "height-to-year-2022-cumulative-net-realized-profit-and-loss-1m-net-change" | "height-to-from-4y-supply-in-profit-to-own-supply-ratio" | "height-to-up-to-2y-value-created" | "height-to-from-6m-to-1y-60p-price-paid" | "height-to-shark-35p-price-paid" | "height-to-up-to-2m-supply-in-loss-to-circulating-supply-ratio" | "height-to-shrimp-realized-loss" | "height-to-up-to-7y-30p-price-paid" | "height-to-p2tr-input-count" | "height-to-sth-cumulative-realized-loss" | "height-to-p2sh-95p-price-paid" | "height-to-from-10y-to-15y-utxo-count" | "height-to-from-5y-to-7y-90p-price-paid" | "height-to-market-cap" | "height-to-fish-realized-price-1p" | "height-to-market-price-to-from-1y-realized-price-ratio-0-1p" | "height-to-p2pkh-net-realized-profit-and-loss" | "height-to-year-2010-realized-cap" | "height-to-year-2023-net-realized-profit-and-loss" | "height-to-up-to-1d-realized-cap" | "height-to-highly-liquid-unrealized-profit" | "height-to-up-to-5y-net-realized-profit-and-loss-to-market-cap-ratio" | "height-to-year-2024-40p-price-paid" | "height-to-liquid-20p-price-paid" | "height-to-from-15y-realized-loss" | "height-to-p2wpkh-realized-price-99-9p" | "height-to-megalodon-address-count" | "height-to-p2wsh-cumulative-net-realized-profit-and-loss-1m-net-change" | "height-to-fish-90p-price-paid" | "height-to-from-1y-to-2y-supply-in-loss-to-circulating-supply-ratio" | "height-to-year-2014-05p-price-paid" | "height-to-from-15y-realized-value" | "height-to-market-price-to-year-2010-realized-price-ratio-0-1p" | "height-to-market-price-to-from-1m-to-3m-realized-price-ratio-0-5p" | "height-to-up-to-1y-45p-price-paid" | "height-to-from-3y-to-5y-net-unrealized-profit-and-loss" | "height-to-p2pk-supply-in-profit-to-circulating-supply-ratio" | "height-to-from-1y-85p-price-paid" | "height-to-up-to-1d-supply-in-loss-to-own-supply-ratio" | "height-to-value-created" | "height-to-year-2017-supply-in-loss-to-circulating-supply-ratio" | "height-to-sth-median-price-paid" | "height-to-year-2012-spent-output-profit-ratio" | "height-to-up-to-1y-30p-price-paid" | "height-to-up-to-3m-cumulative-realized-profit" | "height-to-up-to-3y-cumulative-net-realized-profit-and-loss-1m-net-change" | "height-to-up-to-1d-supply-to-circulating-supply-ratio" | "height-to-market-price-to-year-2018-realized-price-ratio-0-5p" | "height-to-from-6m-to-1y-unrealized-profit" | "height-to-from-7y-to-10y-25p-price-paid" | "height-to-up-to-5m-utxo-count" | "height-to-market-price-to-from-1w-to-1m-realized-price-ratio-1p" | "height-to-year-2023-cumulative-realized-profit" | "height-to-megalodon-realized-price-1p" | "height-to-up-to-5m-supply" | "height-to-from-3y-to-5y-utxo-count" | "height-to-market-price-to-year-2015-realized-price-ratio-0-5p" | "height-to-p2pk-input-count" | "height-to-shrimp-input-volume" | "height-to-whale-supply-in-loss-to-circulating-supply-ratio" | "height-to-market-price-to-megalodon-realized-price-ratio-1w-sma" | "height-to-up-to-1d-value-destroyed" | "height-to-up-to-1d-15p-price-paid" | "height-to-fish-15p-price-paid" | "height-to-up-to-10y-adjusted-spent-output-profit-ratio" | "height-to-up-to-1m-input-count" | "height-to-market-price-to-from-1d-to-1w-realized-price-ratio-99-5p" | "height-to-from-1y-to-2y-supply-in-loss" | "height-to-crab-realized-price-99-5p" | "height-to-subsidy-to-coinbase-ratio" | "height-to-from-1m-to-3m-realized-cap" | "height-to-from-3y-to-5y-65p-price-paid" | "height-to-lth-net-unrealized-profit-and-loss-to-market-cap-ratio" | "height-to-from-10y-input-count" | "height-to-shrimp-05p-price-paid" | "height-to-year-2011-20p-price-paid" | "height-to-from-3m-to-6m-95p-price-paid" | "height-to-megalodon-net-unrealized-profit-and-loss-to-market-cap-ratio" | "height-to-market-price-to-from-2y-realized-price-ratio-1w-sma" | "height-to-market-price-to-up-to-2m-realized-price-ratio-99p" | "height-to-shrimp-spent-output-profit-ratio" | "height-to-humpback-65p-price-paid" | "height-to-market-price-to-year-2010-realized-price-ratio-0-5p" | "height-to-lth-value-destroyed" | "height-to-from-5y-to-7y-net-unrealized-profit-and-loss-to-market-cap-ratio" | "height-to-plankton-value-destroyed" | "height-to-up-to-5m-negative-realized-loss" | "height-to-from-4y-adjusted-value-destroyed" | "height-to-market-price-to-megalodon-realized-price-ratio-99p" | "height-to-year-2016-negative-unrealized-loss" | "height-to-year-2012-realized-price" | "height-to-market-price-to-up-to-7y-realized-price-ratio-0-5p" | "height-to-market-price-to-price-1y-sma-ratio-99p" | "height-to-cumulative-coinblocks-created" | "height-to-from-15y-05p-price-paid" | "height-to-market-price-to-up-to-3y-realized-price-ratio-1m-sma" | "height-to-p2wsh-75p-price-paid" | "height-to-whale-realized-price-1p" | "height-to-up-to-10y-supply-in-loss-to-own-supply-ratio" | "height-to-from-5y-to-7y-adjusted-spent-output-profit-ratio" | "height-to-megalodon-value-destroyed" | "height-to-from-4y-25p-price-paid" | "height-to-adjusted-value-created" | "height-to-from-7y-to-10y-30p-price-paid" | "height-to-market-price-to-price-8d-sma-ratio-99-9p" | "height-to-year-2014-utxo-count" | "height-to-up-to-2y-realized-price-0-1p" | "height-to-market-price-to-year-2013-realized-price-ratio-1w-sma" | "height-to-up-to-2m-input-count" | "height-to-p2tr-80p-price-paid" | "height-to-p2wpkh-realized-cap" | "height-to-shrimp-net-unrealized-profit-and-loss" | "height-to-up-to-7y-05p-price-paid" | "height-to-year-2018-95p-price-paid" | "height-to-year-2014-cumulative-net-realized-profit-and-loss" | "height-to-market-price-to-up-to-15y-realized-price-ratio-99p" | "height-to-year-2018-15p-price-paid" | "height-to-from-3m-to-6m-utxo-count" | "height-to-from-1y-supply-in-loss-to-circulating-supply-ratio" | "height-to-0" | "height-to-from-15y-realized-price-99-5p" | "height-to-up-to-5y-realized-value" | "height-to-year-2010-median-price-paid" | "height-to-liquid-supply-in-profit-to-circulating-supply-ratio" | "height-to-from-5y-to-7y-15p-price-paid" | "height-to-market-price-to-p2wsh-realized-price-ratio-99-5p" | "height-to-p2wpkh-cumulative-net-realized-profit-and-loss-1m-net-change" | "height-to-market-price-to-year-2021-realized-price-ratio-99-5p" | "height-to-from-2y-to-3y-realized-price-0-5p" | "height-to-from-3m-to-6m-realized-price-0-1p" | "height-to-year-2010-95p-price-paid" | "height-to-year-2013-supply-in-loss" | "height-to-market-price-to-from-1d-to-1w-realized-price-ratio-99p" | "height-to-up-to-6m-supply-in-loss" | "height-to-up-to-7y-supply-to-circulating-supply-ratio" | "height-to-humpback-cumulative-realized-loss" | "height-to-market-price-to-up-to-5y-realized-price-ratio-1w-sma" | "height-to-market-price-to-up-to-10y-realized-price-ratio-99-9p" | "height-to-annualized-issuance" | "height-to-from-15y-net-realized-profit-and-loss-to-market-cap-ratio" | "height-to-up-to-3m-supply-in-loss-to-circulating-supply-ratio" | "height-to-from-4y-net-realized-profit-and-loss-to-market-cap-ratio" | "height-to-up-to-5y-95p-price-paid" | "height-to-up-to-6m-supply-to-circulating-supply-ratio" | "height-to-year-2015-cumulative-net-realized-profit-and-loss-1m-net-change" | "height-to-p2wsh-address-count" | "height-to-from-6m-to-1y-35p-price-paid" | "height-to-market-price-to-up-to-1y-realized-price-ratio-0-5p" | "height-to-from-3m-to-6m-net-realized-profit-and-loss-to-market-cap-ratio" | "height-to-liquid-realized-cap" | "height-to-up-to-1d-realized-loss" | "height-to-year-2012-supply-to-circulating-supply-ratio" | "height-to-market-price-to-price-8d-sma-ratio-1y-sma" | "height-to-year-2020-realized-price" | "height-to-up-to-1m-spent-output-profit-ratio" | "height-to-from-1w-to-1m-80p-price-paid" | "height-to-up-to-3m-supply-in-profit-to-own-supply-ratio" | "height-to-market-price-to-price-1y-sma-ratio-0-5p" | "height-to-lth-supply" | "height-to-p2pk-realized-price-99-9p" | "height-to-from-6m-to-1y-realized-price-99-9p" | "height-to-up-to-3y-spent-output-profit-ratio" | "height-to-from-10y-to-15y-median-price-paid" | "height-to-plankton-realized-profit" | "height-to-year-2011-80p-price-paid" | "height-to-megalodon-10p-price-paid" | "height-to-up-to-4m-input-volume" | "height-to-from-2y-to-3y-adjusted-spent-output-profit-ratio" | "height-to-from-6m-to-1y-value-created" | "height-to-market-price-to-price-21d-sma-ratio-1y-sma" | "height-to-market-price-to-realized-price-ratio-1w-sma" | "height-to-market-price-to-up-to-1y-realized-price-ratio-1p" | "height-to-p2pkh-30p-price-paid" | "height-to-market-price-to-up-to-1d-realized-price-ratio-0-5p" | "height-to-sth-realized-price-99p" | "height-to-true-market-mean-99-5p" | "height-to-up-to-1w-cumulative-realized-profit" | "height-to-whale-realized-price-99-5p" | "height-to-year-2023-05p-price-paid" | "height-to-from-3y-to-5y-supply-in-profit-to-own-supply-ratio" | "height-to-timestamp" | "height-to-price-4y-sma-99p" | "height-to-from-4y-net-unrealized-profit-and-loss" | "height-to-liquid-negative-realized-loss" | "height-to-market-price-to-up-to-10y-realized-price-ratio-99p" | "height-to-market-price-to-up-to-2m-realized-price-ratio-0-1p" | "height-to-cointime-adjusted-yearly-inflation-rate" | "height-to-highly-liquid-negative-unrealized-loss" | "height-to-p2tr-realized-loss" | "height-to-p2sh-net-realized-profit-and-loss" | "height-to-up-to-1d-net-unrealized-profit-and-loss" | "height-to-p2pkh-value-destroyed" | "height-to-market-price-to-up-to-4m-realized-price-ratio-1w-sma" | "height-to-crab-cumulative-realized-profit" | "height-to-market-price-to-year-2013-realized-price-ratio" | "height-to-p2wpkh-05p-price-paid" | "height-to-from-1d-to-1w-net-realized-profit-and-loss-to-market-cap-ratio" | "height-to-from-1y-cumulative-realized-loss" | "height-to-p2pk-15p-price-paid" | "height-to-market-price-to-year-2018-realized-price-ratio-99-9p" | "height-to-up-to-2m-65p-price-paid" | "height-to-up-to-7y-cumulative-net-realized-profit-and-loss-1m-net-change" | "height-to-year-2012-cumulative-net-realized-profit-and-loss-1m-net-change" | "height-to-year-2024-30p-price-paid" | "height-to-year-2016-70p-price-paid" | "height-to-illiquid-realized-price" | "height-to-from-1d-to-1w-net-unrealized-profit-and-loss-to-market-cap-ratio" | "height-to-sth-supply-in-loss-to-circulating-supply-ratio" | "height-to-price-1y-sma-0-1p" | "height-to-p2sh-adjusted-value-created" | "height-to-crab-value-created" | "height-to-illiquid-halved-supply-to-circulating-supply-ratio" | "height-to-whale-value-created" | "height-to-year-2011-30p-price-paid" | "height-to-from-7y-to-10y-input-volume" | "height-to-up-to-7y-realized-price-0-5p" | "height-to-year-2019-supply-to-circulating-supply-ratio" | "height-to-up-to-1w-utxo-count" | "height-to-year-2023-35p-price-paid" | "height-to-whale-05p-price-paid" | "height-to-from-15y-supply-in-loss-to-own-supply-ratio" | "height-to-year-2018-cumulative-realized-profit" | "height-to-from-1y-realized-cap" | "height-to-market-price-to-from-3y-to-5y-realized-price-ratio-99p" | "height-to-from-1y-to-2y-10p-price-paid" | "height-to-year-2020-median-price-paid" | "height-to-up-to-1w-60p-price-paid" | "height-to-from-10y-cumulative-realized-loss" | "height-to-from-3y-to-5y-value-destroyed" | "height-to-market-price-to-megalodon-realized-price-ratio-99-9p" | "height-to-up-to-4m-cumulative-net-realized-profit-and-loss" | "height-to-up-to-4m-median-price-paid" | "height-to-market-price-to-p2pkh-realized-price-ratio-1w-sma" | "height-to-up-to-6m-45p-price-paid" | "height-to-up-to-2y-spent-output-profit-ratio" | "height-to-up-to-5m-realized-price-99-9p" | "height-to-from-10y-to-15y-halved-supply" | "height-to-market-price-to-from-10y-realized-price-ratio-99p" | "height-to-from-10y-utxo-count" | "height-to-from-1m-to-3m-45p-price-paid" | "height-to-market-price-to-up-to-1y-realized-price-ratio-1w-sma" | "height-to-up-to-15y-halved-supply-to-circulating-supply-ratio" | "height-to-up-to-5m-75p-price-paid" | "height-to-year-2023-25p-price-paid" | "height-to-up-to-6m-input-volume" | "height-to-year-2013-spent-output-profit-ratio" | "height-to-from-1y-to-2y-net-realized-profit-and-loss" | "height-to-p2sh-15p-price-paid" | "height-to-up-to-1y-adjusted-spent-output-profit-ratio" | "height-to-year-2024-adjusted-value-created" | "height-to-from-1d-to-1w-supply-to-circulating-supply-ratio" | "height-to-from-1y-to-2y-realized-price-99p" | "height-to-market-price-to-from-3m-to-6m-realized-price-ratio-1m-sma" | "height-to-up-to-5y-70p-price-paid" | "height-to-market-price-to-up-to-1w-realized-price-ratio-1y-sma" | "height-to-year-2010-halved-supply-to-circulating-supply-ratio" | "height-to-from-5y-to-7y-35p-price-paid" | "height-to-market-price-to-price-144d-sma-ratio-1y-sma" | "height-to-year-2012-value-destroyed" | "height-to-market-price-to-from-7y-to-10y-realized-price-ratio-0-5p" | "height-to-up-to-1m-realized-price-99-5p" | "height-to-liquid-60p-price-paid" | "height-to-up-to-1w-55p-price-paid" | "height-to-from-10y-adjusted-value-created" | "height-to-up-to-1w-unrealized-profit" | "height-to-from-6m-to-1y-net-unrealized-profit-and-loss" | "height-to-40p-price-paid" | "height-to-transactions-per-second-1m-sma" | "height-to-year-2011-70p-price-paid" | "height-to-market-price-to-price-4y-sma-ratio-1y-sma" | "height-to-up-to-1m-negative-unrealized-loss" | "height-to-up-to-6m-negative-unrealized-loss" | "height-to-year-2023-75p-price-paid" | "height-to-fish-realized-price-99-5p" | "height-to-from-10y-to-15y-realized-price" | "height-to-from-3y-to-5y-45p-price-paid" | "height-to-from-15y-spent-output-profit-ratio" | "height-to-market-price-to-up-to-1y-realized-price-ratio-99-5p" | "height-to-market-price-to-up-to-6m-realized-price-ratio-0-1p" | "height-to-active-price-99p" | "height-to-p2sh-85p-price-paid" | "height-to-up-to-1m-value-destroyed" | "height-to-p2tr-supply-in-profit-to-own-supply-ratio" | "height-to-transactions-per-second-1w-sma" | "height-to-year-2016-75p-price-paid" | "height-to-from-2y-to-3y-halved-supply" | "height-to-from-3m-to-6m-adjusted-value-created" | "height-to-80p-price-paid" | "height-to-market-price-to-price-55d-sma-ratio-0-5p" | "height-to-p2pk-realized-price-99-5p" | "height-to-humpback-realized-cap-1m-net-change" | "height-to-shark-20p-price-paid" | "height-to-true-market-mean-99p" | "height-to-up-to-15y-cumulative-net-realized-profit-and-loss" | "height-to-highly-liquid-realized-profit" | "height-to-up-to-2m-input-volume" | "height-to-market-price-to-year-2012-realized-price-ratio-1y-sma" | "height-to-year-2023-cumulative-net-realized-profit-and-loss" | "height-to-crab-supply" | "height-to-p2tr-cumulative-realized-loss" | "height-to-shark-negative-unrealized-loss" | "height-to-from-1d-to-1w-realized-value" | "height-to-market-price-to-year-2010-realized-price-ratio-1y-sma" | "height-to-year-2013-realized-profit" | "height-to-up-to-5y-adjusted-value-created" | "height-to-humpback-adjusted-spent-output-profit-ratio" | "height-to-up-to-1y-realized-price-99p" | "height-to-from-6m-to-1y-realized-price-1p" | "height-to-up-to-1m-median-price-paid" | "height-to-p2wsh-05p-price-paid" | "height-to-up-to-5m-supply-in-profit-to-circulating-supply-ratio" | "height-to-market-price-to-year-2011-realized-price-ratio-99-5p" | "height-to-year-2024-input-volume" | "height-to-market-price-to-year-2022-realized-price-ratio-99p" | "height-to-year-2011-utxo-count" | "height-to-megalodon-realized-price-0-1p" | "height-to-market-price-to-vaulted-price-ratio-1m-sma" | "height-to-year-2012-realized-loss" | "height-to-from-10y-net-realized-profit-and-loss" | "height-to-year-2011-40p-price-paid" | "height-to-market-price-to-illiquid-realized-price-ratio-1y-sma" | "height-to-liquid-halved-supply-to-circulating-supply-ratio" | "height-to-crab-median-price-paid" | "height-to-from-1y-to-2y-realized-price-0-5p" | "height-to-from-1d-to-1w-halved-supply" | "height-to-from-3m-to-6m-supply-in-profit-to-circulating-supply-ratio" | "height-to-sth-input-volume" | "height-to-year-2023-supply-to-circulating-supply-ratio" | "height-to-year-2015-input-count" | "height-to-year-2019-adjusted-value-created" | "height-to-whale-70p-price-paid" | "height-to-up-to-1m-supply" | "height-to-market-price-to-from-7y-to-10y-realized-price-ratio" | "height-to-year-2017-adjusted-value-created" | "height-to-true-market-mean-0-5p" | "height-to-p2sh-25p-price-paid" | "height-to-market-price-to-price-200w-sma-ratio-99p" | "height-to-market-price-to-from-6m-to-1y-realized-price-ratio-1y-sma-momentum-oscillator" | "height-to-shrimp-supply-to-circulating-supply-ratio" | "height-to-market-price-to-price-34d-sma-ratio-99-5p" | "height-to-year-2018-negative-unrealized-loss" | "height-to-from-10y-75p-price-paid" | "height-to-p2sh-realized-value" | "height-to-p2wsh-net-realized-profit-and-loss" | "height-to-up-to-5m-adjusted-value-created" | "height-to-market-price-to-from-10y-realized-price-ratio-0-5p" | "height-to-p2sh-address-count" | "height-to-up-to-4m-60p-price-paid" | "height-to-year-2010-85p-price-paid" | "height-to-from-15y-unrealized-loss" | "height-to-from-1y-realized-value" | "height-to-from-4y-unrealized-profit" | "height-to-market-price-to-price-34d-sma-ratio-0-1p" | "height-to-market-price-to-up-to-5m-realized-price-ratio-1w-sma" | "height-to-up-to-1w-value-created" | "height-to-from-1y-supply" | "height-to-crab-realized-price-0-5p" | "height-to-up-to-3m-10p-price-paid" | "height-to-plankton-10p-price-paid" | "height-to-year-2020-net-realized-profit-and-loss" | "height-to-up-to-1d-80p-price-paid" | "height-to-whale-supply-in-profit-to-own-supply-ratio" | "height-to-p2tr-65p-price-paid" | "height-to-year-2014-realized-cap-1m-net-change" | "height-to-plankton-cumulative-realized-profit" | "height-to-market-price-to-up-to-6m-realized-price-ratio-99-9p" | "height-to-market-price-to-year-2024-realized-price-ratio" | "height-to-up-to-3m-net-realized-profit-and-loss-to-market-cap-ratio" | "height-to-humpback-halved-supply-to-circulating-supply-ratio" | "height-to-market-price-to-from-3m-to-6m-realized-price-ratio-0-5p" | "height-to-up-to-1y-35p-price-paid" | "height-to-up-to-1w-supply-in-profit-to-own-supply-ratio" | "height-to-up-to-1m-net-realized-profit-and-loss-to-market-cap-ratio" | "height-to-year-2021-supply-to-circulating-supply-ratio" | "height-to-lth-45p-price-paid" | "height-to-market-price-to-price-1y-sma-ratio-99-9p" | "height-to-year-2013-adjusted-value-created" | "height-to-from-4y-halved-supply-to-circulating-supply-ratio" | "height-to-from-3y-to-5y-cumulative-realized-loss" | "height-to-market-price-to-up-to-1y-realized-price-ratio-1m-sma" | "height-to-market-price-to-year-2015-realized-price-ratio-1y-sma" | "height-to-up-to-1d-adjusted-value-destroyed" | "height-to-from-1y-to-2y-65p-price-paid" | "height-to-year-2010-10p-price-paid" | "height-to-p2wpkh-15p-price-paid" | "height-to-year-2019-unrealized-profit" | "height-to-year-2024-unrealized-loss" | "height-to-year-2022-cumulative-realized-loss" | "height-to-cumulative-coinblocks-stored" | "height-to-from-6m-to-1y-realized-price-99p" | "height-to-from-7y-to-10y-supply-in-loss-to-own-supply-ratio" | "height-to-from-1w-to-1m-supply-in-loss-to-circulating-supply-ratio" | "height-to-from-5y-to-7y-supply-in-profit-to-circulating-supply-ratio" | "height-to-year-2020-unrealized-profit" | "height-to-market-price-to-from-6m-to-1y-realized-price-ratio" | "height-to-from-7y-to-10y-supply-in-profit-to-circulating-supply-ratio" | "height-to-50" | "height-to-from-15y-input-count" | "height-to-from-1d-to-1w-realized-price-0-1p" | "height-to-from-1w-to-1m-realized-price-1p" | "height-to-market-price-to-price-89d-sma-ratio-1w-sma" | "height-to-sth-65p-price-paid" | "height-to-up-to-10y-20p-price-paid" | "height-to-year-2013-negative-realized-loss" | "height-to-p2wpkh-85p-price-paid" | "height-to-from-1y-to-2y-unrealized-loss" | "height-to-year-2017-spent-output-profit-ratio" | "height-to-year-2012-realized-price-0-1p" | "height-to-from-15y-65p-price-paid" | "height-to-from-3y-to-5y-90p-price-paid" | "height-to-from-10y-to-15y-20p-price-paid" | "height-to-from-15y-cumulative-net-realized-profit-and-loss-1m-net-change" | "height-to-shark-unrealized-loss" | "height-to-up-to-3m-45p-price-paid" | "height-to-year-2009-realized-price" | "height-to-from-1y-15p-price-paid" | "height-to-year-2023-net-unrealized-profit-and-loss" | "height-to-from-1y-to-2y-negative-unrealized-loss" | "height-to-highly-liquid-utxo-count" | "height-to-p2wpkh-supply-in-loss-to-own-supply-ratio" | "height-to-market-price-to-true-market-mean-ratio-1w-sma" | "height-to-from-6m-to-1y-realized-price-99-5p" | "height-to-up-to-2m-supply-to-circulating-supply-ratio" | "height-to-market-price-to-up-to-2y-realized-price-ratio-99-9p" | "height-to-up-to-1m-25p-price-paid" | "height-to-year-2012-cumulative-realized-loss" | "height-to-year-2012-65p-price-paid" | "height-to-market-price-to-active-price-ratio-1w-sma" | "height-to-illiquid-realized-price-99-9p" | "height-to-price-1m-sma-99-9p" | "height-to-sth-realized-price-1p" | "height-to-from-4y-halved-supply" | "height-to-market-price-to-from-2y-realized-price-ratio-1y-sma-momentum-oscillator" | "height-to-liquid-cumulative-net-realized-profit-and-loss" | "height-to-market-price-to-p2sh-realized-price-ratio-99-5p" | "height-to-up-to-4m-adjusted-value-destroyed" | "height-to-lth-85p-price-paid" | "height-to-from-5y-to-7y-net-unrealized-profit-and-loss" | "height-to-year-2011-realized-value" | "height-to-from-1y-to-2y-spent-output-profit-ratio" | "height-to-illiquid-spent-output-profit-ratio" | "height-to-up-to-10y-input-count" | "height-to-market-price-to-year-2013-realized-price-ratio-1y-sma-momentum-oscillator" | "height-to-up-to-2m-25p-price-paid" | "height-to-up-to-5m-value-destroyed" | "height-to-plankton-supply-to-circulating-supply-ratio" | "height-to-market-price-to-up-to-1d-realized-price-ratio-1w-sma" | "height-to-year-2019-realized-price-0-5p" | "height-to-illiquid-net-realized-profit-and-loss" | "height-to-p2pkh-halved-supply" | "height-to-from-1d-to-1w-05p-price-paid" | "height-to-up-to-1m-cumulative-realized-profit" | "height-to-from-2y-20p-price-paid" | "height-to-market-price-to-from-2y-realized-price-ratio-0-1p" | "height-to-from-2y-net-unrealized-profit-and-loss-to-market-cap-ratio" | "height-to-megalodon-cumulative-realized-profit" | "height-to-p2sh-supply-in-profit-to-circulating-supply-ratio" | "height-to-up-to-10y-unrealized-profit" | "height-to-market-price-to-plankton-realized-price-ratio-1y-sma-momentum-oscillator" | "height-to-year-2009-negative-realized-loss" | "height-to-from-7y-to-10y-realized-price-1p" | "height-to-from-7y-to-10y-realized-price-99p" | "height-to-shark-net-realized-profit-and-loss" | "height-to-year-2020-10p-price-paid" | "height-to-market-price-to-true-market-mean-ratio" | "height-to-up-to-3m-spent-output-profit-ratio" | "height-to-year-2022-95p-price-paid" | "height-to-market-price-to-price-144d-sma-ratio-0-5p" | "height-to-up-to-4m-35p-price-paid" | "height-to-market-price-to-p2sh-realized-price-ratio-99p" | "height-to-year-2020-supply-in-profit-to-circulating-supply-ratio" | "height-to-market-price-to-from-1w-to-1m-realized-price-ratio" | "height-to-up-to-15y-65p-price-paid" | "height-to-lth-median-price-paid" | "height-to-from-10y-to-15y-net-realized-profit-and-loss" | "height-to-plankton-75p-price-paid" | "height-to-from-1m-to-3m-25p-price-paid" | "height-to-fish-cumulative-net-realized-profit-and-loss" | "height-to-from-6m-to-1y-adjusted-spent-output-profit-ratio" | "height-to-fish-75p-price-paid" | "height-to-year-2021-cumulative-net-realized-profit-and-loss-1m-net-change" | "height-to-plankton-45p-price-paid" | "height-to-from-1d-to-1w-negative-unrealized-loss" | "height-to-up-to-2y-35p-price-paid" | "height-to-market-price-to-shrimp-realized-price-ratio" | "height-to-highly-liquid-realized-price-0-1p" | "height-to-cumulative-fees" | "height-to-plankton-input-count" | "height-to-lth-65p-price-paid" | "height-to-highly-liquid-negative-realized-loss" | "height-to-p2wpkh-supply-to-circulating-supply-ratio" | "height-to-up-to-4m-supply-in-loss-to-circulating-supply-ratio" | "height-to-up-to-5m-realized-price-0-5p" | "height-to-market-price-to-sth-realized-price-ratio-0-1p" | "height-to-market-price-to-up-to-5y-realized-price-ratio-1y-sma" | "height-to-p2wpkh-realized-cap-1m-net-change" | "height-to-from-1d-to-1w-halved-supply-to-circulating-supply-ratio" | "height-to-year-2018-negative-realized-loss" | "height-to-market-price-to-from-10y-realized-price-ratio-99-9p" | "height-to-market-price-to-from-1y-realized-price-ratio-99p" | "height-to-market-price-to-from-5y-to-7y-realized-price-ratio-99p" | "height-to-year-2024-net-unrealized-profit-and-loss-to-market-cap-ratio" | "height-to-year-2022-value-created" | "height-to-year-2021-05p-price-paid" | "height-to-up-to-2y-net-realized-profit-and-loss-to-market-cap-ratio" | "height-to-market-price-to-p2tr-realized-price-ratio-0-1p" | "height-to-p2wpkh-realized-value" | "height-to-whale-adjusted-value-destroyed" | "height-to-year-2023-20p-price-paid" | "height-to-from-3y-to-5y-realized-price-99p" | "height-to-from-2y-cumulative-net-realized-profit-and-loss" | "height-to-up-to-5m-net-realized-profit-and-loss-to-market-cap-ratio" | "height-to-whale-realized-price-99p" | "height-to-new-addresses" | "height-to-year-2020-15p-price-paid" | "height-to-fish-supply-in-loss-to-circulating-supply-ratio" | "height-to-p2pkh-85p-price-paid" | "height-to-from-15y-15p-price-paid" | "height-to-from-1d-to-1w-95p-price-paid" | "height-to-price-13d-sma-0-5p" | "height-to-market-price-to-year-2024-realized-price-ratio-0-5p" | "height-to-up-to-1y-supply-in-profit" | "height-to-price-34d-sma-99-5p" | "height-to-from-3y-to-5y-realized-value" | "height-to-year-2011-net-unrealized-profit-and-loss-to-market-cap-ratio" | "height-to-vaulted-cap" | "height-to-up-to-6m-median-price-paid" | "height-to-highly-liquid-25p-price-paid" | "height-to-from-1w-to-1m-cumulative-realized-profit" | "height-to-from-4y-realized-price-99p" | "height-to-from-4y-adjusted-spent-output-profit-ratio" | "height-to-lth-realized-price-99-5p" | "height-to-market-price-to-up-to-15y-realized-price-ratio-0-5p" | "height-to-whale-realized-price-0-5p" | "height-to-year-2018-10p-price-paid" | "height-to-year-2019-negative-unrealized-loss" | "height-to-from-3y-to-5y-realized-price-99-5p" | "height-to-shrimp-realized-price-0-5p" | "height-to-year-2018-unrealized-loss" | "height-to-from-5y-to-7y-cumulative-realized-profit" | "height-to-market-price-to-price-21d-sma-ratio-99-5p" | "height-to-from-1m-to-3m-input-count" | "height-to-from-2y-to-3y-realized-price" | "height-to-p2wpkh-realized-profit" | "height-to-shark-adjusted-value-created" | "height-to-up-to-1d-75p-price-paid" | "height-to-up-to-3m-75p-price-paid" | "height-to-year-2022-30p-price-paid" | "height-to-p2sh-realized-price-99-9p" | "height-to-total-cointime-value-stored" | "height-to-10p-price-paid" | "height-to-from-1w-to-1m-realized-price-99-9p" | "height-to-vaulting-rate" | "height-to-year-2021-70p-price-paid" | "height-to-year-2023-85p-price-paid" | "height-to-from-10y-to-15y-05p-price-paid" | "height-to-year-2024-utxo-count" | "height-to-from-10y-to-15y-supply-to-circulating-supply-ratio" | "height-to-from-1m-to-3m-30p-price-paid" | "height-to-from-1y-to-2y-input-count" | "height-to-market-price-to-up-to-1d-realized-price-ratio-1y-sma-momentum-oscillator" | "height-to-year-2010-80p-price-paid" | "height-to-up-to-5m-supply-in-loss" | "height-to-market-price-to-up-to-2y-realized-price-ratio-1m-sma" | "height-to-up-to-15y-realized-price" | "height-to-up-to-1w-80p-price-paid" | "height-to-whale-net-realized-profit-and-loss" | "height-to-p2pkh-supply-in-loss" | "height-to-humpback-cumulative-net-realized-profit-and-loss-1m-net-change" | "height-to-market-price-to-from-6m-to-1y-realized-price-ratio-99p" | "height-to-plankton-65p-price-paid" | "height-to-from-10y-halved-supply-to-circulating-supply-ratio" | "height-to-active-supply-3m-net-change" | "height-to-lth-realized-value" | "height-to-up-to-5y-supply" | "height-to-market-price-to-shrimp-realized-price-ratio-99p" | "height-to-up-to-6m-net-realized-profit-and-loss" | "height-to-from-15y-cumulative-realized-loss" | "height-to-from-15y-input-volume" | "height-to-liquid-realized-price-1p" | "height-to-up-to-3y-realized-cap" | "height-to-market-price-to-price-13d-sma-ratio-1m-sma" | "height-to-up-to-5m-05p-price-paid" | "height-to-year-2022-net-unrealized-profit-and-loss-to-market-cap-ratio" | "height-to-from-3y-to-5y-25p-price-paid" | "height-to-p2wpkh-65p-price-paid" | "height-to-year-2021-20p-price-paid" | "height-to-market-price-to-year-2014-realized-price-ratio-99p" | "height-to-from-1y-negative-realized-loss" | "height-to-up-to-1y-65p-price-paid" | "height-to-coinblocks-destroyed" | "height-to-market-price-to-up-to-4m-realized-price-ratio-1y-sma-momentum-oscillator" | "height-to-year-2022-input-volume" | "height-to-price-200w-sma-0-5p" | "height-to-highly-liquid-realized-price-99p" | "height-to-from-2y-realized-profit" | "height-to-market-price-to-price-13d-sma-ratio-1w-sma" | "height-to-year-2014-35p-price-paid" | "height-to-year-2016-realized-price-99-5p" | "height-to-from-15y-supply-in-loss-to-circulating-supply-ratio" | "height-to-shrimp-realized-profit" | "height-to-from-15y-cumulative-net-realized-profit-and-loss" | "height-to-p2pk-supply-to-circulating-supply-ratio" | "height-to-market-price-to-price-144d-sma-ratio-99-9p" | "height-to-market-price-to-up-to-5m-realized-price-ratio-0-5p" | "height-to-market-price-to-from-1y-to-2y-realized-price-ratio-1w-sma" | "height-to-highly-liquid-net-unrealized-profit-and-loss" | "height-to-market-price-to-humpback-realized-price-ratio-99-5p" | "height-to-from-1d-to-1w-supply-in-loss" | "height-to-market-price-to-price-21d-sma-ratio-99-9p" | "height-to-p2wsh-supply" | "height-to-up-to-4m-realized-cap-1m-net-change" | "height-to-up-to-4m-45p-price-paid" | "height-to-year-2019-cumulative-realized-loss" | "height-to-up-to-5y-realized-price-99p" | "height-to-year-2015-40p-price-paid" | "height-to-year-2017-net-unrealized-profit-and-loss-to-market-cap-ratio" | "height-to-year-2021-unrealized-loss" | "height-to-true-market-mean-99-9p" | "height-to-market-price-to-up-to-1d-realized-price-ratio-1y-sma" | "height-to-year-2020-60p-price-paid" | "height-to-year-2020-spent-output-profit-ratio" | "height-to-year-2023-55p-price-paid" | "height-to-year-2023-unrealized-loss" | "height-to-market-price-to-up-to-7y-realized-price-ratio-1p" | "height-to-year-2021-value-created" | "height-to-market-price-to-plankton-realized-price-ratio-1p" | "height-to-humpback-spent-output-profit-ratio" | "height-to-p2pk-supply-in-loss-to-own-supply-ratio" | "height-to-year-2020-realized-cap" | "height-to-market-price-to-from-3m-to-6m-realized-price-ratio-0-1p" | "height-to-shrimp-40p-price-paid" | "height-to-from-4y-supply-in-loss-to-circulating-supply-ratio" | "height-to-from-1d-to-1w-adjusted-value-created" | "height-to-humpback-input-volume" | "height-to-from-7y-to-10y-negative-unrealized-loss" | "height-to-p2wpkh-net-unrealized-profit-and-loss-to-market-cap-ratio" | "height-to-coinblocks-stored" | "height-to-fish-supply-in-loss-to-own-supply-ratio" | "height-to-up-to-3m-30p-price-paid" | "height-to-from-10y-to-15y-realized-profit" | "height-to-from-6m-to-1y-25p-price-paid" | "height-to-market-price-to-realized-price-ratio-1y-sma" | "height-to-megalodon-40p-price-paid" | "height-to-up-to-2y-realized-price-0-5p" | "height-to-year-2018-realized-price-0-5p" | "height-to-from-6m-to-1y-55p-price-paid" | "height-to-illiquid-supply-in-loss-to-own-supply-ratio" | "height-to-plankton-15p-price-paid" | "height-to-market-price-to-year-2013-realized-price-ratio-1p" | "height-to-from-4y-net-realized-profit-and-loss" | "height-to-fish-realized-loss" | "height-to-p2sh-spent-output-profit-ratio" | "height-to-up-to-1w-supply-in-loss" | "height-to-year-2016-value-destroyed" | "height-to-highly-liquid-supply-in-profit" | "height-to-from-1y-to-2y-net-realized-profit-and-loss-to-market-cap-ratio" | "height-to-from-10y-to-15y-supply-in-profit-to-circulating-supply-ratio" | "height-to-market-price-to-fish-realized-price-ratio-99p" | "height-to-from-2y-to-3y-halved-supply-to-circulating-supply-ratio" | "height-to-market-price-to-p2tr-realized-price-ratio-1y-sma" | "height-to-year-2021-realized-price-99-9p" | "height-to-year-2009-realized-price-99-5p" | "height-to-p2wpkh-supply-in-profit" | "height-to-year-2010-negative-unrealized-loss" | "height-to-year-2013-cumulative-realized-loss" | "height-to-year-2018-realized-price-99p" | "height-to-up-to-7y-realized-price-99p" | "height-to-market-price-to-up-to-1w-realized-price-ratio-0-1p" | "height-to-market-price-to-p2tr-realized-price-ratio" | "height-to-market-price-to-up-to-1m-realized-price-ratio-0-1p" | "height-to-up-to-1y-80p-price-paid" | "height-to-humpback-25p-price-paid" | "height-to-from-1m-to-3m-supply-in-profit-to-circulating-supply-ratio" | "height-to-p2wpkh-value-destroyed" | "height-to-p2wsh-negative-unrealized-loss" | "height-to-shark-realized-price" | "height-to-year-2021-10p-price-paid" | "height-to-up-to-1w-realized-loss" | "height-to-fish-realized-price-99-9p" | "height-to-up-to-3y-negative-unrealized-loss" | "height-to-market-price-to-up-to-4m-realized-price-ratio-99-5p" | "height-to-price-8d-sma-0-5p" | "height-to-up-to-5m-70p-price-paid" | "height-to-market-price-to-year-2017-realized-price-ratio-99p" | "height-to-shark-halved-supply" | "height-to-up-to-3y-realized-price-99-5p" | "height-to-market-price-to-year-2016-realized-price-ratio-0-1p" | "height-to-from-1w-to-1m-45p-price-paid" | "height-to-market-price-to-highly-liquid-realized-price-ratio-99-9p" | "height-to-market-price-to-shrimp-realized-price-ratio-1p" | "height-to-year-2018-realized-value" | "height-to-price" | "height-to-market-price-to-year-2024-realized-price-ratio-1p" | "height-to-from-2y-supply-to-circulating-supply-ratio" | "height-to-up-to-3y-net-realized-profit-and-loss" | "height-to-crab-70p-price-paid" | "height-to-megalodon-net-realized-profit-and-loss-to-market-cap-ratio" | "height-to-up-to-3y-realized-loss" | "height-to-year-2021-realized-price" | "height-to-from-3m-to-6m-80p-price-paid" | "height-to-market-price-to-from-7y-to-10y-realized-price-ratio-99-5p" | "height-to-p2wsh-realized-cap-1m-net-change" | "height-to-year-2010-05p-price-paid" | "height-to-from-1m-to-3m-cumulative-realized-profit" | "height-to-year-2013-net-unrealized-profit-and-loss-to-market-cap-ratio" | "height-to-market-price-to-price-1m-sma-ratio-0-1p" | "height-to-up-to-3m-supply" | "height-to-from-1w-to-1m-supply-in-profit-to-circulating-supply-ratio" | "height-to-from-2y-adjusted-value-destroyed" | "height-to-liquid-realized-price-0-1p" | "height-to-market-price-to-from-3m-to-6m-realized-price-ratio-1y-sma" | "height-to-market-price-to-year-2021-realized-price-ratio-1y-sma-momentum-oscillator" | "height-to-p2sh-35p-price-paid" | "height-to-year-2011-unrealized-profit" | "height-to-market-price-to-year-2019-realized-price-ratio-1y-sma" | "height-to-megalodon-25p-price-paid" | "height-to-up-to-15y-unrealized-loss" | "height-to-year-2012-25p-price-paid" | "height-to-year-2017-adjusted-spent-output-profit-ratio" | "height-to-realized-value" | "height-to-year-2019-55p-price-paid" | "height-to-year-2019-supply-in-profit-to-own-supply-ratio" | "height-to-price-13d-sma" | "height-to-up-to-3m-negative-unrealized-loss" | "height-to-year-2011-input-count" | "height-to-year-2015-realized-value" | "height-to-year-2020-05p-price-paid" | "height-to-year-2024-supply-in-profit-to-circulating-supply-ratio" | "height-to-up-to-3y-55p-price-paid" | "height-to-up-to-3y-adjusted-value-destroyed" | "height-to-market-price-to-up-to-7y-realized-price-ratio-1y-sma-momentum-oscillator" | "height-to-market-price-to-from-2y-realized-price-ratio-99p" | "height-to-up-to-4m-negative-realized-loss" | "height-to-fish-60p-price-paid" | "height-to-up-to-6m-80p-price-paid" | "height-to-year-2018-cumulative-net-realized-profit-and-loss" | "height-to-up-to-1m-realized-cap" | "height-to-fish-value-destroyed" | "height-to-market-price-to-crab-realized-price-ratio-1y-sma-momentum-oscillator" | "height-to-market-price-to-highly-liquid-realized-price-ratio-0-1p" | "height-to-price-13d-sma-1p" | "height-to-cumulative-subsidy" | "height-to-price-4y-sma" | "height-to-from-4y-75p-price-paid" | "height-to-thermo-cap" | "height-to-market-price-to-year-2018-realized-price-ratio-99-5p" | "height-to-p2pkh-median-price-paid" | "height-to-up-to-3m-20p-price-paid" | "height-to-year-2009-realized-price-99p" | "height-to-up-to-2m-40p-price-paid" | "height-to-market-price-to-p2tr-realized-price-ratio-1p" | "height-to-year-2012-realized-price-99-9p" | "height-to-year-2020-80p-price-paid" | "height-to-from-1y-to-2y-negative-realized-loss" | "height-to-market-price-to-realized-price-ratio-1m-sma" | "height-to-shark-85p-price-paid" | "height-to-year-2010-75p-price-paid" | "height-to-megalodon-utxo-count" | "height-to-lth-realized-cap" | "height-to-up-to-1m-40p-price-paid" | "height-to-p2pkh-supply-in-profit" | "height-to-fish-95p-price-paid" | "height-to-fish-realized-cap" | "height-to-from-2y-40p-price-paid" | "height-to-shrimp-25p-price-paid" | "height-to-from-1m-to-3m-65p-price-paid" | "height-to-up-to-6m-10p-price-paid" | "height-to-up-to-7y-45p-price-paid" | "height-to-price-2y-sma" | "height-to-from-1w-to-1m-cumulative-net-realized-profit-and-loss-1m-net-change" | "height-to-plankton-realized-price-0-5p" | "height-to-up-to-10y-25p-price-paid" | "height-to-year-2011-supply-in-loss-to-circulating-supply-ratio" | "height-to-up-to-6m-adjusted-value-destroyed" | "height-to-from-7y-to-10y-value-created" | "height-to-up-to-2y-realized-cap-1m-net-change" | "height-to-fish-realized-price-99p" | "height-to-from-10y-05p-price-paid" | "height-to-market-price-to-year-2010-realized-price-ratio-1m-sma" | "height-to-p2wpkh-realized-price-1p" | "height-to-p2wsh-70p-price-paid" | "height-to-from-10y-to-15y-negative-realized-loss" | "height-to-megalodon-net-realized-profit-and-loss" | "height-to-year-2013-realized-loss" | "height-to-up-to-3y-45p-price-paid" | "height-to-from-4y-80p-price-paid" | "height-to-up-to-6m-adjusted-spent-output-profit-ratio" | "height-to-year-2012-negative-unrealized-loss" | "height-to-shark-supply-in-profit" | "height-to-from-10y-to-15y-supply-in-loss-to-own-supply-ratio" | "height-to-market-price-to-crab-realized-price-ratio-99p" | "height-to-shark-realized-price-99-9p" | "height-to-up-to-15y-30p-price-paid" | "height-to-market-price-to-megalodon-realized-price-ratio" | "height-to-from-1m-to-3m-realized-price-1p" | "height-to-market-price-to-p2pkh-realized-price-ratio-0-5p" | "height-to-market-price-to-price-200w-sma-ratio-99-5p" | "height-to-plankton-60p-price-paid" | "height-to-up-to-10y-60p-price-paid" | "height-to-year-2024-realized-loss" | "height-to-from-10y-to-15y-input-count" | "height-to-p2wsh-value-destroyed" | "height-to-sth-supply-in-loss-to-own-supply-ratio" | "height-to-plankton-value-created" | "height-to-market-price-to-illiquid-realized-price-ratio" | "height-to-plankton-utxo-count" | "height-to-market-price-to-p2pk-realized-price-ratio-99p" | "height-to-from-1w-to-1m-supply-in-loss-to-own-supply-ratio" | "height-to-market-price-to-from-4y-realized-price-ratio-1p" | "height-to-up-to-5y-80p-price-paid" | "height-to-from-3m-to-6m-adjusted-spent-output-profit-ratio" | "height-to-market-price-to-up-to-1d-realized-price-ratio-99-5p" | "height-to-p2sh-supply-in-loss-to-own-supply-ratio" | "height-to-up-to-6m-supply" | "height-to-market-price-to-price-2y-sma-ratio-1p" | "height-to-supply-to-circulating-supply-ratio" | "height-to-55p-price-paid" | "height-to-year-2011-adjusted-value-created" | "height-to-year-2010-input-count" | "height-to-price-1m-sma-0-5p" | "height-to-lth-20p-price-paid" | "height-to-market-price-to-p2wsh-realized-price-ratio-1w-sma" | "height-to-up-to-1m-45p-price-paid" | "height-to-from-6m-to-1y-supply-in-loss" | "height-to-from-2y-60p-price-paid" | "height-to-from-7y-to-10y-60p-price-paid" | "height-to-from-1d-to-1w-realized-loss" | "height-to-from-1y-net-realized-profit-and-loss" | "height-to-from-1w-to-1m-realized-value" | "height-to-from-7y-to-10y-net-realized-profit-and-loss-to-market-cap-ratio" | "height-to-market-price-to-up-to-1w-realized-price-ratio-1y-sma-momentum-oscillator" | "height-to-from-4y-supply" | "height-to-lth-10p-price-paid" | "height-to-p2wpkh-realized-price" | "height-to-plankton-realized-price-0-1p" | "height-to-market-price-to-price-89d-sma-ratio-1m-sma" | "height-to-shark-realized-cap-1m-net-change" | "height-to-p2tr-realized-profit" | "height-to-from-1y-to-2y-realized-price-0-1p" | "height-to-from-3y-to-5y-adjusted-value-created" | "height-to-up-to-4m-halved-supply-to-circulating-supply-ratio" | "height-to-from-7y-to-10y-adjusted-value-destroyed" | "height-to-up-to-1m-negative-realized-loss" | "height-to-year-2015-70p-price-paid" | "height-to-market-price-to-up-to-3m-realized-price-ratio-1m-sma" | "height-to-liquid-supply-in-loss-to-own-supply-ratio" | "height-to-sth-cumulative-net-realized-profit-and-loss-1m-net-change" | "height-to-coinblocks-created" | "height-to-up-to-10y-05p-price-paid" | "height-to-market-price-to-price-2y-sma-ratio-0-5p" | "height-to-from-5y-to-7y-input-count" | "height-to-from-5y-to-7y-realized-price-99p" | "height-to-year-2021-cumulative-realized-loss" | "height-to-market-price-to-megalodon-realized-price-ratio-1p" | "height-to-up-to-7y-supply-in-profit" | "height-to-fish-halved-supply-to-circulating-supply-ratio" | "height-to-market-price-to-whale-realized-price-ratio-99p" | "height-to-p2wsh-60p-price-paid" | "height-to-from-6m-to-1y-net-realized-profit-and-loss-to-market-cap-ratio" | "height-to-market-price-to-up-to-3m-realized-price-ratio" | "height-to-market-price-to-true-market-mean-ratio-0-1p" | "height-to-market-price-to-realized-price-ratio-1p" | "height-to-from-3y-to-5y-realized-cap-1m-net-change" | "height-to-market-price-to-up-to-1m-realized-price-ratio-1m-sma" | "height-to-market-price-to-year-2011-realized-price-ratio-99p" | "height-to-shrimp-value-destroyed" | "height-to-cointime-price-1p" | "height-to-p2tr-utxo-count" | "height-to-up-to-10y-net-unrealized-profit-and-loss-to-market-cap-ratio" | "height-to-up-to-1y-supply-in-loss-to-circulating-supply-ratio" | "height-to-whale-realized-price-0-1p" | "height-to-market-price-to-humpback-realized-price-ratio-99p" | "height-to-whale-40p-price-paid" | "height-to-crab-supply-in-profit" | "height-to-market-price-to-crab-realized-price-ratio" | "height-to-market-price-to-p2wpkh-realized-price-ratio-1w-sma" | "height-to-market-price-to-humpback-realized-price-ratio-1y-sma-momentum-oscillator" | "height-to-p2wpkh-realized-loss" | "height-to-market-price-to-vaulted-price-ratio-99p" | "height-to-humpback-35p-price-paid" | "height-to-up-to-15y-median-price-paid" | "height-to-up-to-5y-realized-profit" | "height-to-whale-75p-price-paid" | "height-to-market-price-to-year-2017-realized-price-ratio-99-9p" | "height-to-market-price-to-year-2020-realized-price-ratio-99p" | "height-to-year-2011-90p-price-paid" | "height-to-year-2014-negative-unrealized-loss" | "height-to-humpback-realized-price-99-5p" | "height-to-liquid-adjusted-value-destroyed" | "height-to-liquid-halved-supply" | "height-to-crab-75p-price-paid" | "height-to-from-4y-30p-price-paid" | "height-to-year-2009-supply-in-profit-to-own-supply-ratio" | "height-to-from-1m-to-3m-realized-price-99-9p" | "height-to-from-1y-to-2y-15p-price-paid" | "height-to-market-price-to-price-13d-sma-ratio-1p" | "height-to-market-price-to-year-2020-realized-price-ratio-1w-sma" | "height-to-shrimp-realized-price-0-1p" | "height-to-up-to-7y-halved-supply-to-circulating-supply-ratio" | "height-to-up-to-7y-spent-output-profit-ratio" | "height-to-year-2010-cumulative-realized-loss" | "height-to-year-2017-input-count" | "height-to-up-to-5m-net-realized-profit-and-loss" | "height-to-megalodon-90p-price-paid" | "height-to-market-price-to-up-to-15y-realized-price-ratio-99-5p" | "height-to-year-2011-75p-price-paid" | "height-to-year-2011-45p-price-paid" | "height-to-market-price-to-price-21d-sma-ratio-1w-sma" | "height-to-year-2012-halved-supply-to-circulating-supply-ratio" | "height-to-market-price-to-price-21d-sma-ratio-0-5p" | "height-to-year-2017-realized-profit" | "height-to-from-7y-to-10y-05p-price-paid" | "height-to-year-2009-adjusted-value-destroyed" | "height-to-up-to-1d-net-unrealized-profit-and-loss-to-market-cap-ratio" | "height-to-p2pk-40p-price-paid" | "height-to-from-4y-60p-price-paid" | "height-to-market-price-to-up-to-1m-realized-price-ratio-99-9p" | "height-to-crab-realized-cap" | "height-to-market-price-to-year-2019-realized-price-ratio-1m-sma" | "height-to-p2sh-20p-price-paid" | "height-to-from-4y-20p-price-paid" | "height-to-year-2018-80p-price-paid" | "height-to-year-2019-halved-supply-to-circulating-supply-ratio" | "height-to-market-price-to-up-to-3y-realized-price-ratio-0-1p" | "height-to-up-to-6m-realized-price-0-1p" | "height-to-p2pk-75p-price-paid" | "height-to-up-to-7y-60p-price-paid" | "height-to-market-price-to-year-2019-realized-price-ratio-99-9p" | "height-to-illiquid-30p-price-paid" | "height-to-sth-adjusted-value-created" | "height-to-from-7y-to-10y-supply-in-loss" | "height-to-producerness" | "height-to-year-2017-cumulative-realized-profit" | "height-to-from-10y-to-15y-cumulative-net-realized-profit-and-loss" | "height-to-from-5y-to-7y-realized-value" | "height-to-up-to-7y-value-created" | "height-to-from-4y-realized-price-0-1p" | "height-to-from-6m-to-1y-net-unrealized-profit-and-loss-to-market-cap-ratio" | "height-to-p2pkh-05p-price-paid" | "height-to-shark-45p-price-paid" | "height-to-up-to-2m-supply-in-profit-to-circulating-supply-ratio" | "height-to-market-price-to-highly-liquid-realized-price-ratio-0-5p" | "height-to-lth-55p-price-paid" | "height-to-up-to-10y-negative-realized-loss" | "height-to-year-2009-75p-price-paid" | "height-to-humpback-adjusted-value-destroyed" | "height-to-p2sh-net-realized-profit-and-loss-to-market-cap-ratio" | "height-to-p2sh-realized-profit" | "height-to-up-to-3y-supply-to-circulating-supply-ratio" | "height-to-from-1y-realized-loss" | "height-to-up-to-10y-45p-price-paid" | "height-to-year-2024-35p-price-paid" | "height-to-market-price-to-sth-realized-price-ratio-1m-sma" | "height-to-shark-realized-profit" | "height-to-market-price-to-year-2022-realized-price-ratio-99-5p" | "height-to-shrimp-90p-price-paid" | "height-to-sth-realized-price-99-9p" | "height-to-up-to-1w-70p-price-paid" | "height-to-up-to-1y-realized-price-99-9p" | "height-to-p2pkh-halved-supply-to-circulating-supply-ratio" | "height-to-up-to-2m-spent-output-profit-ratio" | "height-to-from-1y-to-2y-55p-price-paid" | "height-to-market-price-to-year-2010-realized-price-ratio-99-9p" | "height-to-from-3y-to-5y-net-realized-profit-and-loss-to-market-cap-ratio" | "height-to-up-to-1m-unrealized-profit" | "height-to-up-to-1y-40p-price-paid" | "height-to-up-to-3y-realized-price" | "height-to-year-2017-realized-price-0-5p" | "height-to-p2wpkh-value-created" | "height-to-up-to-4m-supply" | "height-to-year-2012-40p-price-paid" | "height-to-lth-net-realized-profit-and-loss" | "height-to-market-price-to-price-55d-sma-ratio-99-9p" | "height-to-from-2y-to-3y-negative-realized-loss" | "height-to-market-price-to-from-1w-to-1m-realized-price-ratio-99-9p" | "height-to-market-price-to-price-2y-sma-ratio-0-1p" | "height-to-market-price-to-shark-realized-price-ratio-99-9p" | "height-to-year-2016-85p-price-paid" | "height-to-market-price-to-megalodon-realized-price-ratio-1y-sma" | "height-to-concurrent-liveliness" | "height-to-realized-cap" | "height-to-market-price-to-illiquid-realized-price-ratio-0-1p" | "height-to-p2wsh-10p-price-paid" | "height-to-p2wpkh-80p-price-paid" | "height-to-from-2y-realized-price-99-9p" | "height-to-up-to-7y-25p-price-paid" | "height-to-year-2010-net-unrealized-profit-and-loss" | "height-to-p2wsh-realized-price-1p" | "height-to-crab-65p-price-paid" | "height-to-from-7y-to-10y-75p-price-paid" | "height-to-up-to-10y-40p-price-paid" | "height-to-up-to-5m-realized-cap" | "height-to-cointime-price-99-5p" | "height-to-yearly-inflation-rate" | "height-to-up-to-1w-input-volume" | "height-to-up-to-3y-input-volume" | "height-to-market-price-to-from-10y-to-15y-realized-price-ratio-1m-sma" | "height-to-year-2009-net-unrealized-profit-and-loss-to-market-cap-ratio" | "height-to-market-price-to-cointime-price-ratio-1w-sma" | "height-to-up-to-1m-net-unrealized-profit-and-loss" | "height-to-from-6m-to-1y-supply-in-loss-to-circulating-supply-ratio" | "height-to-liquid-realized-profit" | "height-to-from-1y-net-unrealized-profit-and-loss" | "height-to-up-to-5y-cumulative-net-realized-profit-and-loss-1m-net-change" | "height-to-up-to-1w-realized-price-99p" | "height-to-from-1y-to-2y-20p-price-paid" | "height-to-from-15y-supply-in-loss" | "height-to-from-5y-to-7y-negative-unrealized-loss" | "height-to-market-price-to-realized-price-ratio-99-9p" | "height-to-market-price-to-crab-realized-price-ratio-99-9p" | "height-to-year-2013-realized-cap" | "height-to-from-3m-to-6m-halved-supply-to-circulating-supply-ratio" | "height-to-fish-value-created" | "height-to-up-to-6m-35p-price-paid" | "height-to-market-price-to-plankton-realized-price-ratio-1y-sma" | "height-to-market-price-to-year-2020-realized-price-ratio-0-1p" | "height-to-market-price-to-from-1m-to-3m-realized-price-ratio-99p" | "height-to-market-price-to-vaulted-price-ratio-99-5p" | "height-to-market-price-to-year-2016-realized-price-ratio-99p" | "height-to-year-2016-05p-price-paid" | "height-to-liquid-realized-loss" | "height-to-from-1w-to-1m-value-created" | "height-to-market-price-to-up-to-1m-realized-price-ratio" | "height-to-year-2018-45p-price-paid" | "height-to-up-to-1y-95p-price-paid" | "height-to-from-10y-45p-price-paid" | "height-to-up-to-3y-supply" | "height-to-from-1m-to-3m-value-destroyed" | "height-to-up-to-6m-adjusted-value-created" | "height-to-up-to-3m-25p-price-paid" | "height-to-up-to-3m-35p-price-paid" | "height-to-from-10y-to-15y-15p-price-paid" | "height-to-from-5y-to-7y-60p-price-paid" | "height-to-year-2015-adjusted-value-created" | "height-to-year-2023-supply-in-profit" | "height-to-from-3m-to-6m-30p-price-paid" | "height-to-year-2009-supply-in-loss" | "height-to-highly-liquid-supply-to-circulating-supply-ratio" | "height-to-market-price-to-p2sh-realized-price-ratio" | "height-to-p2wsh-adjusted-value-destroyed" | "height-to-highly-liquid-cumulative-realized-loss" | "height-to-p2wsh-net-unrealized-profit-and-loss-to-market-cap-ratio" | "height-to-price-89d-sma-0-1p" | "height-to-price-89d-sma-1p" | "height-to-p2wpkh-adjusted-spent-output-profit-ratio" | "height-to-fish-utxo-count" | "height-to-p2wsh-55p-price-paid" | "height-to-year-2009-input-count" | "height-to-from-3m-to-6m-90p-price-paid" | "height-to-humpback-cumulative-net-realized-profit-and-loss" | "height-to-year-2014-net-unrealized-profit-and-loss-to-market-cap-ratio" | "height-to-up-to-3m-15p-price-paid" | "height-to-market-price-to-price-4y-sma-ratio-1m-sma" | "height-to-from-2y-to-3y-40p-price-paid" | "height-to-from-7y-to-10y-spent-output-profit-ratio" | "height-to-market-price-to-p2wpkh-realized-price-ratio-0-1p" | "height-to-p2sh-unrealized-loss" | "height-to-up-to-5m-40p-price-paid" | "height-to-year-2021-realized-cap" | "height-to-up-to-10y-realized-price-0-5p" | "height-to-year-2010-supply" | "height-to-market-price-to-year-2024-realized-price-ratio-99p" | "height-to-up-to-4m-supply-in-loss-to-own-supply-ratio" | "height-to-from-3m-to-6m-unrealized-profit" | "height-to-market-price-to-humpback-realized-price-ratio-0-5p" | "height-to-up-to-5y-85p-price-paid" | "height-to-market-price-to-up-to-1m-realized-price-ratio-1w-sma" | "height-to-illiquid-adjusted-spent-output-profit-ratio" | "height-to-market-price-to-shark-realized-price-ratio" | "height-to-p2tr-value-created" | "height-to-up-to-2y-05p-price-paid" | "height-to-from-5y-to-7y-80p-price-paid" | "height-to-market-price-to-crab-realized-price-ratio-99-5p" | "height-to-up-to-2y-net-unrealized-profit-and-loss-to-market-cap-ratio" | "height-to-market-price-to-p2wsh-realized-price-ratio-1y-sma" | "height-to-from-7y-to-10y-realized-cap-1m-net-change" | "height-to-megalodon-input-count" | "height-to-up-to-15y-net-realized-profit-and-loss-to-market-cap-ratio" | "height-to-from-4y-realized-price" | "height-to-market-price-to-realized-price-ratio" | "height-to-illiquid-net-realized-profit-and-loss-to-market-cap-ratio" | "height-to-market-price-to-true-market-mean-ratio-99p" | "height-to-up-to-2y-supply" | "height-to-up-to-3m-80p-price-paid" | "height-to-up-to-3m-realized-price" | "height-to-highly-liquid-75p-price-paid" | "height-to-market-price-to-price-1m-sma-ratio-99-9p" | "height-to-year-2013-80p-price-paid" | "height-to-from-10y-to-15y-realized-price-99-9p" | "height-to-humpback-realized-price-0-1p" | "height-to-market-price-to-lth-realized-price-ratio-1w-sma" | "height-to-year-2013-supply-to-circulating-supply-ratio" | "height-to-year-2022-realized-price-99p" | "height-to-up-to-3y-net-unrealized-profit-and-loss" | "height-to-year-2022-realized-loss" | "height-to-whale-realized-cap" | "height-to-year-2019-15p-price-paid" | "height-to-from-1w-to-1m-adjusted-value-destroyed" | "height-to-market-price-to-year-2018-realized-price-ratio-1p" | "height-to-liquid-supply-to-circulating-supply-ratio" | "height-to-from-2y-35p-price-paid" | "height-to-from-5y-to-7y-negative-realized-loss" | "height-to-market-price-to-price-13d-sma-ratio-1y-sma-momentum-oscillator" | "height-to-p2pkh-15p-price-paid" | "height-to-shark-supply-in-profit-to-circulating-supply-ratio" | "height-to-net-unrealized-profit-and-loss" | "height-to-market-price-to-price-1w-sma-ratio-1m-sma" | "height-to-crab-realized-price" | "height-to-market-price-to-year-2017-realized-price-ratio-0-5p" | "height-to-up-to-2y-realized-profit" | "height-to-year-2021-supply-in-profit-to-circulating-supply-ratio" | "height-to-from-15y-realized-cap" | "height-to-median-price-paid" | "height-to-p2pkh-unrealized-loss" | "height-to-from-1w-to-1m-unrealized-loss" | "height-to-year-2015-supply" | "height-to-from-6m-to-1y-realized-loss" | "height-to-p2wpkh-adjusted-value-destroyed" | "height-to-highly-liquid-halved-supply-to-circulating-supply-ratio" | "height-to-market-price-to-price-4y-sma-ratio-1p" | "height-to-from-1y-adjusted-spent-output-profit-ratio" | "height-to-p2pkh-80p-price-paid" | "height-to-from-3y-to-5y-60p-price-paid" | "height-to-market-price-to-from-10y-to-15y-realized-price-ratio-1y-sma" | "height-to-market-price-to-up-to-1w-realized-price-ratio" | "height-to-from-1m-to-3m-halved-supply" | "height-to-year-2011-60p-price-paid" | "height-to-up-to-6m-input-count" | "height-to-market-price-to-year-2010-realized-price-ratio" | "height-to-year-2011-value-destroyed" | "height-to-year-2023-cumulative-realized-loss" | "height-to-highly-liquid-supply-in-loss-to-circulating-supply-ratio" | "height-to-up-to-5y-realized-price-99-5p" | "height-to-cumulative-net-realized-profit-and-loss" | "height-to-from-3m-to-6m-45p-price-paid" | "height-to-from-1w-to-1m-adjusted-spent-output-profit-ratio" | "height-to-highly-liquid-adjusted-value-created" | "height-to-market-price-to-year-2019-realized-price-ratio-1p" | "height-to-up-to-6m-realized-value" | "height-to-year-2012-70p-price-paid" | "height-to-year-2024-negative-realized-loss" | "height-to-market-price-to-year-2009-realized-price-ratio-1m-sma" | "height-to-market-price-to-price-34d-sma-ratio-99p" | "height-to-p2pkh-40p-price-paid" | "height-to-market-price-to-from-3m-to-6m-realized-price-ratio-1p" | "height-to-up-to-1d-unrealized-loss" | "height-to-up-to-3y-95p-price-paid" | "height-to-from-1d-to-1w-55p-price-paid" | "height-to-year-2017-negative-unrealized-loss" | "height-to-market-price-to-price-200w-sma-ratio-1m-sma" | "height-to-year-2015-supply-in-loss-to-own-supply-ratio" | "height-to-from-2y-to-3y-input-count" | "height-to-market-price-to-p2pkh-realized-price-ratio-99p" | "height-to-market-price-to-year-2009-realized-price-ratio-1y-sma" | "height-to-realized-price-0-5p" | "height-to-up-to-4m-85p-price-paid" | "height-to-year-2009-05p-price-paid" | "height-to-year-2019-80p-price-paid" | "height-to-shark-80p-price-paid" | "height-to-year-2023-65p-price-paid" | "height-to-p2tr-10p-price-paid" | "height-to-up-to-4m-input-count" | "height-to-from-1m-to-3m-realized-price-0-1p" | "height-to-transaction-volume-1w-sma" | "height-to-price-1y-sma-99-5p" | "height-to-liquid-realized-price-99-5p" | "height-to-up-to-3y-supply-in-loss-to-circulating-supply-ratio" | "height-to-year-2012-net-unrealized-profit-and-loss" | "height-to-year-2017-95p-price-paid" | "height-to-up-to-5m-unrealized-profit" | "height-to-shrimp-10p-price-paid" | "height-to-up-to-15y-adjusted-value-destroyed" | "height-to-year-2012-75p-price-paid" | "height-to-up-to-2y-unrealized-loss" | "height-to-up-to-3y-supply-in-profit" | "height-to-year-2019-60p-price-paid" | "height-to-megalodon-supply-in-profit-to-own-supply-ratio" | "height-to-crab-realized-profit" | "height-to-illiquid-realized-profit" | "height-to-year-2023-supply-in-loss-to-own-supply-ratio" | "height-to-from-15y-adjusted-value-created" | "height-to-from-3y-to-5y-realized-price-0-1p" | "height-to-market-price-to-active-price-ratio-99-5p" | "height-to-megalodon-supply-in-loss" | "height-to-up-to-10y-realized-price-1p" | "height-to-up-to-1w-10p-price-paid" | "height-to-up-to-6m-cumulative-realized-profit" | "height-to-up-to-6m-halved-supply" | "height-to-lth-35p-price-paid" | "height-to-market-price-to-from-10y-to-15y-realized-price-ratio-0-1p" | "height-to-market-price-to-cointime-price-ratio-0-5p" | "height-to-fish-realized-cap-1m-net-change" | "height-to-liquid-realized-price-99p" | "height-to-year-2014-95p-price-paid" | "height-to-market-price-to-year-2009-realized-price-ratio-99p" | "height-to-year-2018-65p-price-paid" | "height-to-from-2y-input-count" | "height-to-up-to-1w-spent-output-profit-ratio" | "height-to-year-2020-30p-price-paid" | "height-to-from-1y-supply-in-profit-to-own-supply-ratio" | "height-to-market-price-to-up-to-3y-realized-price-ratio-99-9p" | "height-to-up-to-15y-05p-price-paid" | "height-to-p2wpkh-spent-output-profit-ratio" | "height-to-year-2019-input-volume" | "height-to-from-3m-to-6m-median-price-paid" | "height-to-illiquid-realized-cap" | "height-to-p2wpkh-90p-price-paid" | "height-to-market-price-to-year-2017-realized-price-ratio-0-1p" | "height-to-from-1w-to-1m-realized-profit" | "height-to-plankton-spent-output-profit-ratio" | "height-to-fish-85p-price-paid" | "height-to-from-15y-value-destroyed" | "height-to-from-7y-to-10y-realized-value" | "height-to-p2pk-65p-price-paid" | "height-to-whale-60p-price-paid" | "height-to-year-2021-55p-price-paid" | "height-to-fish-input-volume" | "height-to-from-1y-to-2y-halved-supply-to-circulating-supply-ratio" | "height-to-year-2014-median-price-paid" | "height-to-p2pk-60p-price-paid" | "height-to-up-to-2y-25p-price-paid" | "height-to-shark-15p-price-paid" | "height-to-market-price-to-plankton-realized-price-ratio-99-9p" | "height-to-p2wsh-median-price-paid" | "height-to-up-to-5y-halved-supply" | "height-to-up-to-5m-adjusted-spent-output-profit-ratio" | "height-to-up-to-6m-supply-in-profit-to-own-supply-ratio" | "height-to-year-2023-realized-loss" | "height-to-from-1m-to-3m-85p-price-paid" | "height-to-market-price-to-price-1y-sma-ratio" | "height-to-year-2016-40p-price-paid" | "height-to-from-1y-80p-price-paid" | "height-to-up-to-5m-input-volume" | "height-to-from-2y-to-3y-realized-price-99-9p" | "height-to-p2sh-45p-price-paid" | "height-to-sth-supply-to-circulating-supply-ratio" | "height-to-year-2022-unrealized-loss" | "height-to-year-2020-supply-in-loss-to-circulating-supply-ratio" | "height-to-market-price-to-year-2011-realized-price-ratio-1y-sma" | "height-to-market-price-to-p2wsh-realized-price-ratio-99-9p" | "height-to-market-price-to-realized-price-ratio-0-5p" | "height-to-up-to-1w-negative-unrealized-loss"; -export type LastPath = "supply-in-profit-to-own-supply-ratio" | "up-to-15y-realized-cap" | "up-to-3m-net-unrealized-profit-and-loss" | "up-to-5y-supply-to-circulating-supply-ratio" | "year-2013-supply-in-profit" | "from-10y-to-15y-realized-loss" | "from-2y-to-3y-halved-supply" | "market-price-to-p2wpkh-realized-price-ratio-1y-sma" | "p2sh-input-volume" | "p2wsh-45p-price-paid" | "up-to-5y-spent-output-profit-ratio" | "whale-unrealized-loss" | "p2wpkh-55p-price-paid" | "from-4y-60p-price-paid" | "shark-realized-profit" | "year-2009-realized-price-1p" | "year-2018-sell-side-risk-ratio" | "crab-address-count" | "year-2023-unrealized-profit" | "up-to-6m-realized-price-0-5p" | "market-price-to-illiquid-realized-price-ratio-0-1p" | "highly-liquid-unrealized-loss" | "total-cointime-value-destroyed" | "from-4y-value-destroyed" | "highly-liquid-65p-price-paid" | "up-to-15y-45p-price-paid" | "from-15y-realized-value" | "humpback-realized-price-0-5p" | "market-price-to-from-10y-to-15y-realized-price-ratio-1p" | "up-to-3y-realized-cap" | "year-2009-realized-cap-1m-net-change" | "year-2010-supply-in-profit-to-own-supply-ratio" | "year-2019-cumulative-realized-loss" | "fish-cumulative-net-realized-profit-and-loss" | "market-price-to-up-to-1d-realized-price-ratio-99p" | "p2pk-35p-price-paid" | "year-2014-90p-price-paid" | "year-2019-35p-price-paid" | "year-2023-supply-in-profit-to-circulating-supply-ratio" | "year-2023-value-destroyed" | "humpback-cumulative-realized-profit" | "market-price-to-whale-realized-price-ratio-1w-sma" | "p2pkh-utxo-count" | "liquid-input-volume" | "shrimp-net-realized-profit-and-loss-to-market-cap-ratio" | "hash-rate" | "year-2022-unrealized-profit" | "market-price-to-lth-realized-price-ratio-99p" | "up-to-5y-05p-price-paid" | "p2wsh-supply-in-profit" | "p2tr-cumulative-net-realized-profit-and-loss" | "year-2020-cumulative-realized-profit" | "from-1m-to-3m-supply-in-profit" | "from-5y-to-7y-20p-price-paid" | "market-price-to-plankton-realized-price-ratio-0-5p" | "up-to-3y-realized-price-0-5p" | "year-2015-65p-price-paid" | "year-2019-55p-price-paid" | "p2pk-supply-to-circulating-supply-ratio" | "year-2009-utxo-count" | "from-3m-to-6m-40p-price-paid" | "illiquid-40p-price-paid" | "illiquid-60p-price-paid" | "up-to-10y-utxo-count" | "from-1w-to-1m-net-realized-profit-and-loss-to-market-cap-ratio" | "plankton-30p-price-paid" | "year-2012-realized-profit" | "up-to-1y-80p-price-paid" | "year-2022-net-unrealized-profit-and-loss-to-market-cap-ratio" | "from-1d-to-1w-negative-realized-loss" | "from-5y-to-7y-realized-loss" | "price-4y-sma-0-5p" | "up-to-1m-realized-price-1p" | "up-to-10y-45p-price-paid" | "year-2016-30p-price-paid" | "illiquid-65p-price-paid" | "market-price-to-year-2018-realized-price-ratio-1p" | "year-2024-realized-loss" | "shark-unrealized-loss" | "up-to-10y-net-realized-profit-and-loss-to-market-cap-ratio" | "year-2014-80p-price-paid" | "from-5y-to-7y-realized-profit" | "year-2009-85p-price-paid" | "from-1y-to-2y-sell-side-risk-ratio" | "market-price-to-year-2023-realized-price-ratio" | "from-5y-to-7y-input-volume" | "from-7y-to-10y-85p-price-paid" | "from-1w-to-1m-supply" | "p2wsh-supply-in-loss" | "up-to-1d-95p-price-paid" | "up-to-6m-cumulative-net-realized-profit-and-loss-1m-net-change" | "whale-60p-price-paid" | "from-1y-to-2y-35p-price-paid" | "fish-realized-value" | "lth-realized-price-99p" | "year-2019-realized-price-1p" | "lth-net-realized-profit-and-loss" | "from-10y-supply-in-loss-to-own-supply-ratio" | "market-price-to-up-to-5y-realized-price-ratio-99p" | "market-price-to-from-6m-to-1y-realized-price-ratio-1m-sma" | "market-price-to-p2sh-realized-price-ratio-1y-sma-momentum-oscillator" | "market-price-to-price-1w-sma-ratio-99-9p" | "p2pk-realized-price-0-1p" | "market-price-to-highly-liquid-realized-price-ratio-1y-sma-momentum-oscillator" | "p2wsh-40p-price-paid" | "plankton-60p-price-paid" | "year-2011-spent-output-profit-ratio" | "plankton-95p-price-paid" | "year-2016-negative-unrealized-loss" | "from-7y-to-10y-75p-price-paid" | "year-2024-supply-in-profit-to-own-supply-ratio" | "market-price-to-vaulted-price-ratio-99-9p" | "year-2011-85p-price-paid" | "market-price-to-up-to-2m-realized-price-ratio-99-9p" | "up-to-7y-realized-price-99-5p" | "up-to-15y-realized-price-0-5p" | "year-2021-85p-price-paid" | "up-to-6m-85p-price-paid" | "liquid-25p-price-paid" | "market-price-to-from-3m-to-6m-realized-price-ratio-1m-sma" | "year-2023-unrealized-loss" | "market-price-to-price-21d-sma-ratio-1y-sma" | "market-price-to-price-21d-sma-ratio-99-5p" | "year-2012-realized-price-99p" | "market-price-to-megalodon-realized-price-ratio-99-5p" | "up-to-2y-supply" | "year-2014-70p-price-paid" | "from-2y-supply" | "market-price-to-year-2024-realized-price-ratio-1y-sma-momentum-oscillator" | "p2wpkh-95p-price-paid" | "from-2y-to-3y-cumulative-net-realized-profit-and-loss-1m-net-change" | "up-to-3m-negative-realized-loss" | "from-2y-median-price-paid" | "year-2013-cumulative-net-realized-profit-and-loss-1m-net-change" | "market-price-to-year-2012-realized-price-ratio-99-9p" | "price-1w-sma-0-5p" | "up-to-6m-30p-price-paid" | "up-to-2m-spent-output-profit-ratio" | "from-3y-to-5y-supply-in-loss-to-own-supply-ratio" | "market-price-to-from-1m-to-3m-realized-price-ratio-99-5p" | "cumulative-net-realized-profit-and-loss-1m-net-change" | "year-2015-95p-price-paid" | "year-2022-cumulative-realized-profit" | "price-1m-sma-1p" | "up-to-15y-halved-supply-to-circulating-supply-ratio" | "up-to-1m-95p-price-paid" | "up-to-1d-net-realized-profit-and-loss" | "from-1w-to-1m-realized-price" | "concurrent-liveliness" | "p2wpkh-supply-in-profit-to-own-supply-ratio" | "shrimp-realized-price-99-5p" | "year-2020-unrealized-loss" | "price-21d-sma" | "shark-address-count" | "year-2019-20p-price-paid" | "up-to-1w-10p-price-paid" | "year-2019-realized-price-0-5p" | "highly-liquid-net-unrealized-profit-and-loss" | "market-price-to-cointime-price-ratio-99-9p" | "year-2014-realized-profit" | "market-price-to-year-2022-realized-price-ratio-99-9p" | "year-2012-60p-price-paid" | "market-price-to-fish-realized-price-ratio-1y-sma" | "market-price-to-from-1m-to-3m-realized-price-ratio-1p" | "market-price-to-up-to-7y-realized-price-ratio-0-1p" | "year-2010-realized-price" | "from-10y-to-15y-supply" | "up-to-1w-25p-price-paid" | "from-10y-to-15y-cumulative-realized-profit" | "up-to-2m-30p-price-paid" | "up-to-2m-realized-price-99p" | "from-15y-median-price-paid" | "year-2015-35p-price-paid" | "p2wsh-supply-in-profit-to-own-supply-ratio" | "up-to-5y-55p-price-paid" | "market-price-to-year-2013-realized-price-ratio-1y-sma" | "from-3m-to-6m-supply" | "year-2018-supply-to-circulating-supply-ratio" | "year-2011-90p-price-paid" | "from-1y-55p-price-paid" | "from-2y-to-3y-40p-price-paid" | "year-2009-realized-profit" | "timestamp" | "year-2019-05p-price-paid" | "from-6m-to-1y-unrealized-loss" | "from-6m-to-1y-halved-supply-to-circulating-supply-ratio" | "transactions-per-second" | "year-2021-75p-price-paid" | "up-to-4m-80p-price-paid" | "market-price-to-from-10y-realized-price-ratio-99-9p" | "market-price-to-price-1y-sma-ratio-1p" | "from-6m-to-1y-sell-side-risk-ratio" | "from-1d-to-1w-25p-price-paid" | "whale-sell-side-risk-ratio" | "from-1y-cumulative-net-realized-profit-and-loss" | "plankton-supply-in-loss-to-circulating-supply-ratio" | "year-2024-realized-price-99p" | "lth-95p-price-paid" | "fish-cumulative-realized-profit" | "market-price-to-p2tr-realized-price-ratio-0-1p" | "market-price-to-year-2021-realized-price-ratio-0-1p" | "up-to-4m-realized-price-0-5p" | "market-price-to-price-4y-sma-ratio-1w-sma" | "year-2018-10p-price-paid" | "market-price-to-price-13d-sma-ratio-0-1p" | "market-price-to-price-8d-sma-ratio-99p" | "from-1y-supply-to-circulating-supply-ratio" | "market-price-to-price-200w-sma-ratio-99p" | "up-to-4m-supply-in-profit-to-own-supply-ratio" | "year-2014-net-realized-profit-and-loss" | "market-price-to-price-21d-sma-ratio-0-5p" | "from-6m-to-1y-cumulative-realized-profit" | "price-89d-sma-0-1p" | "year-2020-supply-in-loss-to-circulating-supply-ratio" | "year-2021-unrealized-loss" | "market-price-to-p2wpkh-realized-price-ratio-1m-sma" | "liquid-net-realized-profit-and-loss-to-market-cap-ratio" | "from-3y-to-5y-realized-profit" | "up-to-1m-unrealized-profit" | "price-21d-sma-0-1p" | "year-2021-realized-profit" | "year-2009-40p-price-paid" | "year-2017-10p-price-paid" | "humpback-negative-unrealized-loss" | "up-to-2y-90p-price-paid" | "market-price-to-humpback-realized-price-ratio-1y-sma-momentum-oscillator" | "year-2013-realized-profit" | "up-to-2m-90p-price-paid" | "up-to-3y-net-unrealized-profit-and-loss" | "p2wsh-realized-price-0-5p" | "year-2018-85p-price-paid" | "year-2015-realized-price-99-9p" | "market-price-to-p2wpkh-realized-price-ratio-99p" | "up-to-15y-realized-profit" | "transaction-volume-1w-sma" | "year-2023-value-created" | "shark-10p-price-paid" | "p2wsh-unrealized-profit" | "year-2024-cumulative-realized-loss" | "liquid-65p-price-paid" | "illiquid-address-count" | "market-price-to-year-2011-realized-price-ratio-99p" | "from-5y-to-7y-supply-in-profit" | "whale-input-count" | "p2tr-25p-price-paid" | "market-price-to-from-3y-to-5y-realized-price-ratio-99-9p" | "from-10y-to-15y-supply-in-profit" | "year-2017-supply-in-loss-to-own-supply-ratio" | "illiquid-cumulative-realized-profit" | "shark-realized-cap-1m-net-change" | "price-4y-sma" | "from-15y-95p-price-paid" | "market-price-to-illiquid-realized-price-ratio-1y-sma-momentum-oscillator" | "liquid-spent-output-profit-ratio" | "price-144d-sma-99p" | "up-to-5y-realized-loss" | "up-to-6m-supply-in-loss" | "year-2020-35p-price-paid" | "year-2023-input-count" | "year-2014-median-price-paid" | "up-to-7y-net-unrealized-profit-and-loss-to-market-cap-ratio" | "market-price-to-price-34d-sma-ratio-1y-sma-momentum-oscillator" | "illiquid-supply" | "market-price-to-from-6m-to-1y-realized-price-ratio" | "up-to-7y-cumulative-net-realized-profit-and-loss-1m-net-change" | "shark-supply-to-circulating-supply-ratio" | "year-2009-cumulative-net-realized-profit-and-loss-1m-net-change" | "illiquid-realized-price-99p" | "from-1d-to-1w-input-count" | "from-6m-to-1y-supply-in-loss-to-circulating-supply-ratio" | "last-subsidy" | "megalodon-spent-output-profit-ratio" | "year-2011-realized-value" | "market-price-to-from-1w-to-1m-realized-price-ratio-99-5p" | "market-price-to-p2pkh-realized-price-ratio-99-5p" | "p2tr-supply-in-profit-to-circulating-supply-ratio" | "year-2009-unrealized-profit" | "highly-liquid-utxo-count" | "year-2010-realized-price-99-9p" | "highly-liquid-60p-price-paid" | "year-2019-spent-output-profit-ratio" | "up-to-7y-65p-price-paid" | "highly-liquid-75p-price-paid" | "from-1d-to-1w-05p-price-paid" | "from-10y-45p-price-paid" | "from-10y-to-15y-halved-supply-to-circulating-supply-ratio" | "up-to-1y-input-volume" | "realized-price-99p" | "whale-realized-cap-1m-net-change" | "up-to-2m-realized-cap-1m-net-change" | "up-to-2m-supply-in-profit" | "from-10y-to-15y-supply-in-loss-to-own-supply-ratio" | "from-1y-realized-cap" | "from-3m-to-6m-input-volume" | "from-3y-to-5y-supply-to-circulating-supply-ratio" | "market-price-to-up-to-10y-realized-price-ratio-1y-sma-momentum-oscillator" | "market-price-to-price-8d-sma-ratio-0-5p" | "price-13d-sma-99p" | "shark-negative-unrealized-loss" | "highly-liquid-input-count" | "up-to-2y-median-price-paid" | "year-2012-net-unrealized-profit-and-loss-to-market-cap-ratio" | "active-supply-3m-net-change" | "p2pk-realized-profit" | "from-3m-to-6m-realized-price-0-5p" | "up-to-10y-supply-in-loss-to-circulating-supply-ratio" | "up-to-3y-05p-price-paid" | "liquid-realized-price-99p" | "up-to-4m-15p-price-paid" | "market-price-to-from-1m-to-3m-realized-price-ratio-1y-sma" | "up-to-1y-net-unrealized-profit-and-loss-to-market-cap-ratio" | "from-1w-to-1m-realized-price-1p" | "from-1d-to-1w-90p-price-paid" | "price-144d-sma-99-9p" | "up-to-1m-supply-in-loss" | "from-3m-to-6m-45p-price-paid" | "market-price-to-from-1y-realized-price-ratio-0-1p" | "market-price-to-up-to-5m-realized-price-ratio-1p" | "year-2019-80p-price-paid" | "megalodon-80p-price-paid" | "market-price-to-from-10y-to-15y-realized-price-ratio-1w-sma" | "year-2012-70p-price-paid" | "year-2019-supply-in-loss" | "year-2020-20p-price-paid" | "market-price-to-year-2013-realized-price-ratio-1y-sma-momentum-oscillator" | "p2wpkh-realized-cap-1m-net-change" | "up-to-15y-realized-loss" | "year-2010-20p-price-paid" | "p2pkh-10p-price-paid" | "p2wpkh-realized-price-0-5p" | "year-2016-realized-price-0-5p" | "from-7y-to-10y-realized-price-0-1p" | "from-10y-supply" | "year-2010-05p-price-paid" | "up-to-15y-85p-price-paid" | "lth-30p-price-paid" | "market-price-to-up-to-5m-realized-price-ratio-0-1p" | "up-to-3y-realized-price-0-1p" | "from-10y-median-price-paid" | "lth-negative-unrealized-loss" | "up-to-2y-input-count" | "from-2y-realized-price-99p" | "humpback-supply-in-loss-to-own-supply-ratio" | "from-10y-to-15y-utxo-count" | "up-to-1w-sell-side-risk-ratio" | "from-1y-to-2y-20p-price-paid" | "up-to-4m-halved-supply-to-circulating-supply-ratio" | "year-2016-realized-value" | "market-price-to-year-2020-realized-price-ratio-1p" | "true-market-net-unrealized-profit-and-loss" | "p2pkh-cumulative-realized-loss" | "year-2021-net-realized-profit-and-loss-to-market-cap-ratio" | "from-7y-to-10y-halved-supply-to-circulating-supply-ratio" | "up-to-6m-halved-supply" | "market-price-to-up-to-5y-realized-price-ratio-0-1p" | "year-2011-20p-price-paid" | "p2wpkh-10p-price-paid" | "up-to-5y-net-realized-profit-and-loss" | "from-10y-to-15y-realized-price-0-5p" | "from-4y-25p-price-paid" | "illiquid-net-realized-profit-and-loss-to-market-cap-ratio" | "market-price-to-up-to-1y-realized-price-ratio-1m-sma" | "up-to-2y-unrealized-loss" | "market-price-to-price-144d-sma-ratio-99-9p" | "liquid-cumulative-realized-loss" | "up-to-6m-10p-price-paid" | "whale-20p-price-paid" | "from-1m-to-3m-cumulative-realized-profit" | "from-1y-to-2y-unrealized-loss" | "market-price-to-from-4y-realized-price-ratio-99p" | "up-to-1d-realized-price-0-5p" | "year-2015-realized-price-99p" | "crab-70p-price-paid" | "from-1y-75p-price-paid" | "from-6m-to-1y-realized-profit" | "year-2014-55p-price-paid" | "year-2014-input-volume" | "up-to-1d-supply" | "illiquid-cumulative-realized-loss" | "market-price-to-year-2017-realized-price-ratio-1m-sma" | "p2tr-35p-price-paid" | "market-price-to-from-3y-to-5y-realized-price-ratio-1p" | "market-price-to-up-to-15y-realized-price-ratio-1m-sma" | "from-3m-to-6m-65p-price-paid" | "up-to-1y-net-unrealized-profit-and-loss" | "year-2014-realized-price-0-1p" | "up-to-1d-input-volume" | "from-4y-realized-price" | "from-3m-to-6m-negative-unrealized-loss" | "highly-liquid-realized-price-99p" | "block-interval-1d-75p" | "market-price-to-crab-realized-price-ratio-1m-sma" | "p2sh-negative-unrealized-loss" | "market-price-to-year-2022-realized-price-ratio-1p" | "from-10y-realized-cap-1m-net-change" | "from-1w-to-1m-cumulative-realized-loss" | "market-price-to-up-to-3m-realized-price-ratio-1w-sma" | "p2pk-20p-price-paid" | "p2tr-utxo-count" | "p2wsh-value-destroyed" | "from-2y-to-3y-75p-price-paid" | "whale-45p-price-paid" | "year-2021-70p-price-paid" | "year-2021-supply" | "from-2y-to-3y-70p-price-paid" | "from-10y-supply-in-profit" | "year-2019-75p-price-paid" | "year-2023-spent-output-profit-ratio" | "year-2022-20p-price-paid" | "vaulted-supply-net-change" | "up-to-3m-net-realized-profit-and-loss" | "plankton-realized-cap-1m-net-change" | "from-1y-to-2y-realized-price-99-9p" | "up-to-15y-realized-value" | "up-to-1m-realized-price-0-1p" | "year-2024-realized-price-1p" | "market-price-to-year-2022-realized-price-ratio-1y-sma-momentum-oscillator" | "transaction-volume-in-dollars" | "from-5y-to-7y-realized-cap-1m-net-change" | "market-price-to-year-2009-realized-price-ratio-1w-sma" | "fish-realized-price-0-1p" | "up-to-7y-15p-price-paid" | "year-2015-realized-loss" | "up-to-1w-net-unrealized-profit-and-loss" | "p2tr-90p-price-paid" | "from-3m-to-6m-supply-in-profit" | "year-2020-median-price-paid" | "from-6m-to-1y-supply" | "shark-supply-in-profit" | "year-2011-cumulative-realized-profit" | "market-price-to-shrimp-realized-price-ratio-99p" | "crab-negative-realized-loss" | "market-price-to-year-2022-realized-price-ratio-99p" | "from-1y-to-2y-supply-in-profit-to-own-supply-ratio" | "year-2014-cumulative-realized-loss" | "from-1y-to-2y-halved-supply" | "from-1m-to-3m-cumulative-realized-loss" | "lth-input-count" | "humpback-realized-price-99-5p" | "market-price-to-year-2017-realized-price-ratio-1p" | "market-price-to-price-21d-sma-ratio-99p" | "market-price-to-year-2018-realized-price-ratio-1y-sma-momentum-oscillator" | "p2wsh-supply" | "from-10y-unrealized-loss" | "from-3m-to-6m-unrealized-loss" | "from-3y-to-5y-65p-price-paid" | "illiquid-halved-supply" | "plankton-realized-price-99-9p" | "plankton-supply-in-loss" | "year-2015-net-realized-profit-and-loss-to-market-cap-ratio" | "year-2018-supply-in-loss-to-own-supply-ratio" | "from-5y-to-7y-supply-to-circulating-supply-ratio" | "year-2022-cumulative-net-realized-profit-and-loss" | "block-interval-1d-min" | "year-2013-median-price-paid" | "market-price-to-price-13d-sma-ratio-99-9p" | "year-2024-05p-price-paid" | "year-2016-realized-price" | "from-1m-to-3m-negative-realized-loss" | "lth-unrealized-profit" | "up-to-10y-10p-price-paid" | "market-price-to-year-2017-realized-price-ratio-0-5p" | "market-price-to-lth-realized-price-ratio-99-9p" | "market-price-to-shrimp-realized-price-ratio-1y-sma" | "market-price-to-from-10y-realized-price-ratio-1w-sma" | "up-to-15y-realized-price-99p" | "year-2012-30p-price-paid" | "year-2018-realized-value" | "market-price-to-up-to-3y-realized-price-ratio" | "year-2012-sell-side-risk-ratio" | "market-price-to-illiquid-realized-price-ratio-99p" | "megalodon-halved-supply-to-circulating-supply-ratio" | "highly-liquid-supply-in-profit-to-circulating-supply-ratio" | "market-price-to-megalodon-realized-price-ratio-1p" | "year-2021-unrealized-profit" | "market-price-to-year-2018-realized-price-ratio" | "market-price-to-up-to-7y-realized-price-ratio-1m-sma" | "p2pkh-realized-price-99-5p" | "from-1y-to-2y-10p-price-paid" | "market-price-to-year-2015-realized-price-ratio-99-9p" | "net-unrealized-profit-and-loss" | "up-to-1d-realized-value" | "up-to-2m-unrealized-loss" | "from-5y-to-7y-sell-side-risk-ratio" | "from-15y-supply-in-loss-to-circulating-supply-ratio" | "illiquid-realized-cap" | "up-to-15y-supply-in-loss-to-own-supply-ratio" | "year-2019-halved-supply-to-circulating-supply-ratio" | "year-2020-realized-loss" | "market-price-to-up-to-3y-realized-price-ratio-1y-sma-momentum-oscillator" | "from-1m-to-3m-realized-loss" | "up-to-15y-15p-price-paid" | "from-3m-to-6m-80p-price-paid" | "year-2015-sell-side-risk-ratio" | "year-2023-05p-price-paid" | "from-2y-to-3y-cumulative-realized-loss" | "humpback-value-created" | "from-7y-to-10y-10p-price-paid" | "market-price-to-fish-realized-price-ratio-1p" | "year-2015-supply-in-profit-to-own-supply-ratio" | "market-price-to-true-market-mean-ratio-1p" | "up-to-1y-realized-loss" | "up-to-1w-95p-price-paid" | "year-2013-95p-price-paid" | "from-3m-to-6m-supply-in-loss-to-own-supply-ratio" | "from-5y-to-7y-supply-in-profit-to-circulating-supply-ratio" | "from-6m-to-1y-median-price-paid" | "negative-realized-loss" | "up-to-7y-halved-supply-to-circulating-supply-ratio" | "year-2016-supply-in-loss" | "market-price-to-year-2020-realized-price-ratio-1y-sma" | "from-2y-cumulative-net-realized-profit-and-loss-1m-net-change" | "up-to-15y-cumulative-net-realized-profit-and-loss-1m-net-change" | "up-to-4m-net-realized-profit-and-loss" | "market-price-to-year-2016-realized-price-ratio-99-5p" | "p2pk-address-count" | "year-2019-realized-cap" | "year-2012-realized-price-99-5p" | "market-price-to-lth-realized-price-ratio-0-1p" | "market-price-to-from-6m-to-1y-realized-price-ratio-1p" | "year-2010-supply-in-loss" | "market-price-to-price-89d-sma-ratio-99-5p" | "market-price-to-up-to-1y-realized-price-ratio-1p" | "blocks-mined" | "price-34d-sma-99-5p" | "up-to-2y-utxo-count" | "from-7y-to-10y-net-realized-profit-and-loss" | "from-3y-to-5y-75p-price-paid" | "from-2y-realized-profit" | "shark-65p-price-paid" | "up-to-5m-value-destroyed" | "illiquid-80p-price-paid" | "p2tr-65p-price-paid" | "up-to-3y-negative-realized-loss" | "year-2015-negative-unrealized-loss" | "year-2017-55p-price-paid" | "p2wpkh-45p-price-paid" | "up-to-5m-cumulative-net-realized-profit-and-loss" | "year-2023-cumulative-net-realized-profit-and-loss-1m-net-change" | "market-price-to-year-2018-realized-price-ratio-99-9p" | "up-to-3y-supply-in-loss-to-own-supply-ratio" | "year-2011-realized-price-0-1p" | "year-2023-realized-price-0-5p" | "market-price-to-price-1m-sma-ratio-1m-sma" | "year-2016-realized-price-1p" | "year-2017-sell-side-risk-ratio" | "market-price-to-year-2014-realized-price-ratio-1y-sma" | "year-2015-70p-price-paid" | "market-price-to-lth-realized-price-ratio-1p" | "liveliness" | "p2wsh-halved-supply-to-circulating-supply-ratio" | "market-price-to-up-to-7y-realized-price-ratio-99p" | "from-1y-cumulative-realized-profit" | "p2pkh-net-realized-profit-and-loss" | "p2wsh-unrealized-loss" | "up-to-5y-realized-profit" | "up-to-6m-realized-value" | "lth-10p-price-paid" | "sth-realized-price-99-5p" | "market-price-to-up-to-2y-realized-price-ratio-1w-sma" | "market-price-to-year-2023-realized-price-ratio-1w-sma" | "fees-in-dollars" | "95p-price-paid" | "plankton-cumulative-realized-profit" | "up-to-10y-55p-price-paid" | "from-1w-to-1m-80p-price-paid" | "market-price-to-price-1m-sma-ratio-0-5p" | "year-2015-unrealized-loss" | "from-2y-halved-supply-to-circulating-supply-ratio" | "from-6m-to-1y-90p-price-paid" | "from-4y-75p-price-paid" | "market-price-to-shark-realized-price-ratio-1m-sma" | "crab-realized-price-99-9p" | "sth-55p-price-paid" | "year-2012-supply-in-loss" | "year-2021-90p-price-paid" | "up-to-5m-45p-price-paid" | "from-2y-to-3y-net-unrealized-profit-and-loss" | "megalodon-realized-price" | "price-55d-sma-0-1p" | "year-2009-halved-supply" | "year-2017-80p-price-paid" | "up-to-3m-25p-price-paid" | "p2wpkh-realized-profit" | "market-price-to-shark-realized-price-ratio-1p" | "active-price-0-1p" | "cointime-price-1p" | "lth-halved-supply" | "highly-liquid-05p-price-paid" | "sth-input-volume" | "year-2022-realized-price-99-5p" | "0" | "up-to-3y-net-realized-profit-and-loss-to-market-cap-ratio" | "market-price-to-price-200w-sma-ratio-1m-sma" | "market-price-to-price-144d-sma-ratio-0-1p" | "from-5y-to-7y-70p-price-paid" | "market-price-to-price-1w-sma-ratio-1m-sma" | "from-1y-to-2y-65p-price-paid" | "up-to-15y-75p-price-paid" | "year-2017-realized-loss" | "liquid-20p-price-paid" | "up-to-1y-median-price-paid" | "humpback-25p-price-paid" | "up-to-1m-realized-cap" | "whale-40p-price-paid" | "year-2021-median-price-paid" | "year-2012-halved-supply-to-circulating-supply-ratio" | "up-to-3y-85p-price-paid" | "p2wpkh-address-count" | "market-price-to-from-3y-to-5y-realized-price-ratio-1m-sma" | "liquid-negative-realized-loss" | "market-price-to-year-2012-realized-price-ratio-0-1p" | "year-2024-halved-supply" | "p2wsh-utxo-count" | "from-1m-to-3m-40p-price-paid" | "from-2y-to-3y-supply-in-profit-to-circulating-supply-ratio" | "lth-60p-price-paid" | "up-to-15y-net-realized-profit-and-loss-to-market-cap-ratio" | "from-1w-to-1m-realized-value" | "from-1m-to-3m-60p-price-paid" | "from-1y-to-2y-supply-in-loss-to-own-supply-ratio" | "whale-30p-price-paid" | "true-market-deviation" | "up-to-6m-supply-in-profit-to-own-supply-ratio" | "megalodon-realized-cap" | "from-10y-to-15y-net-realized-profit-and-loss" | "market-price-to-year-2013-realized-price-ratio-99-5p" | "up-to-2m-cumulative-realized-profit" | "lth-55p-price-paid" | "price-1m-sma-0-1p" | "utxo-count" | "market-price-to-price-55d-sma-ratio-1y-sma" | "illiquid-supply-in-loss-to-circulating-supply-ratio" | "up-to-10y-95p-price-paid" | "whale-address-count" | "market-price-to-price-1y-sma-ratio" | "from-4y-55p-price-paid" | "market-price-to-up-to-2y-realized-price-ratio-99-9p" | "market-price-to-year-2013-realized-price-ratio-99-9p" | "market-price-to-from-3m-to-6m-realized-price-ratio-1y-sma" | "p2wsh-realized-value" | "sth-halved-supply-to-circulating-supply-ratio" | "up-to-1y-10p-price-paid" | "p2pk-negative-unrealized-loss" | "market-price-to-megalodon-realized-price-ratio-0-5p" | "up-to-1y-net-realized-profit-and-loss-to-market-cap-ratio" | "from-10y-to-15y-45p-price-paid" | "humpback-net-unrealized-profit-and-loss-to-market-cap-ratio" | "up-to-2m-input-volume" | "up-to-5y-supply" | "year-2016-input-count" | "year-2018-90p-price-paid" | "p2pkh-supply-to-circulating-supply-ratio" | "up-to-3m-supply-in-profit" | "year-2019-15p-price-paid" | "year-2017-65p-price-paid" | "from-2y-to-3y-05p-price-paid" | "market-price-to-year-2022-realized-price-ratio" | "crab-realized-price-1p" | "from-1m-to-3m-realized-price-99-5p" | "up-to-7y-cumulative-realized-loss" | "year-2015-utxo-count" | "shark-05p-price-paid" | "year-2012-75p-price-paid" | "year-2013-halved-supply-to-circulating-supply-ratio" | "market-price-to-year-2019-realized-price-ratio-1y-sma" | "market-price-to-year-2019-realized-price-ratio-99-5p" | "highly-liquid-net-unrealized-profit-and-loss-to-market-cap-ratio" | "shark-20p-price-paid" | "up-to-1m-supply-to-circulating-supply-ratio" | "market-price-to-from-3m-to-6m-realized-price-ratio-99p" | "p2wpkh-cumulative-realized-loss" | "year-2018-value-destroyed" | "crab-supply-in-loss-to-own-supply-ratio" | "from-1y-realized-profit" | "market-price-to-from-7y-to-10y-realized-price-ratio-99-9p" | "market-price-to-illiquid-realized-price-ratio-99-5p" | "market-price-to-sth-realized-price-ratio-99p" | "up-to-1w-90p-price-paid" | "market-price-to-whale-realized-price-ratio-0-1p" | "year-2011-supply" | "market-price-to-from-6m-to-1y-realized-price-ratio-99-5p" | "crab-halved-supply" | "from-1w-to-1m-cumulative-net-realized-profit-and-loss-1m-net-change" | "year-2022-80p-price-paid" | "from-1d-to-1w-halved-supply" | "from-6m-to-1y-realized-price" | "market-price-to-p2pk-realized-price-ratio-1w-sma" | "from-4y-supply-in-profit" | "from-1m-to-3m-55p-price-paid" | "year-2014-65p-price-paid" | "market-price-to-crab-realized-price-ratio-1y-sma" | "year-2011-55p-price-paid" | "market-price-to-liquid-realized-price-ratio-1y-sma-momentum-oscillator" | "year-2017-input-count" | "price-1y-sma" | "up-to-1w-15p-price-paid" | "up-to-6m-cumulative-net-realized-profit-and-loss" | "year-2024-40p-price-paid" | "from-1y-to-2y-spent-output-profit-ratio" | "market-price-to-p2pkh-realized-price-ratio-0-5p" | "p2tr-sell-side-risk-ratio" | "transactions-per-second-1w-sma" | "market-price-to-up-to-1d-realized-price-ratio-1y-sma" | "liquid-60p-price-paid" | "market-price-to-shark-realized-price-ratio" | "year-2010-spent-output-profit-ratio" | "from-15y-sell-side-risk-ratio" | "highly-liquid-realized-value" | "highly-liquid-35p-price-paid" | "sth-realized-price-99p" | "year-2010-supply-in-profit-to-circulating-supply-ratio" | "from-15y-05p-price-paid" | "liquid-input-count" | "up-to-6m-unrealized-profit" | "market-price-to-price-55d-sma-ratio-0-5p" | "fish-05p-price-paid" | "from-7y-to-10y-realized-price-1p" | "p2pk-25p-price-paid" | "p2wpkh-value-destroyed" | "up-to-5y-80p-price-paid" | "up-to-15y-realized-price-1p" | "market-price-to-year-2012-realized-price-ratio-1y-sma" | "sth-utxo-count" | "market-price-to-from-1d-to-1w-realized-price-ratio-99p" | "market-price-to-from-1w-to-1m-realized-price-ratio-0-5p" | "from-10y-to-15y-15p-price-paid" | "market-price-to-p2wsh-realized-price-ratio-1p" | "from-1y-spent-output-profit-ratio" | "up-to-2y-supply-in-profit-to-own-supply-ratio" | "whale-input-volume" | "megalodon-halved-supply" | "year-2012-realized-price-99-9p" | "from-10y-to-15y-net-realized-profit-and-loss-to-market-cap-ratio" | "from-3y-to-5y-35p-price-paid" | "up-to-5y-cumulative-realized-loss" | "year-2017-supply-in-profit" | "year-2018-65p-price-paid" | "price" | "market-price-to-from-6m-to-1y-realized-price-ratio-1y-sma-momentum-oscillator" | "block-weight-1d-max" | "market-price-to-p2wsh-realized-price-ratio-99p" | "from-3y-to-5y-net-unrealized-profit-and-loss" | "from-7y-to-10y-realized-price-99-9p" | "up-to-6m-65p-price-paid" | "from-2y-55p-price-paid" | "market-price-to-price-2y-sma-ratio-99-5p" | "market-price-to-price-55d-sma-ratio-1y-sma-momentum-oscillator" | "up-to-4m-value-destroyed" | "lth-45p-price-paid" | "market-price-to-liquid-realized-price-ratio-1w-sma" | "up-to-5y-halved-supply" | "crab-realized-price-99-5p" | "from-1y-to-2y-supply" | "year-2022-unrealized-loss" | "from-10y-realized-price-1p" | "price-13d-sma-99-9p" | "from-3y-to-5y-supply-in-loss-to-circulating-supply-ratio" | "up-to-5y-supply-in-loss-to-own-supply-ratio" | "whale-net-unrealized-profit-and-loss-to-market-cap-ratio" | "market-price-to-up-to-1d-realized-price-ratio-1y-sma-momentum-oscillator" | "market-price-to-up-to-1y-realized-price-ratio-99-5p" | "market-price-to-year-2013-realized-price-ratio" | "up-to-3m-supply" | "90p-price-paid" | "market-price-to-up-to-10y-realized-price-ratio-0-1p" | "market-price-to-from-4y-realized-price-ratio-1y-sma-momentum-oscillator" | "market-price-to-price-1y-sma-ratio-1y-sma" | "from-2y-to-3y-80p-price-paid" | "market-price-to-from-2y-to-3y-realized-price-ratio-99-9p" | "year-2020-input-volume" | "p2pk-realized-loss" | "up-to-1y-negative-realized-loss" | "market-price-to-year-2019-realized-price-ratio-99-9p" | "year-2022-negative-unrealized-loss" | "median-price-paid" | "from-3m-to-6m-realized-cap" | "price-55d-sma" | "year-2021-cumulative-realized-loss" | "year-2019-realized-price-99-9p" | "from-1d-to-1w-unrealized-loss" | "10p-price-paid" | "from-4y-supply-to-circulating-supply-ratio" | "year-2017-realized-price-99p" | "from-2y-90p-price-paid" | "year-2009-median-price-paid" | "megalodon-65p-price-paid" | "year-2022-30p-price-paid" | "market-price-to-from-2y-to-3y-realized-price-ratio-0-5p" | "market-price-to-up-to-1d-realized-price-ratio-1m-sma" | "from-15y-realized-price-0-1p" | "from-7y-to-10y-utxo-count" | "market-price-to-up-to-3m-realized-price-ratio-1p" | "fish-70p-price-paid" | "market-price-to-sth-realized-price-ratio-0-1p" | "shrimp-supply-in-loss" | "humpback-60p-price-paid" | "up-to-1y-cumulative-realized-loss" | "year-2010-input-count" | "from-2y-to-3y-realized-price-0-1p" | "market-price-to-up-to-1y-realized-price-ratio-1y-sma" | "market-price-to-vaulted-price-ratio-99-5p" | "p2pkh-supply-in-profit-to-own-supply-ratio" | "year-2012-net-realized-profit-and-loss-to-market-cap-ratio" | "year-2019-supply-in-profit" | "up-to-5y-35p-price-paid" | "from-1y-90p-price-paid" | "crab-value-destroyed" | "shrimp-05p-price-paid" | "up-to-5y-10p-price-paid" | "market-price-to-from-2y-realized-price-ratio-0-1p" | "fish-supply-in-loss-to-own-supply-ratio" | "up-to-3y-median-price-paid" | "year-2012-spent-output-profit-ratio" | "sth-supply-in-profit-to-circulating-supply-ratio" | "market-price-to-year-2011-realized-price-ratio-1m-sma" | "year-2024-unrealized-profit" | "from-1d-to-1w-net-unrealized-profit-and-loss" | "from-1y-median-price-paid" | "up-to-4m-unrealized-loss" | "p2sh-supply-in-profit-to-circulating-supply-ratio" | "year-2014-supply-in-profit" | "year-2013-realized-price-99p" | "liquid-cumulative-realized-profit" | "highly-liquid-cumulative-realized-loss" | "year-2012-realized-cap-1m-net-change" | "market-price-to-price-89d-sma-ratio-1m-sma" | "from-1y-value-created" | "market-price-to-up-to-1w-realized-price-ratio-0-1p" | "megalodon-supply-in-profit-to-own-supply-ratio" | "up-to-5m-supply-in-loss-to-circulating-supply-ratio" | "up-to-2m-40p-price-paid" | "illiquid-median-price-paid" | "vaulted-price-99p" | "year-2018-realized-loss" | "market-price-to-cointime-price-ratio" | "from-7y-to-10y-negative-realized-loss" | "up-to-1w-halved-supply-to-circulating-supply-ratio" | "shrimp-sell-side-risk-ratio" | "up-to-1y-net-realized-profit-and-loss" | "from-1y-70p-price-paid" | "year-2019-sell-side-risk-ratio" | "from-1w-to-1m-median-price-paid" | "up-to-2y-85p-price-paid" | "year-2022-65p-price-paid" | "illiquid-supply-in-profit" | "year-2019-value-destroyed" | "up-to-3y-90p-price-paid" | "55p-price-paid" | "from-3m-to-6m-95p-price-paid" | "liquid-net-realized-profit-and-loss" | "market-price-to-from-10y-to-15y-realized-price-ratio-99-9p" | "up-to-3y-input-count" | "up-to-5y-cumulative-net-realized-profit-and-loss" | "plankton-input-volume" | "up-to-15y-unrealized-profit" | "year-2015-realized-cap-1m-net-change" | "market-price-to-from-1w-to-1m-realized-price-ratio-1p" | "market-price-to-shark-realized-price-ratio-1y-sma" | "from-3y-to-5y-net-realized-profit-and-loss" | "market-price-to-up-to-6m-realized-price-ratio-1m-sma" | "shrimp-supply-in-profit-to-own-supply-ratio" | "market-price-to-p2sh-realized-price-ratio-1m-sma" | "true-market-mean" | "from-7y-to-10y-70p-price-paid" | "market-price-to-crab-realized-price-ratio-1w-sma" | "megalodon-15p-price-paid" | "up-to-15y-supply-in-profit" | "up-to-1w-unrealized-profit" | "market-price-to-megalodon-realized-price-ratio-0-1p" | "up-to-3m-realized-price-1p" | "year-2012-cumulative-net-realized-profit-and-loss-1m-net-change" | "whale-value-destroyed" | "year-2013-05p-price-paid" | "year-2019-85p-price-paid" | "year-2022-net-unrealized-profit-and-loss" | "up-to-3y-45p-price-paid" | "market-price-to-up-to-5m-realized-price-ratio-1m-sma" | "from-1w-to-1m-70p-price-paid" | "vaulted-price-0-1p" | "year-2022-realized-price-99-9p" | "market-price-to-from-2y-to-3y-realized-price-ratio-1m-sma" | "from-1y-to-2y-halved-supply-to-circulating-supply-ratio" | "year-2018-net-realized-profit-and-loss-to-market-cap-ratio" | "up-to-6m-net-realized-profit-and-loss" | "up-to-1m-realized-cap-1m-net-change" | "year-2009-supply-to-circulating-supply-ratio" | "from-2y-value-created" | "from-1m-to-3m-45p-price-paid" | "shark-70p-price-paid" | "year-2010-cumulative-net-realized-profit-and-loss-1m-net-change" | "year-2017-40p-price-paid" | "from-4y-10p-price-paid" | "from-2y-to-3y-negative-realized-loss" | "market-price-to-price-13d-sma-ratio-1p" | "p2wsh-supply-to-circulating-supply-ratio" | "market-price-to-up-to-15y-realized-price-ratio-99-9p" | "year-2019-net-realized-profit-and-loss-to-market-cap-ratio" | "up-to-1d-cumulative-net-realized-profit-and-loss" | "from-3m-to-6m-05p-price-paid" | "from-6m-to-1y-supply-in-profit-to-circulating-supply-ratio" | "from-1d-to-1w-realized-price-99p" | "from-15y-supply-in-loss-to-own-supply-ratio" | "market-price-to-p2pkh-realized-price-ratio-1y-sma" | "up-to-1d-supply-in-loss" | "from-1d-to-1w-30p-price-paid" | "market-price-to-vaulted-price-ratio-1p" | "up-to-2m-cumulative-net-realized-profit-and-loss-1m-net-change" | "shrimp-realized-price-0-1p" | "up-to-1d-negative-unrealized-loss" | "market-price-to-p2wsh-realized-price-ratio-0-1p" | "up-to-4m-realized-cap" | "from-10y-realized-price-0-1p" | "market-price-to-p2tr-realized-price-ratio-1y-sma-momentum-oscillator" | "megalodon-unrealized-loss" | "up-to-4m-realized-price-99p" | "up-to-6m-spent-output-profit-ratio" | "up-to-7y-55p-price-paid" | "fish-25p-price-paid" | "market-price-to-year-2016-realized-price-ratio-1y-sma-momentum-oscillator" | "market-price-to-price-144d-sma-ratio-1p" | "year-2009-65p-price-paid" | "market-price-to-up-to-15y-realized-price-ratio-99p" | "market-price-to-whale-realized-price-ratio-99p" | "plankton-realized-price-0-5p" | "year-2022-75p-price-paid" | "year-2023-supply-in-profit" | "whale-spent-output-profit-ratio" | "lth-halved-supply-to-circulating-supply-ratio" | "p2pk-utxo-count" | "p2wsh-60p-price-paid" | "year-2012-net-unrealized-profit-and-loss" | "year-2013-net-realized-profit-and-loss" | "year-2022-supply-in-loss" | "up-to-3m-realized-price-0-1p" | "up-to-2y-95p-price-paid" | "from-1d-to-1w-median-price-paid" | "up-to-3m-net-realized-profit-and-loss-to-market-cap-ratio" | "from-1d-to-1w-negative-unrealized-loss" | "shrimp-45p-price-paid" | "price-13d-sma" | "year-2009-70p-price-paid" | "from-1y-to-2y-negative-realized-loss" | "market-price-to-year-2012-realized-price-ratio-1p" | "year-2017-median-price-paid" | "p2wpkh-realized-value" | "year-2011-negative-realized-loss" | "shrimp-cumulative-net-realized-profit-and-loss" | "market-price-to-year-2009-realized-price-ratio-99-5p" | "from-7y-to-10y-input-volume" | "plankton-halved-supply" | "from-5y-to-7y-75p-price-paid" | "from-10y-realized-price-0-5p" | "market-price-to-year-2015-realized-price-ratio-1p" | "year-2009-95p-price-paid" | "p2wsh-address-count" | "year-2019-70p-price-paid" | "up-to-1w-net-realized-profit-and-loss-to-market-cap-ratio" | "up-to-3m-70p-price-paid" | "market-price-to-from-15y-realized-price-ratio-1p" | "market-price-to-from-7y-to-10y-realized-price-ratio-1p" | "liquid-halved-supply-to-circulating-supply-ratio" | "market-price-to-year-2021-realized-price-ratio-1p" | "market-price-to-up-to-2m-realized-price-ratio-0-1p" | "up-to-1d-35p-price-paid" | "from-1y-realized-cap-1m-net-change" | "p2pk-supply-in-loss" | "p2pkh-realized-loss" | "from-3y-to-5y-realized-price-0-5p" | "from-15y-realized-price-99-5p" | "year-2009-negative-realized-loss" | "up-to-1y-cumulative-net-realized-profit-and-loss-1m-net-change" | "from-1d-to-1w-supply-in-profit" | "up-to-10y-60p-price-paid" | "year-2018-realized-price" | "from-10y-cumulative-realized-profit" | "from-4y-35p-price-paid" | "liquid-supply-in-loss-to-own-supply-ratio" | "from-10y-35p-price-paid" | "megalodon-supply-in-loss" | "from-3y-to-5y-net-realized-profit-and-loss-to-market-cap-ratio" | "shark-90p-price-paid" | "up-to-1d-realized-cap-1m-net-change" | "market-price-to-cointime-price-ratio-0-1p" | "market-price-to-up-to-1y-realized-price-ratio-99-9p" | "crab-supply" | "market-price-to-year-2016-realized-price-ratio-99-9p" | "up-to-1m-value-created" | "p2pk-realized-cap-1m-net-change" | "up-to-3y-net-realized-profit-and-loss" | "from-5y-to-7y-halved-supply-to-circulating-supply-ratio" | "market-price-to-up-to-1y-realized-price-ratio-1w-sma" | "up-to-1w-realized-price-99-9p" | "up-to-6m-net-unrealized-profit-and-loss-to-market-cap-ratio" | "year-2013-value-destroyed" | "up-to-6m-supply" | "sth-realized-price" | "up-to-1d-55p-price-paid" | "year-2017-cumulative-net-realized-profit-and-loss-1m-net-change" | "market-price-to-up-to-5y-realized-price-ratio-0-5p" | "year-2020-spent-output-profit-ratio" | "year-2022-supply-in-profit" | "up-to-15y-supply-in-loss-to-circulating-supply-ratio" | "from-4y-realized-price-0-1p" | "cointime-price" | "from-1w-to-1m-25p-price-paid" | "year-2014-halved-supply" | "shrimp-85p-price-paid" | "highly-liquid-realized-price-99-9p" | "year-2016-75p-price-paid" | "crab-realized-cap" | "from-10y-to-15y-75p-price-paid" | "from-3m-to-6m-cumulative-realized-profit" | "market-price-to-up-to-2y-realized-price-ratio-1y-sma" | "market-price-to-year-2013-realized-price-ratio-99p" | "market-price-to-from-15y-realized-price-ratio" | "market-price-to-up-to-1w-realized-price-ratio-1p" | "from-10y-supply-in-loss-to-circulating-supply-ratio" | "from-1y-supply-in-profit" | "p2wsh-negative-realized-loss" | "market-price-to-year-2018-realized-price-ratio-1w-sma" | "from-5y-to-7y-realized-price-0-1p" | "from-1w-to-1m-realized-profit" | "p2pk-realized-price-99p" | "p2pkh-35p-price-paid" | "p2tr-70p-price-paid" | "true-market-mean-0-1p" | "shark-halved-supply" | "from-10y-95p-price-paid" | "up-to-3m-20p-price-paid" | "whale-15p-price-paid" | "market-price-to-active-price-ratio-0-5p" | "year-2022-realized-price-1p" | "market-price-to-from-1m-to-3m-realized-price-ratio-0-5p" | "year-2023-supply-in-loss-to-circulating-supply-ratio" | "up-to-3y-supply-in-loss-to-circulating-supply-ratio" | "up-to-3m-cumulative-realized-loss" | "up-to-10y-85p-price-paid" | "year-2011-70p-price-paid" | "market-price-to-from-1y-realized-price-ratio-1p" | "illiquid-10p-price-paid" | "sth-supply-in-loss-to-own-supply-ratio" | "p2sh-35p-price-paid" | "p2pkh-input-volume" | "up-to-15y-net-unrealized-profit-and-loss" | "up-to-3y-75p-price-paid" | "market-price-to-price-2y-sma-ratio-1y-sma-momentum-oscillator" | "up-to-4m-negative-unrealized-loss" | "from-1m-to-3m-input-volume" | "up-to-10y-25p-price-paid" | "up-to-3y-spent-output-profit-ratio" | "up-to-1y-realized-price" | "up-to-5y-unrealized-profit" | "whale-90p-price-paid" | "from-1w-to-1m-realized-cap-1m-net-change" | "market-price-to-year-2016-realized-price-ratio-1m-sma" | "from-2y-30p-price-paid" | "shrimp-halved-supply-to-circulating-supply-ratio" | "from-5y-to-7y-negative-unrealized-loss" | "plankton-negative-unrealized-loss" | "market-price-to-year-2012-realized-price-ratio-1w-sma" | "realized-cap" | "up-to-10y-75p-price-paid" | "up-to-5y-40p-price-paid" | "up-to-5y-supply-in-profit-to-own-supply-ratio" | "whale-net-realized-profit-and-loss" | "from-1w-to-1m-supply-in-profit-to-circulating-supply-ratio" | "year-2015-realized-price" | "shark-input-count" | "plankton-55p-price-paid" | "from-15y-halved-supply" | "year-2024-supply" | "market-price-to-price-144d-sma-ratio-99p" | "last-coinbase-in-dollars" | "market-price-to-up-to-7y-realized-price-ratio-1y-sma" | "fish-supply-to-circulating-supply-ratio" | "up-to-1w-supply" | "year-2024-45p-price-paid" | "market-price-to-sth-realized-price-ratio-1y-sma" | "year-2018-realized-cap" | "market-price-to-from-3m-to-6m-realized-price-ratio-0-1p" | "from-1m-to-3m-realized-price-99p" | "lth-20p-price-paid" | "p2tr-10p-price-paid" | "lth-90p-price-paid" | "illiquid-realized-price-99-5p" | "up-to-10y-supply-in-profit-to-circulating-supply-ratio" | "humpback-net-unrealized-profit-and-loss" | "market-price-to-price-55d-sma-ratio-99-5p" | "from-10y-to-15y-cumulative-realized-loss" | "from-1m-to-3m-realized-value" | "plankton-90p-price-paid" | "market-price-to-up-to-4m-realized-price-ratio-99-5p" | "price-1m-sma-99p" | "from-6m-to-1y-realized-price-99-5p" | "fish-negative-realized-loss" | "up-to-1w-realized-price-0-5p" | "up-to-3y-55p-price-paid" | "sth-value-destroyed" | "up-to-5y-45p-price-paid" | "liquid-45p-price-paid" | "year-2024-realized-value" | "illiquid-realized-loss" | "from-1d-to-1w-supply-to-circulating-supply-ratio" | "p2tr-net-unrealized-profit-and-loss" | "blocks-mined-1w-target" | "from-1d-to-1w-40p-price-paid" | "from-1d-to-1w-realized-profit" | "market-price-to-price-200w-sma-ratio-99-5p" | "up-to-1y-halved-supply" | "fish-realized-price-1p" | "from-2y-to-3y-90p-price-paid" | "year-2012-realized-price-1p" | "year-2020-supply-to-circulating-supply-ratio" | "from-10y-realized-price" | "market-price-to-price-2y-sma-ratio-1w-sma" | "up-to-15y-sell-side-risk-ratio" | "crab-cumulative-realized-profit" | "last-height" | "lth-35p-price-paid" | "p2wpkh-negative-unrealized-loss" | "market-price-to-realized-price-ratio-1w-sma" | "year-2022-55p-price-paid" | "from-15y-35p-price-paid" | "from-3m-to-6m-cumulative-net-realized-profit-and-loss-1m-net-change" | "plankton-spent-output-profit-ratio" | "from-2y-to-3y-realized-price-0-5p" | "up-to-5y-20p-price-paid" | "market-price-to-from-2y-to-3y-realized-price-ratio" | "up-to-3m-75p-price-paid" | "year-2014-realized-cap" | "up-to-3m-cumulative-net-realized-profit-and-loss-1m-net-change" | "up-to-3y-realized-price-1p" | "up-to-5m-net-realized-profit-and-loss" | "megalodon-net-unrealized-profit-and-loss-to-market-cap-ratio" | "from-1y-realized-price-99-9p" | "megalodon-cumulative-realized-loss" | "p2sh-20p-price-paid" | "market-price-to-from-1y-to-2y-realized-price-ratio-1p" | "35p-price-paid" | "up-to-3m-supply-in-profit-to-own-supply-ratio" | "year-2022-input-volume" | "p2wpkh-unrealized-profit" | "market-price-to-vaulted-price-ratio-0-1p" | "up-to-6m-realized-price-0-1p" | "from-6m-to-1y-negative-realized-loss" | "market-price-to-from-4y-realized-price-ratio-0-5p" | "year-2013-spent-output-profit-ratio" | "from-2y-unrealized-profit" | "year-2009-realized-price-99-9p" | "p2pk-15p-price-paid" | "up-to-1w-65p-price-paid" | "sth-40p-price-paid" | "year-2018-realized-price-1p" | "year-2021-05p-price-paid" | "up-to-7y-realized-price" | "from-1d-to-1w-cumulative-net-realized-profit-and-loss" | "market-price-to-up-to-5y-realized-price-ratio" | "market-price-to-year-2010-realized-price-ratio-1y-sma" | "from-1w-to-1m-20p-price-paid" | "from-10y-to-15y-05p-price-paid" | "up-to-6m-utxo-count" | "humpback-35p-price-paid" | "from-1d-to-1w-cumulative-realized-loss" | "from-7y-to-10y-net-unrealized-profit-and-loss-to-market-cap-ratio" | "market-price-to-from-1y-to-2y-realized-price-ratio-1y-sma" | "market-price-to-plankton-realized-price-ratio-0-1p" | "from-10y-20p-price-paid" | "up-to-10y-80p-price-paid" | "from-5y-to-7y-negative-realized-loss" | "block-interval" | "crab-input-count" | "market-price-to-price-55d-sma-ratio-0-1p" | "fish-realized-price" | "from-15y-realized-price-1p" | "shark-40p-price-paid" | "up-to-1w-realized-cap-1m-net-change" | "from-5y-to-7y-median-price-paid" | "up-to-5y-supply-in-loss-to-circulating-supply-ratio" | "market-price-to-from-1d-to-1w-realized-price-ratio-0-1p" | "year-2017-realized-price-99-5p" | "year-2011-realized-price-99p" | "crab-25p-price-paid" | "market-price-to-humpback-realized-price-ratio-0-1p" | "year-2013-cumulative-realized-profit" | "p2tr-supply" | "sth-65p-price-paid" | "up-to-1m-negative-realized-loss" | "market-price-to-year-2015-realized-price-ratio-1w-sma" | "market-price-to-shrimp-realized-price-ratio-1y-sma-momentum-oscillator" | "shrimp-unrealized-profit" | "up-to-15y-negative-unrealized-loss" | "from-4y-net-unrealized-profit-and-loss-to-market-cap-ratio" | "up-to-15y-70p-price-paid" | "market-price-to-from-15y-realized-price-ratio-1m-sma" | "up-to-1m-35p-price-paid" | "market-price-to-price-21d-sma-ratio-99-9p" | "from-4y-cumulative-realized-profit" | "up-to-1m-net-realized-profit-and-loss-to-market-cap-ratio" | "from-1y-to-2y-25p-price-paid" | "year-2024-utxo-count" | "up-to-1m-40p-price-paid" | "up-to-3y-realized-profit" | "from-1y-to-2y-supply-in-profit" | "market-price-to-price-21d-sma-ratio-1w-sma" | "p2wsh-80p-price-paid" | "up-to-10y-supply-to-circulating-supply-ratio" | "up-to-6m-35p-price-paid" | "fees-to-coinbase-ratio" | "from-1w-to-1m-negative-unrealized-loss" | "from-4y-realized-cap-1m-net-change" | "market-price-to-year-2024-realized-price-ratio-99-9p" | "up-to-15y-65p-price-paid" | "up-to-1y-45p-price-paid" | "up-to-3y-utxo-count" | "up-to-4m-input-count" | "from-15y-net-unrealized-profit-and-loss-to-market-cap-ratio" | "market-price-to-active-price-ratio-99p" | "market-price-to-fish-realized-price-ratio-0-1p" | "market-price-to-year-2019-realized-price-ratio-99p" | "illiquid-spent-output-profit-ratio" | "market-price-to-price-200w-sma-ratio-1w-sma" | "market-price-to-year-2014-realized-price-ratio-1w-sma" | "active-supply-net-change" | "year-2020-net-realized-profit-and-loss" | "up-to-5y-sell-side-risk-ratio" | "market-price-to-from-7y-to-10y-realized-price-ratio-0-5p" | "up-to-4m-utxo-count" | "from-10y-input-volume" | "up-to-1w-supply-in-profit-to-circulating-supply-ratio" | "from-3m-to-6m-realized-price-1p" | "year-2023-45p-price-paid" | "plankton-15p-price-paid" | "market-price-to-from-3m-to-6m-realized-price-ratio-0-5p" | "market-price-to-price-8d-sma-ratio-1y-sma-momentum-oscillator" | "from-3y-to-5y-utxo-count" | "year-2012-supply-in-profit-to-own-supply-ratio" | "from-2y-realized-price-99-9p" | "from-4y-realized-price-0-5p" | "market-price-to-price-200w-sma-ratio" | "market-price-to-true-market-mean-ratio-1m-sma" | "price-13d-sma-1p" | "year-2010-unrealized-loss" | "p2tr-cumulative-realized-loss" | "market-price-to-humpback-realized-price-ratio-0-5p" | "market-price-to-up-to-2y-realized-price-ratio-1m-sma" | "year-2016-35p-price-paid" | "p2tr-15p-price-paid" | "megalodon-85p-price-paid" | "up-to-7y-net-realized-profit-and-loss-to-market-cap-ratio" | "market-price-to-year-2017-realized-price-ratio-1w-sma" | "humpback-realized-value" | "market-price-to-up-to-2y-realized-price-ratio" | "from-3m-to-6m-realized-loss" | "market-price-to-liquid-realized-price-ratio-99-9p" | "p2wpkh-40p-price-paid" | "illiquid-35p-price-paid" | "p2tr-unrealized-profit" | "market-price-to-p2tr-realized-price-ratio-1y-sma" | "block-size-1d-average" | "market-price-to-price-200w-sma-ratio-0-5p" | "up-to-7y-supply-in-profit-to-circulating-supply-ratio" | "whale-supply-in-loss-to-circulating-supply-ratio" | "year-2017-supply-in-profit-to-circulating-supply-ratio" | "year-2012-supply-in-profit-to-circulating-supply-ratio" | "year-2023-utxo-count" | "p2pkh-address-count" | "market-price-to-p2wsh-realized-price-ratio-0-5p" | "year-2015-unrealized-profit" | "from-1y-to-2y-input-count" | "liquid-90p-price-paid" | "market-price-to-p2tr-realized-price-ratio-99-9p" | "from-10y-realized-price-99-9p" | "from-10y-75p-price-paid" | "from-10y-to-15y-value-destroyed" | "p2wsh-cumulative-realized-loss" | "from-3y-to-5y-value-destroyed" | "lth-cumulative-net-realized-profit-and-loss-1m-net-change" | "from-3y-to-5y-30p-price-paid" | "price-21d-sma-0-5p" | "up-to-2m-supply-in-loss-to-circulating-supply-ratio" | "up-to-3m-net-unrealized-profit-and-loss-to-market-cap-ratio" | "year-2009-10p-price-paid" | "year-2010-95p-price-paid" | "market-price-to-p2tr-realized-price-ratio" | "lth-realized-cap" | "market-price-to-true-market-mean-ratio-99-9p" | "year-2013-realized-cap" | "up-to-5m-unrealized-loss" | "p2sh-95p-price-paid" | "up-to-2y-spent-output-profit-ratio" | "up-to-5y-realized-price" | "year-2021-80p-price-paid" | "year-2021-cumulative-realized-profit" | "p2sh-realized-price-0-5p" | "up-to-5m-spent-output-profit-ratio" | "lth-25p-price-paid" | "market-price-to-up-to-1d-realized-price-ratio-1p" | "shark-55p-price-paid" | "from-1y-to-2y-supply-to-circulating-supply-ratio" | "fees-1y-sum" | "from-10y-to-15y-85p-price-paid" | "p2wsh-35p-price-paid" | "p2pk-input-volume" | "from-10y-to-15y-70p-price-paid" | "up-to-6m-55p-price-paid" | "up-to-5m-median-price-paid" | "year-2012-unrealized-loss" | "year-2023-sell-side-risk-ratio" | "from-1d-to-1w-realized-price-99-5p" | "from-1w-to-1m-value-destroyed" | "from-7y-to-10y-55p-price-paid" | "p2sh-realized-cap-1m-net-change" | "p2wpkh-65p-price-paid" | "year-2021-45p-price-paid" | "market-price-to-highly-liquid-realized-price-ratio-99-9p" | "cumulative-fees" | "humpback-supply-in-profit-to-own-supply-ratio" | "from-15y-65p-price-paid" | "up-to-2m-negative-realized-loss" | "block-interval-1d-90p" | "up-to-4m-95p-price-paid" | "year-2013-negative-realized-loss" | "plankton-cumulative-realized-loss" | "from-5y-to-7y-realized-price-99p" | "up-to-15y-30p-price-paid" | "market-price-to-up-to-5m-realized-price-ratio-99-9p" | "humpback-realized-cap" | "from-5y-to-7y-60p-price-paid" | "crab-cumulative-net-realized-profit-and-loss" | "up-to-10y-supply" | "from-1y-net-unrealized-profit-and-loss-to-market-cap-ratio" | "from-1y-to-2y-median-price-paid" | "plankton-supply-in-profit-to-own-supply-ratio" | "year-2012-supply-in-loss-to-own-supply-ratio" | "year-2021-halved-supply-to-circulating-supply-ratio" | "year-2021-supply-in-profit" | "from-3m-to-6m-value-destroyed" | "p2sh-net-unrealized-profit-and-loss" | "up-to-5m-realized-price-1p" | "annualized-transaction-volume" | "year-2019-utxo-count" | "year-2020-supply-in-profit" | "fish-net-realized-profit-and-loss" | "from-3y-to-5y-net-unrealized-profit-and-loss-to-market-cap-ratio" | "from-3y-to-5y-80p-price-paid" | "up-to-7y-supply-in-loss-to-circulating-supply-ratio" | "shark-supply-in-profit-to-circulating-supply-ratio" | "up-to-1w-realized-value" | "from-2y-to-3y-spent-output-profit-ratio" | "market-price-to-from-6m-to-1y-realized-price-ratio-99p" | "fish-45p-price-paid" | "annualized-issuance" | "p2sh-55p-price-paid" | "sth-35p-price-paid" | "year-2017-90p-price-paid" | "market-price-to-plankton-realized-price-ratio-99p" | "p2tr-address-count" | "from-2y-to-3y-supply-in-loss-to-circulating-supply-ratio" | "year-2024-realized-price-0-5p" | "from-10y-negative-unrealized-loss" | "crab-net-unrealized-profit-and-loss-to-market-cap-ratio" | "year-2012-95p-price-paid" | "from-10y-to-15y-realized-value" | "from-15y-cumulative-realized-loss" | "price-55d-sma-0-5p" | "up-to-5m-85p-price-paid" | "year-2015-90p-price-paid" | "whale-utxo-count" | "illiquid-realized-price-0-1p" | "year-2017-spent-output-profit-ratio" | "market-price-to-year-2018-realized-price-ratio-1y-sma" | "year-2018-30p-price-paid" | "shrimp-realized-price" | "up-to-1y-25p-price-paid" | "year-2020-realized-price-99-5p" | "year-2023-realized-value" | "market-cap" | "from-1d-to-1w-10p-price-paid" | "year-2024-30p-price-paid" | "from-4y-input-count" | "year-2023-90p-price-paid" | "year-2017-supply" | "shark-realized-price-1p" | "up-to-1w-value-destroyed" | "from-1y-to-2y-40p-price-paid" | "from-2y-to-3y-95p-price-paid" | "up-to-15y-cumulative-realized-profit" | "crab-value-created" | "year-2021-net-unrealized-profit-and-loss-to-market-cap-ratio" | "year-2021-95p-price-paid" | "year-2014-realized-price-99-9p" | "from-6m-to-1y-supply-in-profit" | "up-to-3y-supply-in-profit-to-circulating-supply-ratio" | "humpback-realized-price" | "up-to-5m-70p-price-paid" | "year-2016-realized-cap" | "year-2014-realized-cap-1m-net-change" | "year-2022-realized-cap-1m-net-change" | "market-price-to-sth-realized-price-ratio-99-9p" | "price-1y-sma-99-5p" | "spent-output-profit-ratio" | "year-2013-unrealized-loss" | "year-2020-value-destroyed" | "up-to-7y-sell-side-risk-ratio" | "p2pk-80p-price-paid" | "year-2015-10p-price-paid" | "year-2023-supply-in-profit-to-own-supply-ratio" | "megalodon-75p-price-paid" | "up-to-15y-supply-to-circulating-supply-ratio" | "market-price-to-up-to-15y-realized-price-ratio-0-1p" | "market-price-to-fish-realized-price-ratio-99p" | "p2pk-net-realized-profit-and-loss" | "from-6m-to-1y-realized-price-1p" | "up-to-5m-input-volume" | "up-to-10y-realized-profit" | "price-1y-sma-99p" | "shark-unrealized-profit" | "up-to-5y-realized-value" | "p2wpkh-utxo-count" | "price-2y-sma-99-5p" | "market-price-to-from-2y-to-3y-realized-price-ratio-99-5p" | "up-to-6m-halved-supply-to-circulating-supply-ratio" | "market-price-to-liquid-realized-price-ratio" | "market-price-to-lth-realized-price-ratio-99-5p" | "up-to-2m-net-unrealized-profit-and-loss" | "up-to-3m-cumulative-net-realized-profit-and-loss" | "up-to-15y-supply-in-profit-to-own-supply-ratio" | "up-to-7y-realized-loss" | "lth-realized-loss" | "market-price-to-lth-realized-price-ratio" | "from-1w-to-1m-net-realized-profit-and-loss" | "from-3y-to-5y-60p-price-paid" | "from-10y-to-15y-realized-price-99p" | "year-2011-net-realized-profit-and-loss" | "year-2013-30p-price-paid" | "year-2016-20p-price-paid" | "up-to-1y-supply" | "year-2018-halved-supply-to-circulating-supply-ratio" | "year-2023-realized-price-0-1p" | "market-price-to-up-to-1m-realized-price-ratio-0-1p" | "up-to-6m-90p-price-paid" | "year-2023-negative-unrealized-loss" | "from-1w-to-1m-95p-price-paid" | "year-2023-net-unrealized-profit-and-loss" | "megalodon-60p-price-paid" | "whale-median-price-paid" | "from-4y-median-price-paid" | "market-price-to-up-to-15y-realized-price-ratio-1p" | "year-2009-realized-price-99p" | "up-to-2m-value-created" | "shrimp-unrealized-loss" | "blocks-mined-1w-sma" | "from-4y-net-realized-profit-and-loss" | "up-to-4m-supply" | "market-price-to-whale-realized-price-ratio-99-9p" | "close" | "market-price-to-from-3m-to-6m-realized-price-ratio-99-5p" | "sth-realized-cap" | "market-price-to-realized-price-ratio-0-5p" | "year-2010-60p-price-paid" | "year-2010-realized-price-0-1p" | "from-2y-35p-price-paid" | "block-vbytes-1d-min" | "p2wpkh-halved-supply-to-circulating-supply-ratio" | "year-2018-realized-cap-1m-net-change" | "year-2024-halved-supply-to-circulating-supply-ratio" | "from-6m-to-1y-cumulative-realized-loss" | "market-price-to-year-2022-realized-price-ratio-0-1p" | "year-2014-supply-to-circulating-supply-ratio" | "market-price-to-year-2017-realized-price-ratio-1y-sma-momentum-oscillator" | "up-to-6m-realized-loss" | "from-1y-to-2y-supply-in-profit-to-circulating-supply-ratio" | "from-2y-to-3y-sell-side-risk-ratio" | "shrimp-supply-in-loss-to-circulating-supply-ratio" | "year-2018-supply-in-loss" | "from-10y-to-15y-cumulative-net-realized-profit-and-loss" | "from-4y-negative-unrealized-loss" | "p2pkh-negative-unrealized-loss" | "market-price-to-shrimp-realized-price-ratio-99-5p" | "market-price-to-shark-realized-price-ratio-99-5p" | "market-price-to-up-to-1d-realized-price-ratio" | "plankton-supply-in-loss-to-own-supply-ratio" | "year-2016-90p-price-paid" | "up-to-1d-supply-in-profit" | "year-2020-45p-price-paid" | "up-to-1w-supply-in-profit-to-own-supply-ratio" | "year-2024-net-unrealized-profit-and-loss" | "highly-liquid-45p-price-paid" | "up-to-5y-halved-supply-to-circulating-supply-ratio" | "year-2009-realized-price-0-5p" | "market-price-to-price-8d-sma-ratio-1y-sma" | "up-to-7y-supply-in-profit-to-own-supply-ratio" | "year-2013-realized-price-0-5p" | "fish-55p-price-paid" | "market-price-to-up-to-5m-realized-price-ratio-1y-sma" | "up-to-15y-80p-price-paid" | "year-2024-realized-price-0-1p" | "market-price-to-crab-realized-price-ratio-99-5p" | "market-price-to-from-1m-to-3m-realized-price-ratio-99p" | "from-6m-to-1y-realized-value" | "from-1y-net-unrealized-profit-and-loss" | "from-5y-to-7y-05p-price-paid" | "megalodon-supply-in-loss-to-circulating-supply-ratio" | "up-to-1y-30p-price-paid" | "up-to-3m-realized-loss" | "year-2011-supply-in-loss-to-circulating-supply-ratio" | "price-1w-sma" | "fish-80p-price-paid" | "up-to-1w-cumulative-net-realized-profit-and-loss" | "block-weight-1d-25p" | "market-price-to-price-4y-sma-ratio-1y-sma" | "market-price-to-year-2015-realized-price-ratio-99p" | "market-price-to-year-2016-realized-price-ratio-99p" | "up-to-3y-halved-supply" | "from-7y-to-10y-sell-side-risk-ratio" | "year-2021-sell-side-risk-ratio" | "year-2023-realized-cap" | "market-price-to-year-2024-realized-price-ratio-99-5p" | "year-2023-supply-to-circulating-supply-ratio" | "block-interval-1d-10p" | "year-2017-30p-price-paid" | "year-2013-negative-unrealized-loss" | "from-1y-value-destroyed" | "illiquid-net-unrealized-profit-and-loss" | "p2wsh-net-unrealized-profit-and-loss" | "price-200w-sma-99p" | "from-3y-to-5y-cumulative-net-realized-profit-and-loss" | "p2tr-halved-supply-to-circulating-supply-ratio" | "year-2015-60p-price-paid" | "year-2020-negative-unrealized-loss" | "from-3m-to-6m-net-unrealized-profit-and-loss" | "from-2y-80p-price-paid" | "up-to-3y-25p-price-paid" | "block-vbytes" | "lth-supply-to-circulating-supply-ratio" | "year-2020-cumulative-realized-loss" | "crab-85p-price-paid" | "up-to-1w-supply-in-profit" | "up-to-3y-unrealized-loss" | "from-1m-to-3m-realized-price-0-5p" | "year-2018-value-created" | "year-2014-95p-price-paid" | "fish-realized-price-99p" | "from-7y-to-10y-15p-price-paid" | "illiquid-15p-price-paid" | "fish-40p-price-paid" | "from-6m-to-1y-45p-price-paid" | "highly-liquid-input-volume" | "year-2020-60p-price-paid" | "liquid-realized-price-99-9p" | "market-price-to-up-to-4m-realized-price-ratio-1y-sma" | "up-to-10y-30p-price-paid" | "market-price-to-price-1w-sma-ratio-0-5p" | "p2wsh-realized-price-1p" | "p2wsh-30p-price-paid" | "up-to-5m-input-count" | "cumulative-net-realized-profit-and-loss" | "up-to-7y-realized-cap-1m-net-change" | "from-1y-input-volume" | "from-6m-to-1y-realized-price-99p" | "up-to-1w-median-price-paid" | "whale-supply-in-profit" | "year-2020-realized-price-1p" | "up-to-5m-unrealized-profit" | "from-6m-to-1y-70p-price-paid" | "p2sh-30p-price-paid" | "crab-supply-in-profit-to-circulating-supply-ratio" | "market-price-to-year-2019-realized-price-ratio-0-5p" | "lth-spent-output-profit-ratio" | "from-2y-to-3y-60p-price-paid" | "up-to-1d-utxo-count" | "up-to-1m-05p-price-paid" | "p2pkh-realized-price-0-1p" | "up-to-1d-realized-price-99-9p" | "year-2011-realized-price-99-5p" | "year-2018-net-unrealized-profit-and-loss" | "year-2014-realized-price-0-5p" | "up-to-15y-realized-cap-1m-net-change" | "from-15y-60p-price-paid" | "market-price-to-active-price-ratio" | "market-price-to-up-to-5y-realized-price-ratio-1y-sma" | "up-to-1m-unrealized-loss" | "up-to-4m-realized-loss" | "from-1w-to-1m-unrealized-profit" | "market-price-to-up-to-15y-realized-price-ratio-1y-sma" | "market-price-to-from-7y-to-10y-realized-price-ratio" | "up-to-10y-realized-price-0-1p" | "p2wpkh-realized-price-1p" | "up-to-3m-realized-price-99-5p" | "cointime-price-99-9p" | "market-price-to-sth-realized-price-ratio" | "year-2020-realized-price" | "up-to-5y-value-created" | "from-3m-to-6m-realized-profit" | "from-1w-to-1m-input-count" | "humpback-realized-price-99-9p" | "crab-sell-side-risk-ratio" | "up-to-5y-15p-price-paid" | "from-2y-to-3y-supply-in-loss" | "from-6m-to-1y-value-destroyed" | "market-price-to-year-2023-realized-price-ratio-99-9p" | "year-2009-realized-price-0-1p" | "up-to-1y-supply-in-profit" | "highly-liquid-25p-price-paid" | "market-price-to-p2tr-realized-price-ratio-1m-sma" | "market-price-to-whale-realized-price-ratio-1p" | "price-4y-total-return" | "up-to-5y-supply-in-profit" | "up-to-5y-supply-in-profit-to-circulating-supply-ratio" | "year-2014-15p-price-paid" | "year-2021-utxo-count" | "block-size-1d-max" | "up-to-3m-input-count" | "crab-95p-price-paid" | "realized-price-0-5p" | "negative-unrealized-loss" | "up-to-1m-supply-in-profit-to-circulating-supply-ratio" | "year-2023-85p-price-paid" | "year-2024-60p-price-paid" | "year-2024-cumulative-net-realized-profit-and-loss-1m-net-change" | "year-2024-input-count" | "highly-liquid-supply-in-loss-to-own-supply-ratio" | "market-price-to-from-4y-realized-price-ratio-1p" | "market-price-to-up-to-5m-realized-price-ratio" | "shrimp-supply-in-profit" | "up-to-2y-realized-price-99-5p" | "p2tr-cumulative-net-realized-profit-and-loss-1m-net-change" | "crab-10p-price-paid" | "sth-20p-price-paid" | "sth-70p-price-paid" | "up-to-1d-cumulative-realized-profit" | "market-price-to-megalodon-realized-price-ratio-1y-sma" | "year-2021-negative-unrealized-loss" | "market-price-to-year-2019-realized-price-ratio-1p" | "market-price-to-from-7y-to-10y-realized-price-ratio-99p" | "from-2y-10p-price-paid" | "highly-liquid-40p-price-paid" | "humpback-unrealized-loss" | "up-to-10y-input-volume" | "up-to-6m-realized-cap" | "up-to-5y-realized-price-99-5p" | "up-to-2m-05p-price-paid" | "from-1m-to-3m-realized-price-0-1p" | "up-to-1d-supply-in-profit-to-circulating-supply-ratio" | "year-2011-15p-price-paid" | "from-2y-input-count" | "from-1y-10p-price-paid" | "fish-realized-cap" | "year-2020-25p-price-paid" | "price-34d-sma" | "from-1d-to-1w-net-realized-profit-and-loss" | "year-2012-unrealized-profit" | "year-2017-95p-price-paid" | "year-2022-45p-price-paid" | "puell-multiple" | "year-2017-unrealized-loss" | "market-price-to-from-1w-to-1m-realized-price-ratio-99p" | "coinbase-in-dollars-1y-sma" | "from-1d-to-1w-supply-in-loss-to-own-supply-ratio" | "from-5y-to-7y-halved-supply" | "market-price-to-up-to-2m-realized-price-ratio" | "megalodon-realized-price-0-5p" | "market-price-to-up-to-1y-realized-price-ratio" | "highly-liquid-supply-in-profit-to-own-supply-ratio" | "p2tr-55p-price-paid" | "market-price-to-crab-realized-price-ratio-1y-sma-momentum-oscillator" | "p2wpkh-05p-price-paid" | "up-to-7y-90p-price-paid" | "year-2015-75p-price-paid" | "year-2011-80p-price-paid" | "humpback-supply-in-profit-to-circulating-supply-ratio" | "up-to-7y-realized-cap" | "p2sh-halved-supply-to-circulating-supply-ratio" | "crab-35p-price-paid" | "up-to-3m-sell-side-risk-ratio" | "liquid-realized-price-1p" | "from-1m-to-3m-net-realized-profit-and-loss-to-market-cap-ratio" | "lth-realized-value" | "p2wsh-negative-unrealized-loss" | "up-to-1m-20p-price-paid" | "shrimp-supply" | "block-weight-1d-min" | "market-price-to-price-1y-sma-ratio-99-9p" | "p2pk-input-count" | "p2pkh-realized-price-99-9p" | "p2wsh-75p-price-paid" | "from-1d-to-1w-supply-in-profit-to-circulating-supply-ratio" | "from-1w-to-1m-realized-price-99-9p" | "from-1w-to-1m-supply-in-loss-to-circulating-supply-ratio" | "market-price-to-price-2y-sma-ratio-1m-sma" | "market-price-to-year-2022-realized-price-ratio-0-5p" | "up-to-1d-median-price-paid" | "humpback-95p-price-paid" | "price-2y-total-return" | "year-2009-20p-price-paid" | "from-3m-to-6m-20p-price-paid" | "sell-side-risk-ratio" | "from-3y-to-5y-cumulative-realized-loss" | "market-price-to-from-2y-realized-price-ratio-99-9p" | "up-to-1m-supply-in-loss-to-own-supply-ratio" | "block-size-1d-min" | "up-to-15y-25p-price-paid" | "blocks-mined-1d-target" | "from-15y-supply-to-circulating-supply-ratio" | "highly-liquid-supply-in-loss" | "from-4y-realized-profit" | "up-to-3m-40p-price-paid" | "from-2y-05p-price-paid" | "market-price-to-from-4y-realized-price-ratio-1m-sma" | "market-price-to-from-10y-realized-price-ratio" | "market-price-to-from-10y-to-15y-realized-price-ratio-0-5p" | "market-price-to-price-13d-sma-ratio-99-5p" | "value-created" | "year-2022-realized-value" | "from-1y-to-2y-net-realized-profit-and-loss-to-market-cap-ratio" | "year-2015-cumulative-net-realized-profit-and-loss-1m-net-change" | "market-price-to-from-5y-to-7y-realized-price-ratio-1p" | "from-15y-input-volume" | "from-2y-net-unrealized-profit-and-loss-to-market-cap-ratio" | "up-to-1d-input-count" | "p2pkh-negative-realized-loss" | "up-to-7y-input-count" | "year-2012-25p-price-paid" | "year-2013-realized-price" | "from-2y-realized-cap-1m-net-change" | "from-1d-to-1w-realized-loss" | "price-4y-sma-99p" | "up-to-1m-realized-price-99-9p" | "year-2014-35p-price-paid" | "year-2009-net-realized-profit-and-loss-to-market-cap-ratio" | "market-price-to-crab-realized-price-ratio" | "from-1y-to-2y-supply-in-loss" | "year-2024-70p-price-paid" | "market-price-to-whale-realized-price-ratio-1m-sma" | "p2wpkh-supply" | "up-to-15y-35p-price-paid" | "up-to-7y-negative-unrealized-loss" | "total-blocks-mined" | "up-to-2y-negative-realized-loss" | "from-15y-30p-price-paid" | "up-to-2y-realized-loss" | "year-2022-halved-supply-to-circulating-supply-ratio" | "yearly-inflation-rate" | "illiquid-70p-price-paid" | "from-1w-to-1m-85p-price-paid" | "market-price-to-from-1y-realized-price-ratio-99-9p" | "up-to-5y-input-volume" | "market-price-to-year-2018-realized-price-ratio-0-5p" | "up-to-2m-median-price-paid" | "from-10y-to-15y-input-count" | "lth-realized-cap-1m-net-change" | "year-2017-input-volume" | "year-2021-realized-price-0-5p" | "year-2022-realized-price-99p" | "year-2014-realized-loss" | "year-2011-supply-in-profit-to-circulating-supply-ratio" | "up-to-3y-realized-price-99-5p" | "market-price-to-p2wpkh-realized-price-ratio-1y-sma-momentum-oscillator" | "from-1y-realized-value" | "cointime-price-0-1p" | "from-1w-to-1m-10p-price-paid" | "year-2009-negative-unrealized-loss" | "coindays-destroyed" | "up-to-7y-unrealized-loss" | "year-2015-20p-price-paid" | "year-2009-net-unrealized-profit-and-loss" | "market-price-to-year-2011-realized-price-ratio" | "shark-35p-price-paid" | "year-2022-85p-price-paid" | "up-to-3m-80p-price-paid" | "from-4y-net-unrealized-profit-and-loss" | "price-55d-sma-1p" | "from-1m-to-3m-35p-price-paid" | "up-to-10y-unrealized-loss" | "market-price-to-up-to-2y-realized-price-ratio-0-1p" | "difficulty" | "p2pk-unrealized-loss" | "year-2010-cumulative-net-realized-profit-and-loss" | "year-2017-net-realized-profit-and-loss" | "up-to-7y-unrealized-profit" | "up-to-7y-80p-price-paid" | "from-6m-to-1y-55p-price-paid" | "shark-value-created" | "from-10y-to-15y-35p-price-paid" | "price-200w-sma-0-5p" | "sth-realized-value" | "year-2013-value-created" | "from-4y-halved-supply" | "year-2010-input-volume" | "year-2019-realized-cap-1m-net-change" | "market-price-to-up-to-3m-realized-price-ratio-99-5p" | "p2sh-halved-supply" | "fish-90p-price-paid" | "year-2014-05p-price-paid" | "market-price-to-from-10y-realized-price-ratio-1y-sma-momentum-oscillator" | "up-to-1y-supply-in-loss" | "year-2012-input-count" | "whale-realized-price-99-9p" | "year-2023-80p-price-paid" | "megalodon-median-price-paid" | "block-size" | "liquid-supply-in-profit-to-own-supply-ratio" | "p2pkh-30p-price-paid" | "supply-in-loss-to-circulating-supply-ratio" | "from-5y-to-7y-25p-price-paid" | "year-2016-spent-output-profit-ratio" | "from-2y-to-3y-realized-profit" | "humpback-utxo-count" | "plankton-supply-to-circulating-supply-ratio" | "year-2017-utxo-count" | "year-2023-halved-supply-to-circulating-supply-ratio" | "market-price-to-year-2021-realized-price-ratio" | "megalodon-input-count" | "p2tr-supply-in-profit-to-own-supply-ratio" | "market-price-to-realized-price-ratio-99p" | "price-1w-sma-99-9p" | "up-to-5m-realized-price-0-1p" | "market-price-to-from-2y-realized-price-ratio-1p" | "market-price-to-up-to-3m-realized-price-ratio-1y-sma" | "market-price-to-price-1w-sma-ratio" | "market-price-to-price-2y-sma-ratio-99-9p" | "up-to-5y-negative-realized-loss" | "up-to-4m-realized-value" | "realized-price" | "up-to-3m-halved-supply-to-circulating-supply-ratio" | "up-to-6m-negative-realized-loss" | "p2sh-realized-profit" | "year-2013-70p-price-paid" | "up-to-10y-median-price-paid" | "market-price-to-price-89d-sma-ratio-1w-sma" | "market-price-to-from-1d-to-1w-realized-price-ratio-1y-sma" | "concurrent-liveliness-2w-median" | "from-1d-to-1w-95p-price-paid" | "p2pk-realized-price-0-5p" | "crab-utxo-count" | "from-15y-10p-price-paid" | "megalodon-value-created" | "up-to-5y-cumulative-net-realized-profit-and-loss-1m-net-change" | "investor-cap" | "up-to-4m-realized-price" | "sth-supply-in-loss-to-circulating-supply-ratio" | "illiquid-input-volume" | "megalodon-sell-side-risk-ratio" | "up-to-10y-negative-realized-loss" | "year-2012-median-price-paid" | "from-5y-to-7y-input-count" | "p2sh-realized-cap" | "from-7y-to-10y-supply-in-loss-to-own-supply-ratio" | "from-2y-85p-price-paid" | "p2pkh-supply-in-loss-to-own-supply-ratio" | "from-1y-negative-unrealized-loss" | "up-to-1m-utxo-count" | "up-to-3m-supply-in-loss" | "p2pkh-75p-price-paid" | "market-price-to-from-1d-to-1w-realized-price-ratio-99-9p" | "fish-net-unrealized-profit-and-loss-to-market-cap-ratio" | "plankton-supply" | "market-price-to-megalodon-realized-price-ratio-1w-sma" | "fish-unrealized-loss" | "up-to-1m-75p-price-paid" | "up-to-4m-net-unrealized-profit-and-loss" | "up-to-5m-realized-loss" | "from-1w-to-1m-35p-price-paid" | "up-to-7y-realized-price-0-1p" | "year-2022-cumulative-net-realized-profit-and-loss-1m-net-change" | "crab-40p-price-paid" | "cointime-value-created" | "from-10y-to-15y-95p-price-paid" | "from-5y-to-7y-realized-cap" | "p2tr-realized-cap-1m-net-change" | "p2wpkh-net-realized-profit-and-loss" | "up-to-2m-halved-supply" | "market-price-to-price-1y-sma-ratio-99-5p" | "lth-75p-price-paid" | "lth-85p-price-paid" | "price-1m-sma" | "p2wsh-median-price-paid" | "p2sh-supply-to-circulating-supply-ratio" | "from-6m-to-1y-20p-price-paid" | "transactions-per-second-1m-sma" | "up-to-3y-negative-unrealized-loss" | "year-2010-realized-loss" | "year-2018-25p-price-paid" | "up-to-10y-net-unrealized-profit-and-loss" | "from-2y-65p-price-paid" | "lth-15p-price-paid" | "market-price-to-megalodon-realized-price-ratio-1y-sma-momentum-oscillator" | "humpback-30p-price-paid" | "market-price-to-whale-realized-price-ratio-0-5p" | "market-price-to-year-2024-realized-price-ratio-1w-sma" | "up-to-2m-80p-price-paid" | "up-to-6m-20p-price-paid" | "whale-supply-in-loss-to-own-supply-ratio" | "fish-net-unrealized-profit-and-loss" | "year-2020-70p-price-paid" | "megalodon-realized-price-0-1p" | "up-to-5m-realized-price-99p" | "market-price-to-p2pk-realized-price-ratio-99-9p" | "market-price-to-p2pkh-realized-price-ratio-1m-sma" | "cointime-value-destroyed" | "year-2012-realized-price" | "fish-supply-in-profit-to-own-supply-ratio" | "market-price-to-up-to-4m-realized-price-ratio-1w-sma" | "up-to-15y-spent-output-profit-ratio" | "up-to-5m-80p-price-paid" | "year-2012-05p-price-paid" | "p2wpkh-median-price-paid" | "from-15y-90p-price-paid" | "year-2020-10p-price-paid" | "up-to-3m-input-volume" | "year-2017-value-created" | "up-to-10y-realized-value" | "p2sh-realized-price-0-1p" | "year-2010-realized-price-99-5p" | "whale-10p-price-paid" | "year-2009-supply-in-loss-to-own-supply-ratio" | "year-2020-40p-price-paid" | "year-2021-negative-realized-loss" | "from-1y-realized-price-1p" | "year-2011-35p-price-paid" | "shark-sell-side-risk-ratio" | "year-2016-halved-supply-to-circulating-supply-ratio" | "year-2014-realized-value" | "highly-liquid-realized-price-1p" | "up-to-10y-realized-loss" | "fish-sell-side-risk-ratio" | "shark-95p-price-paid" | "year-2009-30p-price-paid" | "p2pk-value-created" | "shrimp-95p-price-paid" | "up-to-5m-supply-in-loss-to-own-supply-ratio" | "liquid-95p-price-paid" | "year-2010-realized-cap-1m-net-change" | "from-7y-to-10y-cumulative-net-realized-profit-and-loss-1m-net-change" | "year-2013-80p-price-paid" | "p2sh-net-unrealized-profit-and-loss-to-market-cap-ratio" | "highly-liquid-realized-loss" | "highly-liquid-negative-realized-loss" | "year-2013-supply" | "plankton-realized-loss" | "from-1y-halved-supply-to-circulating-supply-ratio" | "humpback-halved-supply" | "liquid-supply-in-profit" | "p2tr-realized-price-99-5p" | "year-2010-realized-value" | "lth-65p-price-paid" | "shrimp-75p-price-paid" | "year-2014-realized-price" | "year-2021-input-volume" | "year-2011-supply-to-circulating-supply-ratio" | "price-8d-sma-0-1p" | "from-1m-to-3m-realized-cap-1m-net-change" | "from-3m-to-6m-90p-price-paid" | "from-3m-to-6m-net-unrealized-profit-and-loss-to-market-cap-ratio" | "market-price-to-from-1y-to-2y-realized-price-ratio" | "market-price-to-lth-realized-price-ratio-1w-sma" | "market-price-to-price-4y-sma-ratio-0-1p" | "from-3y-to-5y-unrealized-profit" | "market-price-to-price-55d-sma-ratio-99-9p" | "market-price-to-year-2020-realized-price-ratio-0-5p" | "shark-median-price-paid" | "up-to-1y-realized-price-99p" | "up-to-5y-85p-price-paid" | "whale-net-realized-profit-and-loss-to-market-cap-ratio" | "p2tr-net-unrealized-profit-and-loss-to-market-cap-ratio" | "shark-supply-in-profit-to-own-supply-ratio" | "from-1y-to-2y-95p-price-paid" | "market-price-to-realized-price-ratio-1m-sma" | "p2pkh-halved-supply-to-circulating-supply-ratio" | "year-2020-value-created" | "market-price-to-shrimp-realized-price-ratio-1p" | "liquid-cumulative-net-realized-profit-and-loss-1m-net-change" | "up-to-5m-supply-to-circulating-supply-ratio" | "lth-input-volume" | "year-2009-spent-output-profit-ratio" | "p2tr-60p-price-paid" | "price-4y-compound-return" | "year-2012-value-destroyed" | "up-to-10y-halved-supply" | "market-price-to-fish-realized-price-ratio-1y-sma-momentum-oscillator" | "from-4y-70p-price-paid" | "subsidy-in-dollars-1y-sum" | "market-price-to-year-2016-realized-price-ratio-0-5p" | "from-2y-to-3y-input-count" | "price-1m-sma-99-9p" | "price-34d-sma-0-1p" | "year-2009-25p-price-paid" | "year-2010-65p-price-paid" | "year-2013-35p-price-paid" | "from-3y-to-5y-realized-value" | "p2sh-input-count" | "from-5y-to-7y-unrealized-loss" | "from-3m-to-6m-realized-price-99-5p" | "up-to-4m-realized-price-1p" | "price-34d-sma-1p" | "year-2009-input-count" | "from-2y-25p-price-paid" | "from-15y-15p-price-paid" | "market-price-to-year-2018-realized-price-ratio-1m-sma" | "market-price-to-year-2015-realized-price-ratio-0-5p" | "market-price-to-year-2021-realized-price-ratio-99p" | "up-to-4m-supply-in-loss-to-circulating-supply-ratio" | "from-4y-realized-price-99-9p" | "from-1m-to-3m-supply-in-loss-to-own-supply-ratio" | "year-2013-realized-value" | "year-2014-cumulative-net-realized-profit-and-loss-1m-net-change" | "whale-realized-profit" | "year-2021-spent-output-profit-ratio" | "from-2y-to-3y-input-volume" | "crab-cumulative-realized-loss" | "highly-liquid-80p-price-paid" | "market-price-to-from-2y-realized-price-ratio-1y-sma-momentum-oscillator" | "p2pk-cumulative-net-realized-profit-and-loss" | "price-1y-sma-1p" | "up-to-3y-realized-price-99-9p" | "from-4y-realized-price-99p" | "market-price-to-year-2010-realized-price-ratio-1w-sma" | "up-to-3y-value-destroyed" | "up-to-4m-realized-cap-1m-net-change" | "p2pk-supply-in-loss-to-own-supply-ratio" | "shark-30p-price-paid" | "year-2015-80p-price-paid" | "shrimp-supply-to-circulating-supply-ratio" | "year-2014-value-created" | "up-to-2y-realized-profit" | "plankton-35p-price-paid" | "year-2016-realized-price-99-5p" | "market-price-to-year-2021-realized-price-ratio-99-5p" | "megalodon-70p-price-paid" | "market-price-to-year-2017-realized-price-ratio-99-5p" | "market-price-to-price-1m-sma-ratio-1y-sma" | "p2wpkh-realized-price-99p" | "sth-realized-price-1p" | "from-4y-supply-in-profit-to-own-supply-ratio" | "year-2021-cumulative-net-realized-profit-and-loss-1m-net-change" | "market-price-to-p2tr-realized-price-ratio-99p" | "p2pk-55p-price-paid" | "up-to-15y-20p-price-paid" | "from-1m-to-3m-95p-price-paid" | "market-price-to-from-5y-to-7y-realized-price-ratio-99-9p" | "p2sh-05p-price-paid" | "from-3y-to-5y-realized-loss" | "year-2016-net-realized-profit-and-loss-to-market-cap-ratio" | "crab-realized-loss" | "year-2020-75p-price-paid" | "price-8d-sma-99p" | "market-price-to-from-1m-to-3m-realized-price-ratio-1y-sma-momentum-oscillator" | "from-1y-to-2y-cumulative-net-realized-profit-and-loss-1m-net-change" | "market-price-to-up-to-10y-realized-price-ratio-99p" | "up-to-5y-90p-price-paid" | "year-2011-40p-price-paid" | "market-price-to-price-21d-sma-ratio-1m-sma" | "year-2022-net-realized-profit-and-loss-to-market-cap-ratio" | "p2wsh-55p-price-paid" | "illiquid-value-created" | "from-7y-to-10y-median-price-paid" | "year-2011-realized-cap" | "sth-value-created" | "up-to-7y-20p-price-paid" | "year-2020-realized-price-99p" | "hash-rate-2m-sma" | "from-3m-to-6m-70p-price-paid" | "from-5y-to-7y-15p-price-paid" | "sth-10p-price-paid" | "market-price-to-up-to-7y-realized-price-ratio-0-5p" | "up-to-5y-negative-unrealized-loss" | "from-15y-realized-price-99p" | "from-4y-45p-price-paid" | "up-to-4m-45p-price-paid" | "year-2013-55p-price-paid" | "block-size-1d-10p" | "market-price-to-active-price-ratio-1y-sma" | "up-to-2y-cumulative-net-realized-profit-and-loss-1m-net-change" | "year-2018-70p-price-paid" | "humpback-realized-profit" | "30p-price-paid" | "market-price-to-lth-realized-price-ratio-0-5p" | "up-to-10y-35p-price-paid" | "cointime-cap" | "market-price-to-price-4y-sma-ratio-99-5p" | "from-1m-to-3m-value-destroyed" | "price-6m-total-return" | "block-interval-1d-max" | "year-2009-cumulative-realized-profit" | "year-2019-cumulative-net-realized-profit-and-loss" | "whale-halved-supply-to-circulating-supply-ratio" | "sth-spent-output-profit-ratio" | "p2tr-realized-price" | "up-to-4m-60p-price-paid" | "up-to-4m-65p-price-paid" | "plankton-65p-price-paid" | "up-to-5y-60p-price-paid" | "p2pkh-value-destroyed" | "from-1d-to-1w-unrealized-profit" | "market-price-to-from-1w-to-1m-realized-price-ratio-1y-sma-momentum-oscillator" | "year-2021-65p-price-paid" | "net-realized-profit-and-loss-to-market-cap-ratio" | "year-2024-negative-unrealized-loss" | "year-2013-supply-in-loss-to-circulating-supply-ratio" | "from-7y-to-10y-45p-price-paid" | "p2pkh-unrealized-profit" | "up-to-1m-cumulative-net-realized-profit-and-loss-1m-net-change" | "year-2020-input-count" | "from-15y-utxo-count" | "market-price-to-from-1w-to-1m-realized-price-ratio-1y-sma" | "year-2015-realized-price-99-5p" | "from-10y-spent-output-profit-ratio" | "year-2009-supply-in-profit" | "p2sh-70p-price-paid" | "up-to-6m-05p-price-paid" | "market-price-to-illiquid-realized-price-ratio-1m-sma" | "up-to-6m-net-unrealized-profit-and-loss" | "year-2024-10p-price-paid" | "from-1d-to-1w-60p-price-paid" | "from-7y-to-10y-halved-supply" | "from-10y-55p-price-paid" | "p2wpkh-unrealized-loss" | "year-2009-35p-price-paid" | "highly-liquid-supply-to-circulating-supply-ratio" | "year-2011-realized-price" | "market-price-to-price-200w-sma-ratio-0-1p" | "market-price-to-up-to-1w-realized-price-ratio-99-9p" | "from-10y-supply-to-circulating-supply-ratio" | "market-price-to-year-2011-realized-price-ratio-0-5p" | "market-price-to-realized-price-ratio-1y-sma-momentum-oscillator" | "megalodon-realized-cap-1m-net-change" | "from-5y-to-7y-supply-in-profit-to-own-supply-ratio" | "liquid-unrealized-profit" | "from-1m-to-3m-80p-price-paid" | "from-3m-to-6m-realized-price-99p" | "p2pk-30p-price-paid" | "year-2020-utxo-count" | "up-to-2y-supply-in-profit-to-circulating-supply-ratio" | "sth-cumulative-realized-loss" | "market-price-to-from-2y-to-3y-realized-price-ratio-1w-sma" | "from-10y-to-15y-supply-in-profit-to-own-supply-ratio" | "from-2y-to-3y-net-realized-profit-and-loss" | "from-3m-to-6m-supply-in-loss-to-circulating-supply-ratio" | "year-2011-unrealized-profit" | "highly-liquid-cumulative-net-realized-profit-and-loss" | "market-price-to-price-1y-sma-ratio-1w-sma" | "market-price-to-up-to-2y-realized-price-ratio-99-5p" | "market-price-to-up-to-15y-realized-price-ratio-1w-sma" | "market-price-to-up-to-3m-realized-price-ratio-0-1p" | "up-to-7y-realized-price-1p" | "from-6m-to-1y-10p-price-paid" | "market-price-to-realized-price-ratio-99-5p" | "up-to-1d-halved-supply-to-circulating-supply-ratio" | "p2wpkh-20p-price-paid" | "year-2012-cumulative-net-realized-profit-and-loss" | "up-to-7y-45p-price-paid" | "market-price-to-year-2010-realized-price-ratio-0-5p" | "vaulted-supply" | "from-1m-to-3m-unrealized-profit" | "market-price-to-humpback-realized-price-ratio-99-5p" | "year-2014-supply-in-loss" | "realized-loss" | "year-2015-55p-price-paid" | "whale-supply-in-loss" | "market-price-to-up-to-2y-realized-price-ratio-1p" | "market-price-to-year-2015-realized-price-ratio-0-1p" | "crab-45p-price-paid" | "illiquid-20p-price-paid" | "up-to-1w-75p-price-paid" | "up-to-1w-net-realized-profit-and-loss" | "from-3y-to-5y-realized-cap-1m-net-change" | "up-to-1w-negative-realized-loss" | "from-10y-15p-price-paid" | "market-price-to-year-2012-realized-price-ratio-1m-sma" | "year-2016-10p-price-paid" | "up-to-2y-30p-price-paid" | "liquid-value-destroyed" | "year-2013-unrealized-profit" | "market-price-to-from-1w-to-1m-realized-price-ratio-0-1p" | "from-7y-to-10y-supply-in-profit-to-own-supply-ratio" | "market-price-to-up-to-3m-realized-price-ratio-99-9p" | "market-price-to-shark-realized-price-ratio-99p" | "p2tr-realized-cap" | "market-price-to-year-2016-realized-price-ratio-1p" | "up-to-7y-supply-in-profit" | "price-21d-sma-1p" | "up-to-4m-negative-realized-loss" | "from-1m-to-3m-median-price-paid" | "from-4y-supply-in-profit-to-circulating-supply-ratio" | "up-to-2y-realized-price-99-9p" | "from-10y-30p-price-paid" | "up-to-6m-75p-price-paid" | "from-6m-to-1y-05p-price-paid" | "up-to-3m-realized-profit" | "year-2011-60p-price-paid" | "market-price-to-megalodon-realized-price-ratio-1m-sma" | "from-1y-cumulative-realized-loss" | "up-to-2m-95p-price-paid" | "p2wsh-realized-price-99-5p" | "from-10y-to-15y-supply-to-circulating-supply-ratio" | "up-to-15y-60p-price-paid" | "from-3y-to-5y-90p-price-paid" | "from-7y-to-10y-realized-cap" | "market-price-to-up-to-1m-realized-price-ratio-1y-sma" | "p2tr-value-destroyed" | "year-2014-spent-output-profit-ratio" | "year-2014-30p-price-paid" | "liquid-net-unrealized-profit-and-loss" | "from-3y-to-5y-realized-price-0-1p" | "year-2014-net-realized-profit-and-loss-to-market-cap-ratio" | "year-2021-supply-in-loss-to-circulating-supply-ratio" | "market-price-to-from-2y-realized-price-ratio-99p" | "market-price-to-up-to-6m-realized-price-ratio-1w-sma" | "from-3y-to-5y-realized-price-99-9p" | "plankton-net-realized-profit-and-loss-to-market-cap-ratio" | "up-to-10y-15p-price-paid" | "from-1m-to-3m-10p-price-paid" | "humpback-median-price-paid" | "market-price-to-price-1w-sma-ratio-1y-sma-momentum-oscillator" | "up-to-4m-cumulative-net-realized-profit-and-loss" | "humpback-realized-loss" | "from-1y-to-2y-realized-price-0-1p" | "market-price-to-from-1y-realized-price-ratio-99-5p" | "up-to-6m-realized-price-99p" | "market-price-to-year-2020-realized-price-ratio-99p" | "from-2y-to-3y-halved-supply-to-circulating-supply-ratio" | "up-to-7y-value-created" | "from-3y-to-5y-supply-in-profit-to-circulating-supply-ratio" | "up-to-5m-net-unrealized-profit-and-loss" | "up-to-10y-supply-in-profit" | "from-1y-supply-in-loss" | "up-to-1d-cumulative-net-realized-profit-and-loss-1m-net-change" | "year-2012-40p-price-paid" | "up-to-6m-cumulative-realized-loss" | "market-price-to-price-55d-sma-ratio-1m-sma" | "from-7y-to-10y-negative-unrealized-loss" | "market-price-to-from-1y-realized-price-ratio-1w-sma" | "market-price-to-price-1m-sma-ratio-99-9p" | "year-2014-halved-supply-to-circulating-supply-ratio" | "up-to-1y-supply-in-loss-to-own-supply-ratio" | "year-2017-supply-in-profit-to-own-supply-ratio" | "year-2023-supply-in-loss-to-own-supply-ratio" | "from-1y-to-2y-80p-price-paid" | "year-2017-net-unrealized-profit-and-loss-to-market-cap-ratio" | "from-3m-to-6m-median-price-paid" | "hash-price" | "market-price-to-from-5y-to-7y-realized-price-ratio" | "p2tr-realized-price-1p" | "up-to-4m-35p-price-paid" | "market-price-to-from-1y-realized-price-ratio-1m-sma" | "block-weight-1d-10p" | "from-3m-to-6m-25p-price-paid" | "year-2011-sell-side-risk-ratio" | "60p-price-paid" | "price-34d-sma-99-9p" | "liquid-supply-to-circulating-supply-ratio" | "up-to-15y-value-created" | "lth-realized-profit" | "from-7y-to-10y-supply-to-circulating-supply-ratio" | "p2wsh-realized-profit" | "up-to-2m-realized-price-99-9p" | "up-to-4m-halved-supply" | "up-to-5y-realized-cap" | "from-7y-to-10y-20p-price-paid" | "crab-net-realized-profit-and-loss" | "shark-realized-price-99-9p" | "from-5y-to-7y-realized-price" | "p2wsh-85p-price-paid" | "up-to-3y-unrealized-profit" | "market-price-to-up-to-5y-realized-price-ratio-1w-sma" | "market-price-to-price-21d-sma-ratio" | "year-2020-sell-side-risk-ratio" | "market-price-to-active-price-ratio-0-1p" | "up-to-1y-unrealized-profit" | "up-to-5m-utxo-count" | "from-1y-supply-in-profit-to-own-supply-ratio" | "lth-05p-price-paid" | "year-2024-25p-price-paid" | "from-3m-to-6m-75p-price-paid" | "year-2023-halved-supply" | "from-5y-to-7y-45p-price-paid" | "up-to-2y-60p-price-paid" | "year-2016-unrealized-loss" | "from-3y-to-5y-realized-price-1p" | "from-15y-25p-price-paid" | "coinblocks-created" | "up-to-5m-realized-price-99-9p" | "year-2018-cumulative-net-realized-profit-and-loss" | "market-price-to-year-2015-realized-price-ratio-1m-sma" | "up-to-1m-spent-output-profit-ratio" | "from-2y-realized-price-0-5p" | "highly-liquid-net-realized-profit-and-loss-to-market-cap-ratio" | "crab-realized-price" | "p2wpkh-75p-price-paid" | "market-price-to-price-34d-sma-ratio-1m-sma" | "p2wpkh-supply-in-profit-to-circulating-supply-ratio" | "up-to-7y-utxo-count" | "year-2020-negative-realized-loss" | "up-to-1d-25p-price-paid" | "market-price-to-price-144d-sma-ratio-1y-sma-momentum-oscillator" | "p2wsh-realized-price" | "from-1m-to-3m-30p-price-paid" | "up-to-5m-25p-price-paid" | "crab-75p-price-paid" | "fish-cumulative-realized-loss" | "year-2020-realized-cap-1m-net-change" | "market-price-to-from-1y-to-2y-realized-price-ratio-1m-sma" | "market-price-to-from-3y-to-5y-realized-price-ratio" | "market-price-to-up-to-1y-realized-price-ratio-1y-sma-momentum-oscillator" | "market-price-to-up-to-4m-realized-price-ratio" | "from-5y-to-7y-supply-in-loss-to-circulating-supply-ratio" | "block-vbytes-1d-max" | "up-to-5m-net-unrealized-profit-and-loss-to-market-cap-ratio" | "humpback-cumulative-realized-loss" | "liquid-realized-price" | "up-to-7y-negative-realized-loss" | "year-2020-65p-price-paid" | "p2pk-realized-value" | "year-2016-net-unrealized-profit-and-loss" | "up-to-1w-realized-loss" | "year-2023-negative-realized-loss" | "plankton-net-realized-profit-and-loss" | "vaultedness" | "year-2019-net-realized-profit-and-loss" | "up-to-4m-supply-in-profit" | "market-price-to-from-7y-to-10y-realized-price-ratio-1w-sma" | "from-2y-to-3y-realized-price-99-5p" | "humpback-realized-price-99p" | "transaction-count" | "market-price-to-year-2011-realized-price-ratio-1y-sma-momentum-oscillator" | "year-2022-05p-price-paid" | "from-1y-to-2y-net-unrealized-profit-and-loss" | "from-1y-realized-price-99-5p" | "market-price-to-up-to-3m-realized-price-ratio-0-5p" | "market-price-to-from-10y-realized-price-ratio-0-5p" | "market-price-to-year-2022-realized-price-ratio-1y-sma" | "difficulty-adjustment" | "plankton-85p-price-paid" | "price-89d-sma-99-5p" | "up-to-1d-15p-price-paid" | "from-10y-05p-price-paid" | "from-10y-to-15y-30p-price-paid" | "sth-supply-in-loss" | "humpback-10p-price-paid" | "market-price-to-price-144d-sma-ratio-1m-sma" | "true-market-mean-99-5p" | "p2pkh-realized-price" | "shark-15p-price-paid" | "up-to-2m-25p-price-paid" | "up-to-2y-realized-price-0-5p" | "year-2019-60p-price-paid" | "market-price-to-vaulted-price-ratio-1y-sma-momentum-oscillator" | "up-to-3m-55p-price-paid" | "realized-price-1p" | "year-2022-15p-price-paid" | "price-4y-sma-1p" | "crab-unrealized-profit" | "shrimp-address-count" | "lth-net-unrealized-profit-and-loss-to-market-cap-ratio" | "shark-25p-price-paid" | "p2pkh-sell-side-risk-ratio" | "up-to-1d-05p-price-paid" | "from-1y-25p-price-paid" | "from-1m-to-3m-utxo-count" | "p2sh-15p-price-paid" | "up-to-2y-supply-in-profit" | "year-2010-realized-cap" | "year-2018-80p-price-paid" | "year-2022-25p-price-paid" | "liquid-supply-in-loss-to-circulating-supply-ratio" | "from-10y-to-15y-sell-side-risk-ratio" | "up-to-10y-realized-price-99-5p" | "from-10y-to-15y-realized-price-0-1p" | "up-to-6m-supply-in-loss-to-own-supply-ratio" | "sth-45p-price-paid" | "market-price-to-p2pkh-realized-price-ratio-1w-sma" | "year-2019-45p-price-paid" | "from-6m-to-1y-net-unrealized-profit-and-loss-to-market-cap-ratio" | "market-price-to-fish-realized-price-ratio-99-9p" | "from-15y-value-destroyed" | "p2pkh-supply-in-loss-to-circulating-supply-ratio" | "fish-20p-price-paid" | "year-2015-85p-price-paid" | "20p-price-paid" | "market-price-to-from-2y-to-3y-realized-price-ratio-0-1p" | "last-fees-in-dollars" | "fish-cumulative-net-realized-profit-and-loss-1m-net-change" | "market-price-to-price-13d-sma-ratio-1y-sma-momentum-oscillator" | "market-price-to-up-to-7y-realized-price-ratio-1y-sma-momentum-oscillator" | "from-1d-to-1w-75p-price-paid" | "up-to-3m-realized-price" | "from-2y-to-3y-cumulative-net-realized-profit-and-loss" | "humpback-realized-cap-1m-net-change" | "up-to-15y-utxo-count" | "up-to-2m-realized-value" | "year-2013-sell-side-risk-ratio" | "year-2024-85p-price-paid" | "p2tr-supply-in-loss-to-circulating-supply-ratio" | "year-2021-realized-loss" | "year-2010-value-destroyed" | "from-1y-40p-price-paid" | "up-to-1w-realized-price-99p" | "sth-realized-price-0-5p" | "crab-input-volume" | "market-price-to-p2wsh-realized-price-ratio-1y-sma" | "market-price-to-from-5y-to-7y-realized-price-ratio-0-1p" | "from-10y-net-unrealized-profit-and-loss" | "from-6m-to-1y-negative-unrealized-loss" | "true-market-mean-99-9p" | "year-2017-realized-price" | "up-to-2y-halved-supply-to-circulating-supply-ratio" | "sth-unrealized-profit" | "year-2010-10p-price-paid" | "year-2013-45p-price-paid" | "from-10y-net-unrealized-profit-and-loss-to-market-cap-ratio" | "year-2018-cumulative-realized-loss" | "market-price-to-up-to-3y-realized-price-ratio-1w-sma" | "up-to-2m-35p-price-paid" | "market-price-to-up-to-6m-realized-price-ratio" | "supply-in-loss-to-own-supply-ratio" | "up-to-6m-input-count" | "from-5y-to-7y-unrealized-profit" | "year-2020-85p-price-paid" | "fish-realized-price-99-9p" | "year-2010-85p-price-paid" | "year-2019-realized-price-0-1p" | "vaulted-price-0-5p" | "crab-55p-price-paid" | "up-to-10y-20p-price-paid" | "up-to-1d-45p-price-paid" | "market-price-to-p2pkh-realized-price-ratio-0-1p" | "from-3m-to-6m-cumulative-realized-loss" | "from-3y-to-5y-halved-supply-to-circulating-supply-ratio" | "year-2022-35p-price-paid" | "year-2017-halved-supply-to-circulating-supply-ratio" | "market-price-to-up-to-10y-realized-price-ratio" | "year-2020-realized-value" | "p2pkh-cumulative-net-realized-profit-and-loss-1m-net-change" | "year-2018-95p-price-paid" | "from-10y-to-15y-negative-realized-loss" | "highly-liquid-15p-price-paid" | "from-1w-to-1m-45p-price-paid" | "up-to-5m-05p-price-paid" | "from-10y-to-15y-80p-price-paid" | "illiquid-90p-price-paid" | "market-price-to-up-to-4m-realized-price-ratio-99-9p" | "subsidy-1y-sum" | "year-2009-net-unrealized-profit-and-loss-to-market-cap-ratio" | "market-price-to-year-2010-realized-price-ratio-1p" | "market-price-to-from-3y-to-5y-realized-price-ratio-0-1p" | "from-1d-to-1w-55p-price-paid" | "p2pkh-60p-price-paid" | "up-to-5m-net-realized-profit-and-loss-to-market-cap-ratio" | "from-1y-to-2y-realized-profit" | "year-2017-unrealized-profit" | "from-1y-to-2y-unrealized-profit" | "year-2010-net-unrealized-profit-and-loss" | "from-10y-utxo-count" | "vaulted-supply-3m-net-change" | "from-1d-to-1w-35p-price-paid" | "from-2y-net-realized-profit-and-loss" | "plankton-median-price-paid" | "up-to-1y-90p-price-paid" | "from-1w-to-1m-halved-supply" | "from-10y-net-realized-profit-and-loss-to-market-cap-ratio" | "up-to-3y-supply-in-profit" | "market-price-to-up-to-15y-realized-price-ratio-1y-sma-momentum-oscillator" | "shrimp-40p-price-paid" | "market-price-to-year-2010-realized-price-ratio-99p" | "up-to-2y-net-realized-profit-and-loss-to-market-cap-ratio" | "price-4y-sma-99-5p" | "shrimp-20p-price-paid" | "shrimp-value-destroyed" | "from-3m-to-6m-value-created" | "year-2014-sell-side-risk-ratio" | "from-10y-to-15y-40p-price-paid" | "from-15y-75p-price-paid" | "megalodon-supply-in-profit" | "market-price-to-year-2015-realized-price-ratio-99-5p" | "shrimp-cumulative-realized-profit" | "market-price-to-up-to-3y-realized-price-ratio-0-5p" | "up-to-3m-supply-to-circulating-supply-ratio" | "year-2020-realized-cap" | "market-price-to-year-2022-realized-price-ratio-99-5p" | "price-200w-sma" | "up-to-10y-realized-price-99p" | "humpback-15p-price-paid" | "up-to-15y-10p-price-paid" | "up-to-1w-realized-price-99-5p" | "whale-net-unrealized-profit-and-loss" | "year-2016-realized-loss" | "shrimp-supply-in-loss-to-own-supply-ratio" | "liquid-40p-price-paid" | "up-to-2y-realized-value" | "up-to-7y-spent-output-profit-ratio" | "year-2023-net-realized-profit-and-loss" | "lth-utxo-count" | "up-to-1w-supply-to-circulating-supply-ratio" | "price-55d-sma-99-5p" | "market-price-to-up-to-2m-realized-price-ratio-1p" | "liquid-realized-cap-1m-net-change" | "year-2016-realized-price-99-9p" | "up-to-3m-realized-price-99p" | "up-to-5m-realized-cap-1m-net-change" | "year-2022-supply-in-profit-to-circulating-supply-ratio" | "market-price-to-p2pk-realized-price-ratio-1p" | "market-price-to-shark-realized-price-ratio-0-5p" | "plankton-net-unrealized-profit-and-loss-to-market-cap-ratio" | "fish-supply-in-profit-to-circulating-supply-ratio" | "p2wsh-supply-in-profit-to-circulating-supply-ratio" | "from-10y-to-15y-supply-in-profit-to-circulating-supply-ratio" | "p2pkh-unrealized-loss" | "crab-65p-price-paid" | "illiquid-75p-price-paid" | "from-6m-to-1y-15p-price-paid" | "market-price-to-price-144d-sma-ratio-1w-sma" | "p2tr-95p-price-paid" | "up-to-1y-realized-price-1p" | "year-2014-45p-price-paid" | "from-10y-net-realized-profit-and-loss" | "year-2016-unrealized-profit" | "from-3m-to-6m-spent-output-profit-ratio" | "from-10y-supply-in-profit-to-circulating-supply-ratio" | "from-1y-realized-loss" | "market-price-to-highly-liquid-realized-price-ratio-0-5p" | "from-2y-to-3y-35p-price-paid" | "market-price-to-crab-realized-price-ratio-99-9p" | "megalodon-realized-price-99-9p" | "p2sh-net-realized-profit-and-loss" | "lth-cumulative-realized-loss" | "market-price-to-plankton-realized-price-ratio-1w-sma" | "up-to-1w-55p-price-paid" | "p2pk-median-price-paid" | "price-55d-sma-99p" | "up-to-4m-40p-price-paid" | "p2tr-realized-price-0-1p" | "year-2011-realized-cap-1m-net-change" | "year-2020-supply-in-loss-to-own-supply-ratio" | "from-2y-supply-in-profit" | "year-2018-supply-in-profit-to-own-supply-ratio" | "up-to-10y-net-unrealized-profit-and-loss-to-market-cap-ratio" | "year-2009-input-volume" | "year-2019-realized-price" | "humpback-net-realized-profit-and-loss" | "year-2023-40p-price-paid" | "year-2019-negative-realized-loss" | "plankton-utxo-count" | "from-7y-to-10y-60p-price-paid" | "market-price-to-p2sh-realized-price-ratio-0-1p" | "crab-15p-price-paid" | "market-price-to-cointime-price-ratio-99-5p" | "price-2y-sma-99p" | "market-price-to-price-200w-sma-ratio-1y-sma-momentum-oscillator" | "shrimp-realized-cap" | "market-price-to-up-to-2m-realized-price-ratio-0-5p" | "p2sh-10p-price-paid" | "from-2y-unrealized-loss" | "from-1w-to-1m-55p-price-paid" | "lth-cumulative-realized-profit" | "market-price-to-from-10y-realized-price-ratio-0-1p" | "market-price-to-from-2y-realized-price-ratio" | "year-2016-85p-price-paid" | "from-10y-80p-price-paid" | "up-to-1m-realized-profit" | "up-to-1d-85p-price-paid" | "p2wsh-input-count" | "up-to-3y-95p-price-paid" | "up-to-15y-realized-price-0-1p" | "whale-value-created" | "crab-realized-value" | "from-1d-to-1w-halved-supply-to-circulating-supply-ratio" | "from-1y-60p-price-paid" | "from-2y-45p-price-paid" | "from-2y-supply-in-loss-to-circulating-supply-ratio" | "from-4y-20p-price-paid" | "crab-supply-in-profit" | "market-price-to-crab-realized-price-ratio-1p" | "market-price-to-from-3y-to-5y-realized-price-ratio-1y-sma-momentum-oscillator" | "p2pkh-realized-cap-1m-net-change" | "from-1d-to-1w-cumulative-realized-profit" | "sth-net-realized-profit-and-loss" | "up-to-2y-20p-price-paid" | "market-price-to-up-to-7y-realized-price-ratio-1p" | "up-to-5m-supply-in-loss" | "from-2y-to-3y-cumulative-realized-profit" | "year-2019-30p-price-paid" | "up-to-1w-40p-price-paid" | "year-2021-realized-price" | "market-price-to-year-2016-realized-price-ratio-1y-sma" | "market-price-to-realized-price-ratio-0-1p" | "crab-unrealized-loss" | "market-price-to-fish-realized-price-ratio-1m-sma" | "year-2020-unrealized-profit" | "up-to-3y-30p-price-paid" | "year-2010-25p-price-paid" | "year-2018-75p-price-paid" | "price-3y-total-return" | "p2wsh-halved-supply" | "up-to-1d-75p-price-paid" | "from-5y-to-7y-cumulative-realized-loss" | "p2wpkh-supply-to-circulating-supply-ratio" | "crab-supply-to-circulating-supply-ratio" | "year-2011-halved-supply-to-circulating-supply-ratio" | "coinbase-in-dollars" | "net-unrealized-profit-and-loss-to-market-cap-ratio" | "up-to-6m-unrealized-loss" | "up-to-1y-15p-price-paid" | "from-1m-to-3m-supply-to-circulating-supply-ratio" | "from-1y-to-2y-45p-price-paid" | "shrimp-realized-loss" | "from-3m-to-6m-35p-price-paid" | "illiquid-45p-price-paid" | "market-price-to-cointime-price-ratio-0-5p" | "up-to-6m-input-volume" | "market-price-to-year-2024-realized-price-ratio" | "up-to-5m-60p-price-paid" | "year-2013-20p-price-paid" | "up-to-2m-halved-supply-to-circulating-supply-ratio" | "year-2024-value-destroyed" | "up-to-5m-halved-supply-to-circulating-supply-ratio" | "lth-cumulative-net-realized-profit-and-loss" | "market-price-to-up-to-4m-realized-price-ratio-1p" | "market-price-to-from-3y-to-5y-realized-price-ratio-99p" | "up-to-7y-halved-supply" | "from-2y-to-3y-value-destroyed" | "from-7y-to-10y-cumulative-realized-profit" | "market-price-to-shrimp-realized-price-ratio-1w-sma" | "market-price-to-liquid-realized-price-ratio-0-1p" | "up-to-2y-value-destroyed" | "shark-cumulative-net-realized-profit-and-loss" | "true-market-mean-99p" | "from-1w-to-1m-halved-supply-to-circulating-supply-ratio" | "market-price-to-from-15y-realized-price-ratio-0-1p" | "year-2010-realized-price-0-5p" | "price-89d-sma" | "year-2019-realized-price-99p" | "up-to-1w-input-volume" | "p2pk-supply-in-profit" | "shrimp-realized-price-99-9p" | "p2pk-05p-price-paid" | "from-1d-to-1w-realized-price-1p" | "up-to-1y-40p-price-paid" | "block-size-1d-sum" | "supply-to-circulating-supply-ratio" | "from-3y-to-5y-40p-price-paid" | "market-price-to-from-2y-realized-price-ratio-1w-sma" | "market-price-to-plankton-realized-price-ratio-1p" | "market-price-to-up-to-1m-realized-price-ratio-99p" | "market-price-to-year-2020-realized-price-ratio-99-9p" | "up-to-3y-40p-price-paid" | "market-price-to-from-1d-to-1w-realized-price-ratio-0-5p" | "year-2015-supply-in-profit" | "p2sh-75p-price-paid" | "market-price-to-year-2020-realized-price-ratio-0-1p" | "liquid-85p-price-paid" | "price-144d-sma-99-5p" | "up-to-5y-median-price-paid" | "up-to-6m-realized-price-1p" | "year-2013-40p-price-paid" | "year-2022-realized-profit" | "megalodon-address-count" | "market-price-to-year-2018-realized-price-ratio-99p" | "from-3y-to-5y-value-created" | "from-5y-to-7y-40p-price-paid" | "up-to-1m-25p-price-paid" | "from-2y-net-unrealized-profit-and-loss" | "market-price-to-liquid-realized-price-ratio-99p" | "block-weight-1d-90p" | "illiquid-realized-price-99-9p" | "plankton-20p-price-paid" | "halved-supply-to-circulating-supply-ratio" | "p2pkh-realized-value" | "whale-35p-price-paid" | "up-to-5m-10p-price-paid" | "highly-liquid-realized-cap-1m-net-change" | "market-price-to-year-2024-realized-price-ratio-1y-sma" | "p2pkh-realized-price-0-5p" | "from-2y-to-3y-negative-unrealized-loss" | "plankton-unrealized-loss" | "from-3m-to-6m-realized-price" | "up-to-10y-unrealized-profit" | "from-1w-to-1m-realized-price-0-5p" | "from-1d-to-1w-spent-output-profit-ratio" | "market-price-to-year-2016-realized-price-ratio-0-1p" | "year-2012-35p-price-paid" | "from-2y-to-3y-realized-cap" | "from-2y-to-3y-realized-price" | "up-to-1w-value-created" | "block-interval-1d-25p" | "year-2010-utxo-count" | "fish-median-price-paid" | "whale-cumulative-realized-loss" | "cumulative-realized-profit" | "p2pk-supply-in-loss-to-circulating-supply-ratio" | "from-1y-to-2y-55p-price-paid" | "up-to-1y-cumulative-realized-profit" | "up-to-5m-cumulative-net-realized-profit-and-loss-1m-net-change" | "market-price-to-true-market-mean-ratio-1w-sma" | "from-1m-to-3m-75p-price-paid" | "from-1d-to-1w-realized-price-99-9p" | "shrimp-median-price-paid" | "from-2y-to-3y-45p-price-paid" | "vaulted-price-99-9p" | "sth-realized-loss" | "up-to-1d-sell-side-risk-ratio" | "up-to-1y-realized-price-99-9p" | "lth-supply-in-profit-to-circulating-supply-ratio" | "from-7y-to-10y-supply" | "up-to-1m-realized-price-99-5p" | "p2tr-45p-price-paid" | "up-to-2m-realized-loss" | "up-to-5m-supply-in-profit-to-own-supply-ratio" | "from-3y-to-5y-70p-price-paid" | "up-to-2m-net-unrealized-profit-and-loss-to-market-cap-ratio" | "whale-realized-cap" | "year-2024-80p-price-paid" | "year-2010-supply-in-loss-to-own-supply-ratio" | "p2sh-supply-in-profit" | "year-2015-net-unrealized-profit-and-loss" | "blocks-mined-1m-target" | "plankton-realized-price-1p" | "market-price-to-year-2013-realized-price-ratio-1m-sma" | "market-price-to-year-2019-realized-price-ratio-1y-sma-momentum-oscillator" | "p2sh-realized-loss" | "from-1m-to-3m-unrealized-loss" | "market-price-to-year-2014-realized-price-ratio" | "market-price-to-year-2017-realized-price-ratio-99p" | "from-5y-to-7y-80p-price-paid" | "year-2010-halved-supply-to-circulating-supply-ratio" | "shrimp-realized-price-99p" | "date" | "lth-unrealized-loss" | "up-to-6m-95p-price-paid" | "year-2012-10p-price-paid" | "year-2024-15p-price-paid" | "from-2y-to-3y-supply-in-loss-to-own-supply-ratio" | "from-1d-to-1w-realized-price-0-5p" | "market-price-to-cointime-price-ratio-1p" | "p2wpkh-cumulative-net-realized-profit-and-loss-1m-net-change" | "shark-75p-price-paid" | "highly-liquid-negative-unrealized-loss" | "liquid-unrealized-loss" | "crab-supply-in-loss-to-circulating-supply-ratio" | "shark-net-realized-profit-and-loss-to-market-cap-ratio" | "from-4y-05p-price-paid" | "market-price-to-vaulted-price-ratio-1m-sma" | "price-13d-sma-0-1p" | "from-1y-to-2y-75p-price-paid" | "up-to-5m-realized-value" | "p2wpkh-cumulative-net-realized-profit-and-loss" | "market-price-to-year-2013-realized-price-ratio-1p" | "year-2016-cumulative-realized-profit" | "up-to-5y-input-count" | "year-2017-60p-price-paid" | "up-to-1w-halved-supply" | "market-price-to-price-21d-sma-ratio-1y-sma-momentum-oscillator" | "up-to-3m-95p-price-paid" | "from-3y-to-5y-45p-price-paid" | "from-1w-to-1m-spent-output-profit-ratio" | "year-2019-unrealized-loss" | "from-3m-to-6m-55p-price-paid" | "up-to-1y-realized-cap" | "up-to-4m-realized-price-99-5p" | "from-1d-to-1w-supply-in-profit-to-own-supply-ratio" | "from-1m-to-3m-sell-side-risk-ratio" | "up-to-1d-supply-in-loss-to-circulating-supply-ratio" | "market-price-to-from-1d-to-1w-realized-price-ratio-1y-sma-momentum-oscillator" | "from-6m-to-1y-realized-cap" | "illiquid-realized-cap-1m-net-change" | "year-2021-supply-in-loss" | "from-5y-to-7y-65p-price-paid" | "from-7y-to-10y-realized-price" | "highly-liquid-realized-price" | "up-to-2y-70p-price-paid" | "up-to-6m-net-realized-profit-and-loss-to-market-cap-ratio" | "megalodon-net-realized-profit-and-loss-to-market-cap-ratio" | "plankton-supply-in-profit-to-circulating-supply-ratio" | "year-2015-input-count" | "market-price-to-price-89d-sma-ratio-0-1p" | "year-2017-supply-to-circulating-supply-ratio" | "up-to-15y-realized-price-99-5p" | "sth-halved-supply" | "realized-cap-1m-net-change" | "from-1m-to-3m-65p-price-paid" | "year-2015-value-created" | "up-to-2m-75p-price-paid" | "market-price-to-up-to-1w-realized-price-ratio-1y-sma" | "market-price-to-illiquid-realized-price-ratio-0-5p" | "up-to-1y-realized-cap-1m-net-change" | "p2pk-value-destroyed" | "from-1y-supply" | "year-2020-net-unrealized-profit-and-loss" | "up-to-1w-supply-in-loss-to-circulating-supply-ratio" | "year-2021-30p-price-paid" | "sth-05p-price-paid" | "year-2013-net-realized-profit-and-loss-to-market-cap-ratio" | "market-price-to-from-1y-to-2y-realized-price-ratio-99-5p" | "from-2y-20p-price-paid" | "p2sh-address-count" | "year-2018-35p-price-paid" | "p2wsh-65p-price-paid" | "up-to-10y-cumulative-net-realized-profit-and-loss" | "up-to-1d-realized-price-99p" | "year-2024-median-price-paid" | "market-price-to-from-3m-to-6m-realized-price-ratio-1w-sma" | "year-2021-input-count" | "fees-in-dollars-1y-sum" | "market-price-to-price-144d-sma-ratio-0-5p" | "p2wpkh-net-unrealized-profit-and-loss-to-market-cap-ratio" | "up-to-6m-40p-price-paid" | "up-to-5y-net-unrealized-profit-and-loss" | "up-to-1d-realized-price-1p" | "market-price-to-price-21d-sma-ratio-0-1p" | "70p-price-paid" | "from-5y-to-7y-realized-price-0-5p" | "year-2011-input-volume" | "from-1y-realized-price-99p" | "year-2017-20p-price-paid" | "market-price-to-from-4y-realized-price-ratio-99-9p" | "year-2024-20p-price-paid" | "from-1w-to-1m-negative-realized-loss" | "up-to-15y-net-unrealized-profit-and-loss-to-market-cap-ratio" | "15p-price-paid" | "from-1d-to-1w-supply-in-loss-to-circulating-supply-ratio" | "p2pk-95p-price-paid" | "up-to-3y-realized-price" | "year-2011-supply-in-profit-to-own-supply-ratio" | "year-2016-input-volume" | "humpback-75p-price-paid" | "up-to-7y-cumulative-realized-profit" | "coinblocks-destroyed" | "market-price-to-year-2011-realized-price-ratio-99-5p" | "from-15y-cumulative-net-realized-profit-and-loss" | "up-to-3m-realized-price-0-5p" | "p2wsh-realized-price-99-9p" | "from-10y-to-15y-halved-supply" | "from-10y-to-15y-supply-in-loss" | "fish-net-realized-profit-and-loss-to-market-cap-ratio" | "up-to-1y-85p-price-paid" | "blocks-mined-1m-sma" | "from-1m-to-3m-cumulative-net-realized-profit-and-loss" | "from-6m-to-1y-realized-price-0-5p" | "up-to-2m-supply-in-profit-to-own-supply-ratio" | "up-to-7y-75p-price-paid" | "year-2012-80p-price-paid" | "p2sh-cumulative-realized-loss" | "year-2014-net-unrealized-profit-and-loss-to-market-cap-ratio" | "lth-sell-side-risk-ratio" | "up-to-1m-85p-price-paid" | "p2pkh-supply-in-loss" | "market-price-to-p2wsh-realized-price-ratio-1w-sma" | "from-3m-to-6m-sell-side-risk-ratio" | "humpback-realized-price-0-1p" | "up-to-7y-35p-price-paid" | "year-2024-55p-price-paid" | "year-2024-90p-price-paid" | "blocks-mined-1w-sum" | "year-2024-supply-in-loss-to-circulating-supply-ratio" | "from-1d-to-1w-supply-in-loss" | "blocks-mined-1y-sum" | "liquid-negative-unrealized-loss" | "liquid-supply-in-loss" | "lth-realized-price-0-5p" | "from-4y-40p-price-paid" | "p2sh-realized-price-99p" | "market-price-to-price-200w-sma-ratio-1p" | "market-price-to-year-2021-realized-price-ratio-99-9p" | "p2pkh-25p-price-paid" | "p2pkh-realized-price-1p" | "up-to-1m-30p-price-paid" | "from-2y-to-3y-median-price-paid" | "market-price-to-whale-realized-price-ratio" | "from-3m-to-6m-realized-price-99-9p" | "year-2016-55p-price-paid" | "year-2016-supply-in-profit-to-circulating-supply-ratio" | "year-2019-value-created" | "year-2024-95p-price-paid" | "up-to-2m-net-realized-profit-and-loss-to-market-cap-ratio" | "market-price-to-from-2y-realized-price-ratio-0-5p" | "market-price-to-up-to-2m-realized-price-ratio-1y-sma-momentum-oscillator" | "year-2019-negative-unrealized-loss" | "up-to-2y-55p-price-paid" | "up-to-7y-realized-price-99p" | "plankton-realized-profit" | "from-1y-to-2y-realized-cap" | "year-2024-spent-output-profit-ratio" | "market-price-to-from-1d-to-1w-realized-price-ratio-99-5p" | "up-to-7y-40p-price-paid" | "megalodon-supply" | "year-2019-realized-profit" | "from-10y-to-15y-90p-price-paid" | "p2tr-realized-price-99-9p" | "market-price-to-sth-realized-price-ratio-1m-sma" | "year-2013-realized-price-99-5p" | "humpback-sell-side-risk-ratio" | "year-2018-realized-price-99-5p" | "market-price-to-from-1m-to-3m-realized-price-ratio-1m-sma" | "market-price-to-up-to-10y-realized-price-ratio-99-5p" | "year-2023-60p-price-paid" | "plankton-address-count" | "up-to-3y-cumulative-realized-loss" | "from-1d-to-1w-85p-price-paid" | "market-price-to-from-2y-realized-price-ratio-1m-sma" | "from-5y-to-7y-realized-value" | "year-2009-05p-price-paid" | "year-2013-halved-supply" | "year-2014-10p-price-paid" | "market-price-to-from-5y-to-7y-realized-price-ratio-99p" | "year-2021-realized-price-99-5p" | "year-2017-supply-in-loss-to-circulating-supply-ratio" | "p2wpkh-net-realized-profit-and-loss-to-market-cap-ratio" | "liquid-70p-price-paid" | "from-1w-to-1m-05p-price-paid" | "shrimp-utxo-count" | "megalodon-negative-realized-loss" | "from-1d-to-1w-utxo-count" | "from-6m-to-1y-realized-loss" | "from-15y-85p-price-paid" | "market-price-to-from-6m-to-1y-realized-price-ratio-1y-sma" | "from-2y-75p-price-paid" | "market-price-to-price-2y-sma-ratio-0-5p" | "up-to-4m-cumulative-realized-loss" | "market-price-to-up-to-10y-realized-price-ratio-0-5p" | "year-2009-75p-price-paid" | "year-2014-supply" | "year-2014-value-destroyed" | "market-price-to-true-market-mean-ratio-0-1p" | "up-to-1w-60p-price-paid" | "year-2017-70p-price-paid" | "from-3y-to-5y-supply-in-loss" | "market-price-to-price-89d-sma-ratio-0-5p" | "from-1y-to-2y-realized-cap-1m-net-change" | "market-price-to-year-2010-realized-price-ratio-1y-sma-momentum-oscillator" | "p2pk-supply-in-profit-to-circulating-supply-ratio" | "p2wsh-sell-side-risk-ratio" | "market-price-to-from-5y-to-7y-realized-price-ratio-99-5p" | "from-5y-to-7y-95p-price-paid" | "input-volume" | "up-to-2m-negative-unrealized-loss" | "year-2020-supply-in-profit-to-circulating-supply-ratio" | "year-2009-realized-cap" | "market-price-to-price-55d-sma-ratio-1w-sma" | "year-2009-sell-side-risk-ratio" | "from-15y-net-realized-profit-and-loss-to-market-cap-ratio" | "from-4y-95p-price-paid" | "from-4y-net-realized-profit-and-loss-to-market-cap-ratio" | "from-5y-to-7y-supply" | "p2pkh-input-count" | "fish-95p-price-paid" | "from-1m-to-3m-05p-price-paid" | "from-15y-realized-profit" | "market-price-to-vaulted-price-ratio-0-5p" | "up-to-1d-supply-in-profit-to-own-supply-ratio" | "year-2015-negative-realized-loss" | "year-2016-supply-in-loss-to-circulating-supply-ratio" | "up-to-1y-negative-unrealized-loss" | "market-price-to-from-2y-to-3y-realized-price-ratio-1y-sma" | "whale-realized-price-0-1p" | "50" | "year-2021-60p-price-paid" | "highly-liquid-halved-supply-to-circulating-supply-ratio" | "from-7y-to-10y-supply-in-profit-to-circulating-supply-ratio" | "block-size-1d-90p" | "up-to-2m-net-realized-profit-and-loss" | "market-price-to-humpback-realized-price-ratio-99-9p" | "up-to-1y-60p-price-paid" | "highly-liquid-realized-price-0-1p" | "illiquid-net-realized-profit-and-loss" | "liquid-realized-price-0-1p" | "market-price-to-price-144d-sma-ratio" | "up-to-7y-70p-price-paid" | "shark-negative-realized-loss" | "p2pkh-spent-output-profit-ratio" | "shrimp-spent-output-profit-ratio" | "up-to-4m-input-volume" | "from-7y-to-10y-realized-value" | "market-price-to-realized-price-ratio-1y-sma" | "up-to-4m-75p-price-paid" | "market-price-to-up-to-1m-realized-price-ratio-1w-sma" | "from-4y-spent-output-profit-ratio" | "market-price-to-from-4y-realized-price-ratio-0-1p" | "market-price-to-up-to-3y-realized-price-ratio-99-9p" | "sth-realized-price-99-9p" | "market-price-to-price-1y-sma-ratio-1y-sma-momentum-oscillator" | "up-to-5y-30p-price-paid" | "p2tr-40p-price-paid" | "year-2009-halved-supply-to-circulating-supply-ratio" | "year-2014-20p-price-paid" | "year-2016-40p-price-paid" | "year-2020-cumulative-net-realized-profit-and-loss" | "year-2022-10p-price-paid" | "market-price-to-price-2y-sma-ratio-99p" | "cumulative-coinblocks-destroyed" | "p2pkh-realized-profit" | "market-price-to-from-1y-realized-price-ratio-1y-sma" | "p2wsh-90p-price-paid" | "up-to-5y-95p-price-paid" | "up-to-7y-25p-price-paid" | "from-6m-to-1y-80p-price-paid" | "shrimp-value-created" | "from-15y-unrealized-loss" | "from-6m-to-1y-supply-to-circulating-supply-ratio" | "market-price-to-from-1y-to-2y-realized-price-ratio-0-1p" | "up-to-2y-80p-price-paid" | "year-2009-80p-price-paid" | "from-2y-to-3y-supply-in-profit" | "from-2y-realized-price-0-1p" | "price-2y-sma-99-9p" | "from-1m-to-3m-net-realized-profit-and-loss" | "from-5y-to-7y-realized-price-99-5p" | "up-to-3y-supply" | "up-to-15y-90p-price-paid" | "up-to-5m-supply-in-profit-to-circulating-supply-ratio" | "year-2024-realized-price" | "year-2010-realized-profit" | "year-2022-realized-cap" | "market-price-to-up-to-1m-realized-price-ratio-99-5p" | "year-2016-supply-in-loss-to-own-supply-ratio" | "market-price-to-year-2016-realized-price-ratio" | "highly-liquid-30p-price-paid" | "year-2012-realized-price-0-1p" | "block-interval-1d-median" | "market-price-to-price-1m-sma-ratio-1w-sma" | "p2pkh-supply" | "market-price-to-p2wpkh-realized-price-ratio-99-5p" | "market-price-to-up-to-4m-realized-price-ratio-99p" | "up-to-1d-supply-to-circulating-supply-ratio" | "up-to-2y-realized-price" | "from-2y-to-3y-supply" | "from-15y-value-created" | "from-2y-to-3y-net-unrealized-profit-and-loss-to-market-cap-ratio" | "year-2013-supply-in-loss" | "market-price-to-up-to-2m-realized-price-ratio-1y-sma" | "humpback-supply-in-loss" | "year-2010-supply-to-circulating-supply-ratio" | "shrimp-realized-price-0-5p" | "from-1w-to-1m-60p-price-paid" | "megalodon-20p-price-paid" | "whale-cumulative-net-realized-profit-and-loss" | "coinbase-in-dollars-1y-sum" | "megalodon-25p-price-paid" | "price-13d-sma-99-5p" | "vaulted-price-99-5p" | "p2wsh-cumulative-net-realized-profit-and-loss" | "megalodon-net-unrealized-profit-and-loss" | "realized-profit" | "market-price-to-price-13d-sma-ratio-99p" | "up-to-5y-utxo-count" | "up-to-7y-realized-price-99-9p" | "from-6m-to-1y-utxo-count" | "p2pk-realized-cap" | "shark-realized-loss" | "market-price-to-price-13d-sma-ratio-1m-sma" | "cumulative-subsidy-in-dollars" | "from-1d-to-1w-net-realized-profit-and-loss-to-market-cap-ratio" | "up-to-1d-realized-price" | "whale-supply-in-profit-to-circulating-supply-ratio" | "up-to-1d-70p-price-paid" | "market-price-to-from-10y-to-15y-realized-price-ratio-99-5p" | "p2wpkh-90p-price-paid" | "price-55d-sma-99-9p" | "from-10y-realized-cap" | "block-size-1d-median" | "market-price-to-up-to-1m-realized-price-ratio-99-9p" | "up-to-5y-25p-price-paid" | "85p-price-paid" | "supply" | "up-to-1y-70p-price-paid" | "up-to-1w-cumulative-realized-loss" | "year-2016-80p-price-paid" | "year-2011-utxo-count" | "up-to-5m-realized-price-99-5p" | "market-price-to-up-to-6m-realized-price-ratio-0-1p" | "from-7y-to-10y-net-unrealized-profit-and-loss" | "up-to-3y-net-unrealized-profit-and-loss-to-market-cap-ratio" | "fish-value-created" | "megalodon-40p-price-paid" | "year-2018-supply-in-profit" | "from-15y-55p-price-paid" | "from-2y-to-3y-utxo-count" | "market-price-to-from-1y-realized-price-ratio-99p" | "market-price-to-from-6m-to-1y-realized-price-ratio-0-5p" | "shark-net-realized-profit-and-loss" | "market-price-to-liquid-realized-price-ratio-1y-sma" | "price-1m-sma-0-5p" | "up-to-1d-80p-price-paid" | "year-2015-supply-in-loss" | "market-price-to-p2tr-realized-price-ratio-0-5p" | "up-to-7y-05p-price-paid" | "year-2015-realized-value" | "market-price-to-up-to-1y-realized-price-ratio-99p" | "year-2013-60p-price-paid" | "from-1y-negative-realized-loss" | "from-5y-to-7y-net-realized-profit-and-loss" | "price-1w-sma-0-1p" | "sth-25p-price-paid" | "year-2011-median-price-paid" | "year-2020-05p-price-paid" | "up-to-5m-65p-price-paid" | "from-3y-to-5y-05p-price-paid" | "from-15y-cumulative-realized-profit" | "crab-cumulative-net-realized-profit-and-loss-1m-net-change" | "up-to-10y-supply-in-loss" | "market-price-to-price-8d-sma-ratio-99-5p" | "market-price-to-up-to-7y-realized-price-ratio-99-9p" | "market-price-to-megalodon-realized-price-ratio-99-9p" | "market-price-to-price-1w-sma-ratio-0-1p" | "humpback-20p-price-paid" | "up-to-5y-70p-price-paid" | "from-3m-to-6m-input-count" | "from-1y-to-2y-90p-price-paid" | "year-2018-60p-price-paid" | "up-to-1m-cumulative-net-realized-profit-and-loss" | "year-2015-45p-price-paid" | "address-count" | "from-1y-to-2y-realized-value" | "from-7y-to-10y-unrealized-loss" | "from-1m-to-3m-70p-price-paid" | "highly-liquid-address-count" | "market-price-to-year-2010-realized-price-ratio-1m-sma" | "transaction-count-1m-sma" | "market-price-to-megalodon-realized-price-ratio" | "from-4y-unrealized-profit" | "year-2024-cumulative-realized-profit" | "from-5y-to-7y-cumulative-realized-profit" | "transaction-volume-in-dollars-1m-sma" | "from-3y-to-5y-realized-price-99p" | "year-2010-net-unrealized-profit-and-loss-to-market-cap-ratio" | "from-2y-realized-value" | "year-2021-net-realized-profit-and-loss" | "up-to-1m-cumulative-realized-loss" | "year-2013-realized-loss" | "market-price-to-highly-liquid-realized-price-ratio-1p" | "from-3y-to-5y-halved-supply" | "from-7y-to-10y-cumulative-realized-loss" | "up-to-10y-40p-price-paid" | "highly-liquid-realized-cap" | "shark-cumulative-net-realized-profit-and-loss-1m-net-change" | "year-2010-cumulative-realized-profit" | "shrimp-realized-cap-1m-net-change" | "lth-realized-price-1p" | "shark-supply-in-loss-to-own-supply-ratio" | "up-to-2y-45p-price-paid" | "year-2014-input-count" | "year-2015-cumulative-realized-profit" | "market-price-to-year-2019-realized-price-ratio-1w-sma" | "annualized-transaction-volume-in-dollars" | "market-price-to-year-2014-realized-price-ratio-99-9p" | "illiquid-sell-side-risk-ratio" | "p2wpkh-spent-output-profit-ratio" | "up-to-10y-realized-price" | "market-price-to-up-to-1d-realized-price-ratio-1w-sma" | "sth-input-count" | "from-10y-to-15y-unrealized-profit" | "p2pkh-median-price-paid" | "market-price-to-megalodon-realized-price-ratio-99p" | "up-to-3y-80p-price-paid" | "illiquid-input-count" | "from-1m-to-3m-input-count" | "market-price-to-year-2022-realized-price-ratio-1m-sma" | "up-to-2y-15p-price-paid" | "year-2014-realized-price-99p" | "market-price-to-fish-realized-price-ratio" | "year-2012-negative-unrealized-loss" | "up-to-1m-80p-price-paid" | "fish-address-count" | "p2sh-80p-price-paid" | "shark-85p-price-paid" | "market-price-to-up-to-15y-realized-price-ratio-0-5p" | "up-to-1m-supply-in-profit" | "from-6m-to-1y-realized-cap-1m-net-change" | "market-price-to-year-2011-realized-price-ratio-1w-sma" | "new-addresses" | "plankton-negative-realized-loss" | "from-2y-spent-output-profit-ratio" | "market-price-to-p2pkh-realized-price-ratio" | "market-price-to-price-1y-sma-ratio-1m-sma" | "market-price-to-year-2011-realized-price-ratio-99-9p" | "market-price-to-up-to-10y-realized-price-ratio-99-9p" | "megalodon-realized-profit" | "price-89d-sma-0-5p" | "from-4y-cumulative-realized-loss" | "up-to-4m-median-price-paid" | "year-2010-15p-price-paid" | "market-price-to-humpback-realized-price-ratio-1p" | "market-price-to-up-to-2m-realized-price-ratio-99-5p" | "year-2017-cumulative-realized-profit" | "crab-spent-output-profit-ratio" | "p2wpkh-supply-in-loss-to-own-supply-ratio" | "year-2019-realized-price-99-5p" | "from-7y-to-10y-net-realized-profit-and-loss-to-market-cap-ratio" | "year-2009-realized-price" | "year-2010-negative-realized-loss" | "from-3y-to-5y-10p-price-paid" | "up-to-6m-45p-price-paid" | "sth-75p-price-paid" | "up-to-2y-cumulative-net-realized-profit-and-loss" | "from-1y-30p-price-paid" | "market-price-to-active-price-ratio-1p" | "sth-cumulative-net-realized-profit-and-loss" | "sth-net-realized-profit-and-loss-to-market-cap-ratio" | "up-to-10y-realized-price-1p" | "year-2019-unrealized-profit" | "shark-realized-price-0-5p" | "plankton-70p-price-paid" | "market-price-to-year-2012-realized-price-ratio-99-5p" | "shrimp-25p-price-paid" | "crab-net-realized-profit-and-loss-to-market-cap-ratio" | "sth-realized-cap-1m-net-change" | "year-2016-sell-side-risk-ratio" | "from-2y-realized-loss" | "highly-liquid-sell-side-risk-ratio" | "from-1d-to-1w-realized-cap-1m-net-change" | "price-200w-sma-1p" | "up-to-2y-supply-in-loss-to-circulating-supply-ratio" | "liquid-75p-price-paid" | "up-to-1w-20p-price-paid" | "from-10y-to-15y-input-volume" | "year-2013-90p-price-paid" | "from-1y-to-2y-85p-price-paid" | "market-price-to-year-2019-realized-price-ratio" | "up-to-7y-60p-price-paid" | "from-1y-to-2y-input-volume" | "price-200w-sma-99-9p" | "unrealized-loss" | "year-2015-30p-price-paid" | "year-2013-supply-to-circulating-supply-ratio" | "market-price-to-price-21d-sma-ratio-1p" | "from-10y-input-count" | "from-6m-to-1y-35p-price-paid" | "from-3m-to-6m-realized-price-0-1p" | "year-2020-halved-supply-to-circulating-supply-ratio" | "market-price-to-year-2010-realized-price-ratio-99-9p" | "from-4y-halved-supply-to-circulating-supply-ratio" | "humpback-55p-price-paid" | "market-price-to-from-1d-to-1w-realized-price-ratio-1p" | "up-to-10y-realized-price-99-9p" | "up-to-2y-input-volume" | "up-to-4m-25p-price-paid" | "up-to-4m-cumulative-realized-profit" | "up-to-2m-input-count" | "p2pk-supply" | "market-price-to-sth-realized-price-ratio-99-5p" | "p2pk-realized-price-99-5p" | "from-7y-to-10y-spent-output-profit-ratio" | "market-price-to-p2tr-realized-price-ratio-1p" | "market-price-to-price-8d-sma-ratio-1w-sma" | "from-7y-to-10y-realized-price-99-5p" | "megalodon-value-destroyed" | "fish-input-volume" | "from-7y-to-10y-65p-price-paid" | "year-2016-95p-price-paid" | "year-2011-realized-price-1p" | "market-price-to-price-4y-sma-ratio-99-9p" | "from-5y-to-7y-supply-in-loss-to-own-supply-ratio" | "year-2009-55p-price-paid" | "up-to-5m-realized-price" | "market-price-to-from-10y-realized-price-ratio-1m-sma" | "from-1y-95p-price-paid" | "p2tr-spent-output-profit-ratio" | "illiquid-25p-price-paid" | "market-price-to-year-2012-realized-price-ratio" | "up-to-1y-utxo-count" | "up-to-3m-median-price-paid" | "p2wsh-95p-price-paid" | "up-to-10y-cumulative-net-realized-profit-and-loss-1m-net-change" | "year-2023-65p-price-paid" | "market-price-to-up-to-3m-realized-price-ratio-1y-sma-momentum-oscillator" | "up-to-3y-cumulative-realized-profit" | "whale-realized-price-99-5p" | "market-price-to-up-to-10y-realized-price-ratio-1m-sma" | "year-2021-realized-price-0-1p" | "market-price-to-year-2014-realized-price-ratio-1y-sma-momentum-oscillator" | "from-15y-70p-price-paid" | "price-8d-sma-1p" | "market-price-to-price-1y-sma-ratio-99p" | "up-to-2m-45p-price-paid" | "from-1d-to-1w-sell-side-risk-ratio" | "p2pkh-20p-price-paid" | "humpback-value-destroyed" | "year-2016-value-created" | "from-1y-to-2y-05p-price-paid" | "year-2024-value-created" | "from-10y-halved-supply" | "from-1y-to-2y-realized-price-1p" | "market-price-to-from-1y-realized-price-ratio-0-5p" | "market-price-to-from-5y-to-7y-realized-price-ratio-0-5p" | "price-8y-total-return" | "humpback-65p-price-paid" | "market-price-to-price-34d-sma-ratio-99-9p" | "shrimp-70p-price-paid" | "year-2014-negative-realized-loss" | "year-2014-supply-in-loss-to-circulating-supply-ratio" | "year-2019-supply-in-profit-to-circulating-supply-ratio" | "market-price-to-p2pk-realized-price-ratio-99p" | "up-to-1d-20p-price-paid" | "up-to-1y-supply-in-profit-to-own-supply-ratio" | "up-to-7y-30p-price-paid" | "year-2014-realized-price-1p" | "year-2023-35p-price-paid" | "realized-value" | "whale-realized-loss" | "p2tr-negative-realized-loss" | "from-15y-realized-price" | "year-2011-cumulative-realized-loss" | "lth-net-unrealized-profit-and-loss" | "fish-30p-price-paid" | "from-5y-to-7y-net-realized-profit-and-loss-to-market-cap-ratio" | "price-2y-sma-1p" | "up-to-1d-value-created" | "whale-80p-price-paid" | "p2wpkh-15p-price-paid" | "year-2017-realized-price-99-9p" | "from-2y-sell-side-risk-ratio" | "from-10y-to-15y-realized-price-99-5p" | "market-price-to-up-to-3m-realized-price-ratio-1m-sma" | "from-10y-25p-price-paid" | "from-1y-input-count" | "market-price-to-up-to-3y-realized-price-ratio-99-5p" | "market-price-to-year-2010-realized-price-ratio-0-1p" | "transaction-volume-1m-sma" | "year-2022-supply-in-loss-to-own-supply-ratio" | "up-to-3y-70p-price-paid" | "from-1w-to-1m-supply-in-loss-to-own-supply-ratio" | "p2wsh-value-created" | "year-2016-70p-price-paid" | "market-price-to-sth-realized-price-ratio-1p" | "market-price-to-p2wsh-realized-price-ratio-99-5p" | "from-1w-to-1m-input-volume" | "price-89d-sma-99p" | "up-to-1d-65p-price-paid" | "up-to-5y-realized-price-99-9p" | "whale-95p-price-paid" | "market-price-to-price-1m-sma-ratio-99-5p" | "up-to-1d-unrealized-profit" | "year-2022-40p-price-paid" | "from-1y-to-2y-value-destroyed" | "from-15y-supply" | "whale-realized-price-0-5p" | "year-2015-value-destroyed" | "from-1y-to-2y-supply-in-loss-to-circulating-supply-ratio" | "year-2023-30p-price-paid" | "up-to-1m-45p-price-paid" | "shrimp-15p-price-paid" | "up-to-2y-realized-price-99p" | "year-2016-net-unrealized-profit-and-loss-to-market-cap-ratio" | "sth-negative-realized-loss" | "cumulative-realized-loss" | "p2wsh-net-realized-profit-and-loss-to-market-cap-ratio" | "plankton-net-unrealized-profit-and-loss" | "illiquid-net-unrealized-profit-and-loss-to-market-cap-ratio" | "market-price-to-year-2009-realized-price-ratio-0-5p" | "up-to-7y-realized-price-0-5p" | "year-2011-supply-in-profit" | "from-2y-value-destroyed" | "up-to-10y-value-created" | "year-2011-95p-price-paid" | "market-price-to-up-to-5m-realized-price-ratio-99p" | "year-2023-input-volume" | "year-2024-supply-in-profit-to-circulating-supply-ratio" | "illiquid-realized-price-0-5p" | "from-6m-to-1y-25p-price-paid" | "p2pkh-net-unrealized-profit-and-loss" | "from-15y-negative-realized-loss" | "vaulted-cap" | "year-2014-supply-in-profit-to-circulating-supply-ratio" | "year-2010-net-realized-profit-and-loss" | "year-2013-65p-price-paid" | "from-1m-to-3m-net-unrealized-profit-and-loss" | "market-price-to-price-89d-sma-ratio" | "humpback-negative-realized-loss" | "whale-realized-value" | "lth-realized-price-0-1p" | "year-2015-25p-price-paid" | "p2wsh-20p-price-paid" | "year-2020-55p-price-paid" | "year-2023-realized-price-99-9p" | "from-5y-to-7y-realized-price-99-9p" | "year-2019-net-unrealized-profit-and-loss-to-market-cap-ratio" | "year-2009-value-created" | "up-to-5m-15p-price-paid" | "p2tr-net-realized-profit-and-loss" | "shrimp-65p-price-paid" | "from-2y-to-3y-unrealized-loss" | "from-3m-to-6m-negative-realized-loss" | "up-to-5m-negative-unrealized-loss" | "year-2011-cumulative-net-realized-profit-and-loss" | "year-2016-05p-price-paid" | "highly-liquid-supply-in-profit" | "supply-in-profit" | "from-2y-40p-price-paid" | "up-to-4m-net-realized-profit-and-loss-to-market-cap-ratio" | "market-price-to-lth-realized-price-ratio-1y-sma-momentum-oscillator" | "from-1w-to-1m-net-unrealized-profit-and-loss-to-market-cap-ratio" | "market-price-to-up-to-7y-realized-price-ratio-1w-sma" | "whale-65p-price-paid" | "up-to-5y-value-destroyed" | "from-10y-sell-side-risk-ratio" | "last-coinbase" | "true-market-mean-1p" | "market-price-to-year-2010-realized-price-ratio" | "price-144d-sma-1p" | "up-to-1d-realized-price-99-5p" | "up-to-1w-realized-cap" | "from-1m-to-3m-20p-price-paid" | "from-1y-cumulative-net-realized-profit-and-loss-1m-net-change" | "liquid-realized-value" | "market-price-to-up-to-2y-realized-price-ratio-99p" | "market-price-to-up-to-6m-realized-price-ratio-99-5p" | "market-price-to-from-2y-realized-price-ratio-99-5p" | "humpback-40p-price-paid" | "lth-median-price-paid" | "market-price-to-p2wpkh-realized-price-ratio-1w-sma" | "active-supply" | "p2sh-cumulative-net-realized-profit-and-loss-1m-net-change" | "up-to-1m-supply-in-loss-to-circulating-supply-ratio" | "from-1d-to-1w-70p-price-paid" | "market-price-to-year-2022-realized-price-ratio-1w-sma" | "year-2009-supply-in-profit-to-circulating-supply-ratio" | "year-2016-net-realized-profit-and-loss" | "year-2016-supply-to-circulating-supply-ratio" | "market-price-to-illiquid-realized-price-ratio-1p" | "from-10y-realized-value" | "up-to-6m-median-price-paid" | "market-price-to-from-1y-realized-price-ratio-1y-sma-momentum-oscillator" | "from-2y-supply-to-circulating-supply-ratio" | "market-price-to-shark-realized-price-ratio-1y-sma-momentum-oscillator" | "shark-net-unrealized-profit-and-loss-to-market-cap-ratio" | "up-to-6m-80p-price-paid" | "from-3m-to-6m-realized-value" | "year-2015-spent-output-profit-ratio" | "from-1m-to-3m-90p-price-paid" | "market-price-to-price-13d-sma-ratio-0-5p" | "market-price-to-price-4y-sma-ratio-1p" | "up-to-1y-95p-price-paid" | "up-to-2y-realized-cap" | "whale-supply" | "from-2y-to-3y-10p-price-paid" | "highly-liquid-net-realized-profit-and-loss" | "price-21d-sma-99-5p" | "market-price-to-price-4y-sma-ratio-1m-sma" | "from-10y-to-15y-realized-cap" | "market-price-to-up-to-1w-realized-price-ratio-1w-sma" | "market-price-to-year-2009-realized-price-ratio" | "up-to-4m-supply-in-profit-to-circulating-supply-ratio" | "fish-65p-price-paid" | "year-2012-utxo-count" | "year-2016-65p-price-paid" | "year-2019-realized-loss" | "year-2023-cumulative-realized-loss" | "from-10y-to-15y-20p-price-paid" | "p2pk-40p-price-paid" | "up-to-5y-realized-price-1p" | "shark-realized-cap" | "whale-negative-unrealized-loss" | "year-2010-supply-in-profit" | "year-2013-net-unrealized-profit-and-loss-to-market-cap-ratio" | "from-1d-to-1w-45p-price-paid" | "market-price-to-cointime-price-ratio-99p" | "from-10y-to-15y-55p-price-paid" | "from-1w-to-1m-65p-price-paid" | "market-price-to-up-to-10y-realized-price-ratio-1w-sma" | "market-price-to-from-2y-to-3y-realized-price-ratio-1y-sma-momentum-oscillator" | "p2sh-value-created" | "year-2018-cumulative-realized-profit" | "year-2016-supply-in-profit" | "year-2012-realized-cap" | "p2wpkh-supply-in-profit" | "year-2009-unrealized-loss" | "sth-95p-price-paid" | "market-price-to-price-144d-sma-ratio-1y-sma" | "year-2012-realized-value" | "fish-15p-price-paid" | "market-price-to-year-2023-realized-price-ratio-0-5p" | "subsidy-in-dollars" | "illiquid-supply-to-circulating-supply-ratio" | "up-to-2y-75p-price-paid" | "up-to-4m-realized-price-0-1p" | "year-2024-negative-realized-loss" | "from-3y-to-5y-85p-price-paid" | "year-2017-net-unrealized-profit-and-loss" | "year-2016-25p-price-paid" | "megalodon-supply-in-profit-to-circulating-supply-ratio" | "up-to-6m-supply-in-profit-to-circulating-supply-ratio" | "market-price-to-up-to-15y-realized-price-ratio-99-5p" | "p2pkh-cumulative-realized-profit" | "from-10y-unrealized-profit" | "from-1d-to-1w-80p-price-paid" | "p2wpkh-realized-cap" | "up-to-2y-35p-price-paid" | "vaulting-rate" | "up-to-5y-65p-price-paid" | "year-2015-halved-supply" | "price-2y-sma" | "from-10y-negative-realized-loss" | "cointime-price-99-5p" | "from-2y-to-3y-realized-loss" | "market-price-to-from-2y-realized-price-ratio-1y-sma" | "year-2021-value-destroyed" | "p2pkh-40p-price-paid" | "from-10y-to-15y-65p-price-paid" | "fish-halved-supply-to-circulating-supply-ratio" | "from-2y-70p-price-paid" | "market-price-to-highly-liquid-realized-price-ratio-1m-sma" | "market-price-to-year-2011-realized-price-ratio-0-1p" | "up-to-1d-negative-realized-loss" | "price-1m-total-return" | "year-2017-halved-supply" | "year-2022-realized-price-0-1p" | "cumulative-coinblocks-created" | "from-1y-to-2y-realized-price-99p" | "up-to-3m-value-destroyed" | "up-to-7y-input-volume" | "from-5y-to-7y-35p-price-paid" | "from-6m-to-1y-60p-price-paid" | "up-to-15y-55p-price-paid" | "from-1d-to-1w-20p-price-paid" | "price-2y-sma-0-1p" | "year-2023-15p-price-paid" | "sth-supply" | "from-10y-to-15y-supply-in-loss-to-circulating-supply-ratio" | "year-2023-realized-loss" | "market-price-to-from-4y-realized-price-ratio" | "year-2009-cumulative-realized-loss" | "market-price-to-true-market-mean-ratio-99p" | "market-price-to-liquid-realized-price-ratio-99-5p" | "p2pkh-70p-price-paid" | "p2pk-net-unrealized-profit-and-loss-to-market-cap-ratio" | "up-to-2m-70p-price-paid" | "up-to-2y-net-unrealized-profit-and-loss-to-market-cap-ratio" | "p2pk-10p-price-paid" | "up-to-5y-cumulative-realized-profit" | "year-2015-input-volume" | "blocks-mined-1y-target" | "cumulative-block-size" | "market-price-to-price-1m-sma-ratio-1p" | "crab-median-price-paid" | "year-2013-supply-in-profit-to-own-supply-ratio" | "from-7y-to-10y-80p-price-paid" | "market-price-to-year-2023-realized-price-ratio-1y-sma-momentum-oscillator" | "market-price-to-price-1y-sma-ratio-0-1p" | "year-2011-05p-price-paid" | "liquid-15p-price-paid" | "p2wsh-supply-in-loss-to-own-supply-ratio" | "market-price-to-from-5y-to-7y-realized-price-ratio-1m-sma" | "up-to-2y-halved-supply" | "from-2y-supply-in-profit-to-circulating-supply-ratio" | "market-price-to-highly-liquid-realized-price-ratio-99-5p" | "market-price-to-humpback-realized-price-ratio" | "market-price-to-price-2y-sma-ratio" | "up-to-2y-realized-cap-1m-net-change" | "up-to-6m-negative-unrealized-loss" | "from-10y-70p-price-paid" | "coinblocks-stored" | "p2sh-supply-in-loss-to-circulating-supply-ratio" | "market-price-to-from-10y-realized-price-ratio-1y-sma" | "shrimp-realized-price-1p" | "up-to-1d-net-unrealized-profit-and-loss-to-market-cap-ratio" | "year-2009-value-destroyed" | "year-2011-input-count" | "year-2012-65p-price-paid" | "p2pkh-05p-price-paid" | "shark-cumulative-realized-loss" | "market-price-to-up-to-10y-realized-price-ratio-1y-sma" | "from-15y-realized-price-0-5p" | "up-to-3y-65p-price-paid" | "plankton-80p-price-paid" | "year-2014-25p-price-paid" | "year-2020-realized-profit" | "fish-supply" | "up-to-1y-65p-price-paid" | "illiquid-supply-in-profit-to-circulating-supply-ratio" | "year-2023-75p-price-paid" | "year-2010-halved-supply" | "from-15y-net-realized-profit-and-loss" | "year-2017-cumulative-net-realized-profit-and-loss" | "p2pk-halved-supply-to-circulating-supply-ratio" | "from-1w-to-1m-sell-side-risk-ratio" | "year-2016-halved-supply" | "year-2023-55p-price-paid" | "price-1d-total-return" | "liquid-value-created" | "market-price-to-from-1y-to-2y-realized-price-ratio-1y-sma-momentum-oscillator" | "up-to-1w-45p-price-paid" | "year-2012-15p-price-paid" | "year-2011-25p-price-paid" | "market-price-to-from-4y-realized-price-ratio-1w-sma" | "p2sh-median-price-paid" | "p2pkh-90p-price-paid" | "year-2016-cumulative-realized-loss" | "market-price-to-from-10y-to-15y-realized-price-ratio" | "up-to-5y-75p-price-paid" | "year-2013-net-unrealized-profit-and-loss" | "market-price-to-illiquid-realized-price-ratio-1w-sma" | "up-to-1m-net-unrealized-profit-and-loss" | "year-2019-supply-in-loss-to-circulating-supply-ratio" | "up-to-10y-65p-price-paid" | "up-to-2m-realized-price" | "up-to-1d-realized-cap" | "up-to-1m-realized-price-0-5p" | "market-price-to-price-1w-sma-ratio-1p" | "from-6m-to-1y-value-created" | "unrealized-profit" | "megalodon-realized-value" | "p2wsh-15p-price-paid" | "from-5y-to-7y-90p-price-paid" | "from-6m-to-1y-65p-price-paid" | "humpback-unrealized-profit" | "market-price-to-year-2021-realized-price-ratio-1y-sma-momentum-oscillator" | "year-2015-realized-profit" | "year-2022-90p-price-paid" | "year-2012-45p-price-paid" | "up-to-15y-value-destroyed" | "market-price-to-from-3m-to-6m-realized-price-ratio-1y-sma-momentum-oscillator" | "market-price-to-humpback-realized-price-ratio-1m-sma" | "p2sh-40p-price-paid" | "from-3y-to-5y-negative-unrealized-loss" | "up-to-1w-cumulative-realized-profit" | "year-2012-55p-price-paid" | "from-10y-85p-price-paid" | "market-price-to-up-to-5y-realized-price-ratio-99-5p" | "plankton-10p-price-paid" | "p2sh-realized-price-1p" | "market-price-to-year-2009-realized-price-ratio-99p" | "p2sh-utxo-count" | "up-to-1w-80p-price-paid" | "market-price-to-year-2024-realized-price-ratio-0-1p" | "25p-price-paid" | "up-to-3y-realized-value" | "year-2018-realized-price-0-5p" | "up-to-15y-negative-realized-loss" | "from-3y-to-5y-cumulative-realized-profit" | "fish-supply-in-loss-to-circulating-supply-ratio" | "highly-liquid-value-destroyed" | "from-1m-to-3m-85p-price-paid" | "megalodon-realized-loss" | "market-price-to-from-4y-realized-price-ratio-1y-sma" | "p2pk-70p-price-paid" | "plankton-sell-side-risk-ratio" | "price-144d-sma-0-5p" | "year-2013-cumulative-realized-loss" | "from-1w-to-1m-value-created" | "up-to-1m-value-destroyed" | "year-2019-supply" | "year-2024-realized-price-99-9p" | "market-price-to-from-1d-to-1w-realized-price-ratio-1m-sma" | "market-price-to-sth-realized-price-ratio-1y-sma-momentum-oscillator" | "illiquid-85p-price-paid" | "up-to-6m-value-created" | "up-to-2y-net-realized-profit-and-loss" | "year-2021-supply-in-loss-to-own-supply-ratio" | "shrimp-realized-value" | "year-2024-supply-in-loss-to-own-supply-ratio" | "up-to-6m-15p-price-paid" | "up-to-2m-65p-price-paid" | "from-4y-sell-side-risk-ratio" | "100" | "p2wsh-realized-cap" | "liquid-cumulative-net-realized-profit-and-loss" | "market-price-to-up-to-1m-realized-price-ratio" | "block-weight-1d-average" | "megalodon-supply-in-loss-to-own-supply-ratio" | "up-to-1y-value-destroyed" | "whale-25p-price-paid" | "up-to-15y-supply" | "up-to-1m-net-realized-profit-and-loss" | "up-to-1m-realized-loss" | "market-price-to-cointime-price-ratio-1y-sma" | "from-1y-65p-price-paid" | "market-price-to-price-1w-sma-ratio-1w-sma" | "up-to-6m-supply-in-loss-to-circulating-supply-ratio" | "from-4y-supply-in-loss" | "from-3m-to-6m-realized-cap-1m-net-change" | "up-to-15y-supply-in-profit-to-circulating-supply-ratio" | "block-weight" | "up-to-1m-70p-price-paid" | "year-2015-net-unrealized-profit-and-loss-to-market-cap-ratio" | "market-price-to-p2sh-realized-price-ratio-1w-sma" | "up-to-5y-unrealized-loss" | "producerness" | "market-price-to-from-1m-to-3m-realized-price-ratio-1w-sma" | "price-144d-sma" | "shark-45p-price-paid" | "from-2y-negative-unrealized-loss" | "up-to-1w-supply-in-loss" | "from-1m-to-3m-net-unrealized-profit-and-loss-to-market-cap-ratio" | "year-2012-halved-supply" | "market-price-to-price-8d-sma-ratio-99-9p" | "market-price-to-up-to-6m-realized-price-ratio-99-9p" | "from-1w-to-1m-cumulative-net-realized-profit-and-loss" | "market-price-to-up-to-1m-realized-price-ratio-0-5p" | "shrimp-10p-price-paid" | "market-price-to-vaulted-price-ratio-99p" | "from-3y-to-5y-median-price-paid" | "up-to-2m-value-destroyed" | "year-2017-05p-price-paid" | "market-price-to-price-55d-sma-ratio" | "from-15y-cumulative-net-realized-profit-and-loss-1m-net-change" | "shrimp-30p-price-paid" | "sth-supply-in-profit-to-own-supply-ratio" | "up-to-1y-20p-price-paid" | "p2tr-median-price-paid" | "year-2012-supply-in-profit" | "lth-supply-in-loss-to-own-supply-ratio" | "market-price-to-from-1m-to-3m-realized-price-ratio-99-9p" | "year-2014-85p-price-paid" | "year-2020-supply-in-profit-to-own-supply-ratio" | "from-2y-to-3y-85p-price-paid" | "lth-80p-price-paid" | "market-price-to-up-to-1w-realized-price-ratio-1y-sma-momentum-oscillator" | "price-1y-sma-0-1p" | "from-3y-to-5y-20p-price-paid" | "p2pkh-realized-cap" | "liquid-supply-in-profit-to-circulating-supply-ratio" | "up-to-1y-sell-side-risk-ratio" | "up-to-3y-10p-price-paid" | "up-to-2m-supply-in-profit-to-circulating-supply-ratio" | "from-15y-supply-in-loss" | "up-to-10y-supply-in-profit-to-own-supply-ratio" | "market-price-to-up-to-3y-realized-price-ratio-1p" | "up-to-3m-utxo-count" | "year-2016-15p-price-paid" | "from-15y-80p-price-paid" | "from-4y-realized-cap" | "year-2023-cumulative-net-realized-profit-and-loss" | "market-price-to-from-1y-to-2y-realized-price-ratio-99-9p" | "from-2y-to-3y-value-created" | "year-2019-65p-price-paid" | "plankton-45p-price-paid" | "from-4y-negative-realized-loss" | "lth-40p-price-paid" | "market-price-to-p2pk-realized-price-ratio-0-5p" | "fish-utxo-count" | "p2pk-realized-price" | "year-2015-15p-price-paid" | "market-price-to-up-to-7y-realized-price-ratio-99-5p" | "market-price-to-cointime-price-ratio-1y-sma-momentum-oscillator" | "from-15y-40p-price-paid" | "market-price-to-year-2024-realized-price-ratio-1m-sma" | "shark-supply-in-loss-to-circulating-supply-ratio" | "p2wpkh-realized-price-99-5p" | "up-to-2m-supply-in-loss" | "p2sh-supply" | "year-2013-75p-price-paid" | "year-2024-cumulative-net-realized-profit-and-loss" | "market-price-to-p2pk-realized-price-ratio-0-1p" | "from-1y-supply-in-loss-to-circulating-supply-ratio" | "market-price-to-from-15y-realized-price-ratio-1w-sma" | "from-3m-to-6m-halved-supply-to-circulating-supply-ratio" | "from-2y-to-3y-25p-price-paid" | "illiquid-realized-value" | "price-8d-sma-99-5p" | "up-to-3m-realized-cap-1m-net-change" | "crab-80p-price-paid" | "from-3m-to-6m-15p-price-paid" | "from-4y-30p-price-paid" | "whale-negative-realized-loss" | "market-price-to-up-to-2m-realized-price-ratio-1m-sma" | "market-price-to-humpback-realized-price-ratio-1y-sma" | "year-2023-net-unrealized-profit-and-loss-to-market-cap-ratio" | "crab-negative-unrealized-loss" | "market-price-to-up-to-1d-realized-price-ratio-99-5p" | "market-price-to-up-to-2m-realized-price-ratio-1w-sma" | "year-2015-cumulative-realized-loss" | "p2wsh-supply-in-loss-to-circulating-supply-ratio" | "p2wpkh-value-created" | "crab-realized-price-99p" | "year-2015-halved-supply-to-circulating-supply-ratio" | "illiquid-supply-in-profit-to-own-supply-ratio" | "coinbase-1y-sum" | "year-2016-realized-price-0-1p" | "from-5y-to-7y-cumulative-net-realized-profit-and-loss-1m-net-change" | "price-10y-total-return" | "year-2024-sell-side-risk-ratio" | "from-1d-to-1w-supply" | "from-2y-input-volume" | "market-price-to-from-10y-to-15y-realized-price-ratio-1m-sma" | "plankton-25p-price-paid" | "up-to-1d-net-unrealized-profit-and-loss" | "year-2009-supply" | "illiquid-cumulative-net-realized-profit-and-loss" | "market-price-to-vaulted-price-ratio-1y-sma" | "year-2016-60p-price-paid" | "from-4y-realized-loss" | "up-to-7y-supply-in-loss-to-own-supply-ratio" | "from-3y-to-5y-input-volume" | "market-price-to-plankton-realized-price-ratio-1y-sma-momentum-oscillator" | "year-2011-net-unrealized-profit-and-loss-to-market-cap-ratio" | "up-to-2m-realized-profit" | "fish-negative-unrealized-loss" | "from-1m-to-3m-realized-cap" | "market-price-to-up-to-4m-realized-price-ratio-0-1p" | "megalodon-realized-price-99-5p" | "up-to-2y-sell-side-risk-ratio" | "last" | "up-to-5m-cumulative-realized-loss" | "up-to-3m-value-created" | "shark-60p-price-paid" | "from-3m-to-6m-cumulative-net-realized-profit-and-loss" | "market-price-to-price-55d-sma-ratio-99p" | "net-realized-profit-and-loss" | "p2tr-supply-to-circulating-supply-ratio" | "year-2018-realized-price-0-1p" | "market-price-to-up-to-1w-realized-price-ratio" | "price-144d-sma-0-1p" | "p2wpkh-85p-price-paid" | "from-1m-to-3m-halved-supply-to-circulating-supply-ratio" | "up-to-1m-halved-supply" | "fish-realized-price-0-5p" | "active-price-99p" | "supply-in-loss" | "p2wpkh-70p-price-paid" | "45p-price-paid" | "p2tr-supply-in-loss" | "up-to-10y-90p-price-paid" | "market-price-to-from-1y-realized-price-ratio" | "market-price-to-year-2011-realized-price-ratio-1y-sma" | "sth-net-unrealized-profit-and-loss-to-market-cap-ratio" | "year-2010-realized-price-1p" | "from-1y-85p-price-paid" | "up-to-5m-20p-price-paid" | "year-2012-realized-loss" | "from-7y-to-10y-input-count" | "year-2012-supply-in-loss-to-circulating-supply-ratio" | "up-to-5m-supply" | "highly-liquid-supply" | "year-2014-unrealized-profit" | "shark-halved-supply-to-circulating-supply-ratio" | "from-3m-to-6m-unrealized-profit" | "p2tr-realized-value" | "from-6m-to-1y-net-realized-profit-and-loss" | "market-price-to-up-to-5m-realized-price-ratio-0-5p" | "active-price-99-9p" | "p2sh-unrealized-profit" | "market-price-to-year-2021-realized-price-ratio-1y-sma" | "p2pk-net-realized-profit-and-loss-to-market-cap-ratio" | "p2tr-value-created" | "whale-05p-price-paid" | "year-2016-cumulative-net-realized-profit-and-loss-1m-net-change" | "year-2022-spent-output-profit-ratio" | "up-to-5m-realized-profit" | "from-1m-to-3m-negative-unrealized-loss" | "up-to-1m-supply-in-profit-to-own-supply-ratio" | "from-1w-to-1m-supply-to-circulating-supply-ratio" | "up-to-1y-05p-price-paid" | "year-2021-realized-value" | "year-2022-median-price-paid" | "up-to-1m-halved-supply-to-circulating-supply-ratio" | "market-price-to-p2sh-realized-price-ratio-1p" | "from-1m-to-3m-spent-output-profit-ratio" | "from-6m-to-1y-supply-in-loss-to-own-supply-ratio" | "p2pkh-80p-price-paid" | "from-1y-to-2y-15p-price-paid" | "shark-realized-value" | "from-1w-to-1m-75p-price-paid" | "fish-realized-profit" | "up-to-6m-realized-price-99-5p" | "from-10y-realized-price-99-5p" | "year-2014-cumulative-realized-profit" | "up-to-1y-realized-price-0-1p" | "year-2015-supply-to-circulating-supply-ratio" | "year-2022-sell-side-risk-ratio" | "market-price-to-price-200w-sma-ratio-1y-sma" | "05p-price-paid" | "from-1m-to-3m-realized-price-1p" | "year-2023-supply-in-loss" | "year-2024-realized-cap" | "up-to-15y-05p-price-paid" | "illiquid-95p-price-paid" | "up-to-1w-cumulative-net-realized-profit-and-loss-1m-net-change" | "market-price-to-year-2018-realized-price-ratio-0-1p" | "up-to-1y-realized-value" | "year-2017-15p-price-paid" | "from-1m-to-3m-supply-in-profit-to-circulating-supply-ratio" | "megalodon-10p-price-paid" | "market-price-to-fish-realized-price-ratio-1w-sma" | "cointime-adjusted-yearly-inflation-rate" | "market-price-to-up-to-3y-realized-price-ratio-1m-sma" | "year-2020-30p-price-paid" | "from-4y-cumulative-net-realized-profit-and-loss-1m-net-change" | "year-2018-55p-price-paid" | "year-2020-net-realized-profit-and-loss-to-market-cap-ratio" | "40p-price-paid" | "humpback-address-count" | "market-price-to-p2sh-realized-price-ratio-99p" | "from-4y-15p-price-paid" | "from-1m-to-3m-supply-in-profit-to-own-supply-ratio" | "market-price-to-price-1w-sma-ratio-99-5p" | "up-to-7y-value-destroyed" | "megalodon-05p-price-paid" | "illiquid-30p-price-paid" | "year-2014-realized-price-99-5p" | "year-2021-value-created" | "year-2014-40p-price-paid" | "plankton-05p-price-paid" | "market-price-to-active-price-ratio-1y-sma-momentum-oscillator" | "sth-median-price-paid" | "humpback-05p-price-paid" | "from-10y-to-15y-25p-price-paid" | "from-6m-to-1y-75p-price-paid" | "market-price-to-from-1w-to-1m-realized-price-ratio-99-9p" | "p2pk-cumulative-net-realized-profit-and-loss-1m-net-change" | "p2wsh-realized-cap-1m-net-change" | "market-price-to-from-1y-to-2y-realized-price-ratio-1w-sma" | "from-5y-to-7y-utxo-count" | "p2pk-supply-in-profit-to-own-supply-ratio" | "market-price-to-up-to-6m-realized-price-ratio-99p" | "p2pkh-65p-price-paid" | "from-3y-to-5y-spent-output-profit-ratio" | "p2wpkh-30p-price-paid" | "from-1w-to-1m-15p-price-paid" | "market-price-to-realized-price-ratio-1p" | "up-to-1w-30p-price-paid" | "up-to-1y-cumulative-net-realized-profit-and-loss" | "up-to-2y-cumulative-realized-loss" | "up-to-2y-supply-in-loss-to-own-supply-ratio" | "year-2010-90p-price-paid" | "year-2018-40p-price-paid" | "market-price-to-year-2009-realized-price-ratio-1y-sma-momentum-oscillator" | "up-to-7y-supply" | "year-2023-25p-price-paid" | "from-1y-to-2y-70p-price-paid" | "highly-liquid-85p-price-paid" | "from-6m-to-1y-net-unrealized-profit-and-loss" | "humpback-cumulative-net-realized-profit-and-loss-1m-net-change" | "p2tr-20p-price-paid" | "from-1y-halved-supply" | "price-1m-sma-99-5p" | "price-8d-sma" | "up-to-5m-90p-price-paid" | "from-7y-to-10y-05p-price-paid" | "year-2011-negative-unrealized-loss" | "market-price-to-from-5y-to-7y-realized-price-ratio-1w-sma" | "year-2013-supply-in-profit-to-circulating-supply-ratio" | "from-1y-80p-price-paid" | "block-size-1d-25p" | "p2pk-sell-side-risk-ratio" | "up-to-1m-sell-side-risk-ratio" | "year-2016-value-destroyed" | "year-2021-realized-price-99-9p" | "last-fees" | "market-price-to-up-to-1w-realized-price-ratio-99p" | "from-2y-60p-price-paid" | "p2pkh-45p-price-paid" | "plankton-40p-price-paid" | "plankton-supply-in-profit" | "up-to-15y-halved-supply" | "from-1m-to-3m-supply-in-loss-to-circulating-supply-ratio" | "megalodon-input-volume" | "year-2019-90p-price-paid" | "from-3y-to-5y-input-count" | "up-to-6m-70p-price-paid" | "up-to-15y-supply-in-loss" | "year-2016-supply-in-profit-to-own-supply-ratio" | "humpback-85p-price-paid" | "up-to-15y-median-price-paid" | "p2wpkh-negative-realized-loss" | "up-to-1m-10p-price-paid" | "block-vbytes-1d-average" | "liquid-realized-cap" | "p2pk-cumulative-realized-profit" | "highly-liquid-70p-price-paid" | "sth-60p-price-paid" | "year-2010-sell-side-risk-ratio" | "from-1d-to-1w-input-volume" | "from-4y-cumulative-net-realized-profit-and-loss" | "market-price-to-from-5y-to-7y-realized-price-ratio-1y-sma" | "crab-realized-profit" | "market-price-to-p2pk-realized-price-ratio-99-5p" | "market-price-to-sth-realized-price-ratio-0-5p" | "p2wsh-cumulative-net-realized-profit-and-loss-1m-net-change" | "illiquid-supply-in-loss-to-own-supply-ratio" | "lth-supply-in-profit-to-own-supply-ratio" | "market-price-to-from-2y-to-3y-realized-price-ratio-1p" | "whale-unrealized-profit" | "year-2015-realized-price-0-1p" | "up-to-3y-value-created" | "market-price-to-up-to-10y-realized-price-ratio-1p" | "year-2022-realized-price" | "year-2023-realized-cap-1m-net-change" | "from-15y-realized-cap" | "market-price-to-up-to-3y-realized-price-ratio-0-1p" | "true-market-mean-0-5p" | "year-2017-75p-price-paid" | "year-2021-10p-price-paid" | "market-price-to-up-to-1d-realized-price-ratio-99-9p" | "up-to-7y-realized-profit" | "highly-liquid-cumulative-net-realized-profit-and-loss-1m-net-change" | "year-2016-45p-price-paid" | "year-2020-halved-supply" | "from-3y-to-5y-95p-price-paid" | "year-2010-30p-price-paid" | "liquid-sell-side-risk-ratio" | "market-price-to-year-2019-realized-price-ratio-0-1p" | "p2sh-negative-realized-loss" | "from-15y-realized-cap-1m-net-change" | "total-cointime-value-stored" | "up-to-2m-cumulative-realized-loss" | "market-price-to-up-to-5y-realized-price-ratio-1p" | "transaction-volume-in-dollars-1w-sma" | "year-2009-supply-in-loss" | "p2wpkh-realized-price-99-9p" | "price-89d-sma-99-9p" | "fish-supply-in-profit" | "year-2011-realized-price-99-9p" | "up-to-2y-supply-in-loss" | "market-price-to-up-to-4m-realized-price-ratio-0-5p" | "market-price-to-up-to-1m-realized-price-ratio-1y-sma-momentum-oscillator" | "from-1m-to-3m-value-created" | "transaction-velocity" | "year-2010-35p-price-paid" | "year-2018-net-unrealized-profit-and-loss-to-market-cap-ratio" | "humpback-45p-price-paid" | "plankton-halved-supply-to-circulating-supply-ratio" | "p2sh-cumulative-realized-profit" | "up-to-1m-realized-price" | "from-5y-to-7y-85p-price-paid" | "p2sh-supply-in-loss-to-own-supply-ratio" | "market-price-to-year-2014-realized-price-ratio-0-5p" | "megalodon-35p-price-paid" | "market-price-to-year-2015-realized-price-ratio-1y-sma-momentum-oscillator" | "up-to-7y-cumulative-net-realized-profit-and-loss" | "from-5y-to-7y-30p-price-paid" | "from-4y-supply" | "up-to-4m-70p-price-paid" | "p2wsh-realized-price-99p" | "from-1y-05p-price-paid" | "market-price-to-from-7y-to-10y-realized-price-ratio-1y-sma" | "p2pkh-halved-supply" | "realized-price-99-5p" | "fish-85p-price-paid" | "up-to-2y-65p-price-paid" | "up-to-3m-cumulative-realized-profit" | "up-to-7y-supply-to-circulating-supply-ratio" | "year-2017-realized-price-1p" | "market-price-to-price-1m-sma-ratio-0-1p" | "up-to-2m-realized-price-0-5p" | "from-2y-to-3y-supply-to-circulating-supply-ratio" | "year-2022-input-count" | "market-price-to-from-6m-to-1y-realized-price-ratio-1w-sma" | "from-3m-to-6m-supply-in-profit-to-own-supply-ratio" | "year-2023-cumulative-realized-profit" | "from-1y-to-2y-realized-loss" | "liquid-realized-price-0-5p" | "year-2021-25p-price-paid" | "market-price-to-year-2021-realized-price-ratio-1m-sma" | "humpback-net-realized-profit-and-loss-to-market-cap-ratio" | "from-6m-to-1y-95p-price-paid" | "market-price-to-from-3y-to-5y-realized-price-ratio-99-5p" | "up-to-2m-20p-price-paid" | "year-2014-supply-in-profit-to-own-supply-ratio" | "year-2015-supply" | "year-2016-utxo-count" | "market-price-to-up-to-6m-realized-price-ratio-1p" | "megalodon-realized-price-99p" | "p2pkh-55p-price-paid" | "sth-supply-to-circulating-supply-ratio" | "from-7y-to-10y-35p-price-paid" | "up-to-4m-10p-price-paid" | "humpback-input-count" | "fish-value-destroyed" | "up-to-10y-halved-supply-to-circulating-supply-ratio" | "up-to-2m-cumulative-net-realized-profit-and-loss" | "year-2020-90p-price-paid" | "up-to-2m-supply-to-circulating-supply-ratio" | "market-price-to-price-34d-sma-ratio-99-5p" | "year-2011-cumulative-net-realized-profit-and-loss-1m-net-change" | "market-price-to-price-4y-sma-ratio" | "crab-60p-price-paid" | "market-price-to-price-8d-sma-ratio-0-1p" | "year-2010-80p-price-paid" | "from-1y-to-2y-cumulative-realized-loss" | "fish-realized-price-99-5p" | "from-3m-to-6m-10p-price-paid" | "market-price-to-p2wpkh-realized-price-ratio" | "market-price-to-lth-realized-price-ratio-1m-sma" | "up-to-3m-65p-price-paid" | "market-price-to-price-1y-sma-ratio-0-5p" | "year-2022-value-created" | "shark-supply" | "year-2012-negative-realized-loss" | "from-7y-to-10y-supply-in-loss" | "from-1d-to-1w-value-created" | "year-2022-supply-in-loss-to-circulating-supply-ratio" | "market-price-to-up-to-6m-realized-price-ratio-1y-sma" | "market-price-to-highly-liquid-realized-price-ratio-99p" | "liquid-net-unrealized-profit-and-loss-to-market-cap-ratio" | "from-6m-to-1y-supply-in-loss" | "year-2010-cumulative-realized-loss" | "year-2024-supply-in-loss" | "shrimp-input-volume" | "fish-supply-in-loss" | "from-1y-to-2y-cumulative-net-realized-profit-and-loss" | "p2wpkh-realized-price" | "market-price-to-price-13d-sma-ratio-1w-sma" | "highly-liquid-value-created" | "p2sh-realized-price-99-9p" | "year-2015-median-price-paid" | "humpback-70p-price-paid" | "market-price-to-from-7y-to-10y-realized-price-ratio-1y-sma-momentum-oscillator" | "year-2020-realized-price-0-1p" | "year-2023-70p-price-paid" | "market-price-to-highly-liquid-realized-price-ratio-1y-sma" | "liquid-realized-loss" | "p2tr-realized-price-0-5p" | "market-price-to-from-1w-to-1m-realized-price-ratio-1w-sma" | "transaction-volume" | "up-to-2m-realized-price-0-1p" | "liquid-realized-price-99-5p" | "year-2019-realized-value" | "year-2019-cumulative-net-realized-profit-and-loss-1m-net-change" | "from-1y-utxo-count" | "up-to-3m-35p-price-paid" | "up-to-5y-realized-cap-1m-net-change" | "lth-supply" | "market-price-to-from-6m-to-1y-realized-price-ratio-99-9p" | "shrimp-cumulative-net-realized-profit-and-loss-1m-net-change" | "p2sh-net-realized-profit-and-loss-to-market-cap-ratio" | "p2tr-30p-price-paid" | "p2wsh-25p-price-paid" | "market-price-to-year-2016-realized-price-ratio-1w-sma" | "market-price-to-p2pkh-realized-price-ratio-99-9p" | "up-to-10y-realized-cap" | "year-2017-25p-price-paid" | "cumulative-subsidy" | "megalodon-cumulative-realized-profit" | "up-to-3m-realized-value" | "year-2021-40p-price-paid" | "year-2017-supply-in-loss" | "from-1w-to-1m-40p-price-paid" | "year-2018-45p-price-paid" | "highly-liquid-90p-price-paid" | "market-price-to-active-price-ratio-1m-sma" | "market-price-to-up-to-5m-realized-price-ratio-1w-sma" | "up-to-5m-95p-price-paid" | "year-2020-cumulative-net-realized-profit-and-loss-1m-net-change" | "from-2y-to-3y-65p-price-paid" | "market-price-to-from-3y-to-5y-realized-price-ratio-1w-sma" | "active-cap" | "year-2013-input-volume" | "first-height" | "p2pkh-cumulative-net-realized-profit-and-loss" | "p2tr-input-volume" | "from-7y-to-10y-90p-price-paid" | "p2tr-05p-price-paid" | "market-price-to-year-2014-realized-price-ratio-0-1p" | "year-2010-unrealized-profit" | "lth-value-created" | "market-price-to-vaulted-price-ratio-1w-sma" | "p2pk-unrealized-profit" | "market-price-to-year-2015-realized-price-ratio-1y-sma" | "block-weight-1d-median" | "market-price-to-p2wsh-realized-price-ratio" | "up-to-1d-unrealized-loss" | "highly-liquid-55p-price-paid" | "year-2021-net-unrealized-profit-and-loss" | "year-2009-15p-price-paid" | "market-price-to-from-3m-to-6m-realized-price-ratio" | "up-to-1m-supply" | "market-price-to-from-1m-to-3m-realized-price-ratio-0-1p" | "market-price-to-up-to-3m-realized-price-ratio-99p" | "market-price-to-illiquid-realized-price-ratio-1y-sma" | "p2sh-sell-side-risk-ratio" | "up-to-5m-40p-price-paid" | "up-to-1d-cumulative-realized-loss" | "year-2012-net-realized-profit-and-loss" | "market-price-to-up-to-15y-realized-price-ratio" | "shrimp-cumulative-realized-loss" | "year-2022-cumulative-realized-loss" | "from-7y-to-10y-30p-price-paid" | "shrimp-55p-price-paid" | "fish-75p-price-paid" | "up-to-1w-utxo-count" | "whale-85p-price-paid" | "year-2021-supply-in-profit-to-own-supply-ratio" | "year-2018-realized-profit" | "from-2y-cumulative-realized-profit" | "market-price-to-liquid-realized-price-ratio-1m-sma" | "up-to-6m-realized-cap-1m-net-change" | "from-10y-40p-price-paid" | "market-price-to-up-to-1y-realized-price-ratio-0-1p" | "humpback-spent-output-profit-ratio" | "market-price-to-liquid-realized-price-ratio-0-5p" | "market-price-to-p2sh-realized-price-ratio" | "plankton-realized-cap" | "lth-supply-in-loss" | "up-to-15y-cumulative-net-realized-profit-and-loss" | "market-price-to-year-2009-realized-price-ratio-1m-sma" | "market-price-to-year-2024-realized-price-ratio-1p" | "p2wpkh-80p-price-paid" | "up-to-1m-median-price-paid" | "market-price-to-p2wpkh-realized-price-ratio-99-9p" | "up-to-2y-05p-price-paid" | "whale-cumulative-net-realized-profit-and-loss-1m-net-change" | "p2pk-65p-price-paid" | "p2pk-85p-price-paid" | "p2pkh-85p-price-paid" | "year-2016-cumulative-net-realized-profit-and-loss" | "year-2022-60p-price-paid" | "market-price-to-p2pkh-realized-price-ratio-1p" | "year-2015-40p-price-paid" | "from-3m-to-6m-supply-to-circulating-supply-ratio" | "year-2018-halved-supply" | "plankton-input-count" | "p2pkh-supply-in-profit" | "shark-80p-price-paid" | "p2pkh-15p-price-paid" | "from-10y-to-15y-median-price-paid" | "market-price-to-from-10y-to-15y-realized-price-ratio-1y-sma-momentum-oscillator" | "up-to-3y-input-volume" | "year-2010-value-created" | "from-15y-halved-supply-to-circulating-supply-ratio" | "p2tr-supply-in-loss-to-own-supply-ratio" | "shrimp-input-count" | "year-2015-cumulative-net-realized-profit-and-loss" | "year-2018-05p-price-paid" | "year-2022-supply-in-profit-to-own-supply-ratio" | "from-6m-to-1y-input-volume" | "price-2y-sma-0-5p" | "up-to-1w-85p-price-paid" | "from-10y-cumulative-net-realized-profit-and-loss-1m-net-change" | "from-1w-to-1m-unrealized-loss" | "up-to-2m-15p-price-paid" | "year-2013-supply-in-loss-to-own-supply-ratio" | "from-4y-input-volume" | "market-price-to-year-2020-realized-price-ratio-99-5p" | "up-to-2m-supply-in-loss-to-own-supply-ratio" | "from-7y-to-10y-25p-price-paid" | "from-1y-net-realized-profit-and-loss" | "year-2011-realized-profit" | "from-5y-to-7y-realized-price-1p" | "up-to-6m-supply-to-circulating-supply-ratio" | "highly-liquid-halved-supply" | "p2sh-supply-in-loss" | "from-1y-35p-price-paid" | "year-2013-15p-price-paid" | "market-price-to-realized-price-ratio" | "sth-sell-side-risk-ratio" | "year-2014-negative-unrealized-loss" | "year-2020-net-unrealized-profit-and-loss-to-market-cap-ratio" | "market-price-to-price-34d-sma-ratio-99p" | "shark-realized-price-99p" | "p2pkh-net-realized-profit-and-loss-to-market-cap-ratio" | "market-price-to-from-1y-to-2y-realized-price-ratio-99p" | "highly-liquid-realized-price-99-5p" | "market-price-to-year-2014-realized-price-ratio-1m-sma" | "up-to-3m-negative-unrealized-loss" | "year-2012-cumulative-realized-profit" | "year-2012-supply-to-circulating-supply-ratio" | "year-2019-25p-price-paid" | "market-price-to-price-89d-sma-ratio-1p" | "plankton-unrealized-profit" | "up-to-10y-realized-price-0-5p" | "market-price-to-year-2024-realized-price-ratio-99p" | "up-to-3m-halved-supply" | "year-2018-net-realized-profit-and-loss" | "market-price-to-whale-realized-price-ratio-99-5p" | "market-price-to-up-to-1m-realized-price-ratio-1p" | "year-2015-net-realized-profit-and-loss" | "market-price-to-from-1y-to-2y-realized-price-ratio-0-5p" | "up-to-6m-60p-price-paid" | "from-2y-to-3y-20p-price-paid" | "market-price-to-fish-realized-price-ratio-0-5p" | "year-2024-input-volume" | "from-1d-to-1w-realized-cap" | "from-2y-to-3y-15p-price-paid" | "market-price-to-price-89d-sma-ratio-99-9p" | "market-price-to-year-2023-realized-price-ratio-99-5p" | "up-to-10y-70p-price-paid" | "up-to-3y-cumulative-net-realized-profit-and-loss-1m-net-change" | "year-2011-realized-loss" | "year-2010-realized-price-99p" | "blocks-mined-1m-sum" | "from-1m-to-3m-realized-price-99-9p" | "up-to-10y-realized-cap-1m-net-change" | "up-to-2y-unrealized-profit" | "year-2012-input-volume" | "year-2015-05p-price-paid" | "year-2016-median-price-paid" | "p2pk-60p-price-paid" | "from-6m-to-1y-85p-price-paid" | "highly-liquid-unrealized-profit" | "active-price-1p" | "up-to-5m-30p-price-paid" | "from-1d-to-1w-realized-price-0-1p" | "illiquid-unrealized-profit" | "from-6m-to-1y-40p-price-paid" | "year-2020-supply-in-loss" | "year-2009-90p-price-paid" | "cointime-adjusted-velocity" | "up-to-3y-60p-price-paid" | "up-to-4m-supply-in-loss" | "p2wsh-net-unrealized-profit-and-loss-to-market-cap-ratio" | "active-price-0-5p" | "year-2023-realized-price" | "market-price-to-year-2014-realized-price-ratio-99-5p" | "up-to-3m-supply-in-loss-to-own-supply-ratio" | "plankton-realized-price-99p" | "block-vbytes-1d-median" | "up-to-7y-median-price-paid" | "from-1y-supply-in-loss-to-own-supply-ratio" | "illiquid-55p-price-paid" | "year-2021-halved-supply" | "year-2023-supply" | "from-3y-to-5y-sell-side-risk-ratio" | "fish-35p-price-paid" | "year-2011-45p-price-paid" | "market-price-to-active-price-ratio-99-5p" | "market-price-to-plankton-realized-price-ratio-99-9p" | "p2pk-halved-supply" | "price-200w-sma-99-5p" | "from-4y-realized-value" | "from-3y-to-5y-25p-price-paid" | "year-2012-cumulative-realized-loss" | "from-10y-to-15y-10p-price-paid" | "from-10y-supply-in-profit-to-own-supply-ratio" | "from-6m-to-1y-realized-price-0-1p" | "up-to-7y-85p-price-paid" | "market-price-to-year-2009-realized-price-ratio-99-9p" | "up-to-2y-realized-price-1p" | "from-2y-to-3y-realized-value" | "up-to-7y-10p-price-paid" | "year-2013-cumulative-net-realized-profit-and-loss" | "up-to-3y-halved-supply-to-circulating-supply-ratio" | "up-to-4m-realized-profit" | "from-3m-to-6m-net-realized-profit-and-loss-to-market-cap-ratio" | "illiquid-cumulative-net-realized-profit-and-loss-1m-net-change" | "market-price-to-highly-liquid-realized-price-ratio" | "up-to-5m-realized-price-0-5p" | "market-price-to-price-34d-sma-ratio-0-1p" | "up-to-3m-85p-price-paid" | "from-2y-to-3y-realized-price-99-9p" | "plankton-75p-price-paid" | "market-price-to-p2pk-realized-price-ratio-1y-sma-momentum-oscillator" | "year-2011-value-destroyed" | "market-price-to-active-price-ratio-99-9p" | "from-1m-to-3m-cumulative-net-realized-profit-and-loss-1m-net-change" | "lth-supply-in-profit" | "up-to-3y-realized-loss" | "year-2020-80p-price-paid" | "highly-liquid-cumulative-realized-profit" | "humpback-realized-price-1p" | "price-13d-sma-0-5p" | "up-to-3y-supply-in-loss" | "up-to-1d-spent-output-profit-ratio" | "market-price-to-p2pkh-realized-price-ratio-1y-sma-momentum-oscillator" | "market-price-to-price-89d-sma-ratio-1y-sma-momentum-oscillator" | "from-3y-to-5y-unrealized-loss" | "fish-realized-loss" | "up-to-3y-supply-to-circulating-supply-ratio" | "p2sh-45p-price-paid" | "year-2020-15p-price-paid" | "year-2021-15p-price-paid" | "year-2023-realized-price-1p" | "price-4y-sma-99-9p" | "highly-liquid-10p-price-paid" | "year-2011-unrealized-loss" | "year-2013-realized-price-1p" | "from-5y-to-7y-net-unrealized-profit-and-loss" | "block-vbytes-1d-25p" | "from-1d-to-1w-15p-price-paid" | "market-price-to-from-10y-realized-price-ratio-1p" | "up-to-1d-30p-price-paid" | "up-to-5m-sell-side-risk-ratio" | "market-price-to-up-to-2y-realized-price-ratio-0-5p" | "market-price-to-year-2018-realized-price-ratio-99-5p" | "year-2017-cumulative-realized-loss" | "active-price" | "from-10y-65p-price-paid" | "market-price-to-year-2021-realized-price-ratio-1w-sma" | "p2wpkh-halved-supply" | "shrimp-60p-price-paid" | "up-to-7y-95p-price-paid" | "market-price-to-up-to-7y-realized-price-ratio" | "year-2009-realized-value" | "year-2017-negative-realized-loss" | "illiquid-realized-profit" | "market-price-to-humpback-realized-price-ratio-99p" | "created-addresses" | "up-to-6m-realized-price-99-9p" | "liquid-halved-supply" | "year-2024-net-realized-profit-and-loss" | "from-10y-90p-price-paid" | "from-10y-realized-loss" | "from-6m-to-1y-input-count" | "highly-liquid-realized-profit" | "up-to-7y-net-unrealized-profit-and-loss" | "year-2011-65p-price-paid" | "from-1y-net-realized-profit-and-loss-to-market-cap-ratio" | "up-to-1d-value-destroyed" | "year-2015-realized-price-1p" | "year-2024-65p-price-paid" | "market-price-to-from-1w-to-1m-realized-price-ratio-1m-sma" | "market-price-to-shrimp-realized-price-ratio-1m-sma" | "p2pk-net-unrealized-profit-and-loss" | "year-2011-net-realized-profit-and-loss-to-market-cap-ratio" | "up-to-2m-realized-price-1p" | "year-2020-realized-price-0-5p" | "year-2022-net-realized-profit-and-loss" | "year-2023-95p-price-paid" | "from-1y-unrealized-profit" | "market-price-to-true-market-mean-ratio-99-5p" | "year-2018-unrealized-profit" | "from-1y-realized-price-0-5p" | "p2tr-realized-loss" | "year-2023-realized-profit" | "price-34d-sma-0-5p" | "humpback-supply-in-profit" | "block-vbytes-1d-75p" | "from-10y-to-15y-realized-price" | "p2pkh-95p-price-paid" | "coinbase" | "cointime-price-0-5p" | "shrimp-90p-price-paid" | "humpback-cumulative-net-realized-profit-and-loss" | "from-7y-to-10y-realized-price-99p" | "from-1w-to-1m-realized-price-99-5p" | "up-to-7y-supply-in-loss" | "market-price-to-price-4y-sma-ratio-99p" | "market-price-to-from-1d-to-1w-realized-price-ratio" | "from-6m-to-1y-unrealized-profit" | "price-8d-sma-99-9p" | "up-to-2m-supply" | "year-2022-negative-realized-loss" | "up-to-6m-cumulative-realized-profit" | "year-2019-median-price-paid" | "market-price-to-price-13d-sma-ratio-1y-sma" | "up-to-10y-cumulative-realized-profit" | "market-price-to-year-2015-realized-price-ratio" | "up-to-1y-75p-price-paid" | "vaulted-price" | "up-to-10y-negative-unrealized-loss" | "humpback-90p-price-paid" | "shark-realized-price" | "p2wpkh-input-volume" | "up-to-1m-realized-value" | "from-1d-to-1w-65p-price-paid" | "sth-supply-in-profit" | "up-to-5m-realized-cap" | "hash-rate-1w-sma" | "highly-liquid-median-price-paid" | "from-2y-realized-cap" | "1" | "market-price-to-illiquid-realized-price-ratio-99-9p" | "up-to-15y-input-volume" | "up-to-1y-unrealized-loss" | "market-price-to-humpback-realized-price-ratio-1w-sma" | "year-2017-85p-price-paid" | "market-price-to-year-2012-realized-price-ratio-99p" | "sth-15p-price-paid" | "market-price-to-year-2017-realized-price-ratio-0-1p" | "market-price-to-shark-realized-price-ratio-99-9p" | "market-price-to-crab-realized-price-ratio-99p" | "market-price-to-up-to-5m-realized-price-ratio-1y-sma-momentum-oscillator" | "p2tr-unrealized-loss" | "from-6m-to-1y-net-realized-profit-and-loss-to-market-cap-ratio" | "illiquid-unrealized-loss" | "market-price-to-shrimp-realized-price-ratio" | "from-3y-to-5y-realized-cap" | "from-6m-to-1y-30p-price-paid" | "year-2015-supply-in-loss-to-circulating-supply-ratio" | "year-2010-negative-unrealized-loss" | "from-2y-realized-price" | "up-to-10y-05p-price-paid" | "from-1y-to-2y-value-created" | "year-2018-supply-in-loss-to-circulating-supply-ratio" | "p2wsh-input-volume" | "p2tr-85p-price-paid" | "realized-price-99-9p" | "from-3m-to-6m-supply-in-profit-to-circulating-supply-ratio" | "from-4y-utxo-count" | "market-price-to-shrimp-realized-price-ratio-0-1p" | "market-price-to-price-8d-sma-ratio" | "up-to-4m-supply-in-loss-to-own-supply-ratio" | "from-1y-unrealized-loss" | "p2sh-realized-value" | "from-10y-halved-supply-to-circulating-supply-ratio" | "from-1m-to-3m-realized-price" | "market-price-to-from-10y-realized-price-ratio-99p" | "cointime-price-99p" | "from-2y-realized-price-1p" | "year-2014-60p-price-paid" | "up-to-3y-15p-price-paid" | "market-price-to-p2pk-realized-price-ratio" | "year-2010-median-price-paid" | "market-price-to-price-34d-sma-ratio-1y-sma" | "up-to-1w-70p-price-paid" | "year-2021-supply-in-profit-to-circulating-supply-ratio" | "year-2021-realized-price-99p" | "from-5y-to-7y-net-unrealized-profit-and-loss-to-market-cap-ratio" | "price-89d-sma-1p" | "market-price-to-from-10y-to-15y-realized-price-ratio-99p" | "year-2017-realized-cap" | "crab-supply-in-profit-to-own-supply-ratio" | "up-to-10y-input-count" | "thermo-cap-to-investor-cap-ratio" | "up-to-1d-net-realized-profit-and-loss-to-market-cap-ratio" | "p2wsh-05p-price-paid" | "p2pk-45p-price-paid" | "sth-net-unrealized-profit-and-loss" | "price-21d-sma-99-9p" | "activity-to-vaultedness-ratio" | "price-1w-sma-99p" | "lth-70p-price-paid" | "from-1y-to-2y-60p-price-paid" | "from-7y-to-10y-supply-in-profit" | "year-2017-realized-price-0-5p" | "year-2019-supply-to-circulating-supply-ratio" | "from-3y-to-5y-realized-price" | "from-1y-to-2y-cumulative-realized-profit" | "up-to-4m-value-created" | "year-2018-median-price-paid" | "shark-realized-price-0-1p" | "market-price-to-up-to-1m-realized-price-ratio-1m-sma" | "market-price-to-year-2011-realized-price-ratio-1p" | "up-to-1d-60p-price-paid" | "up-to-10y-sell-side-risk-ratio" | "up-to-2y-realized-price-0-1p" | "year-2013-realized-price-0-1p" | "from-4y-80p-price-paid" | "cumulative-coinbase" | "from-5y-to-7y-supply-in-loss" | "up-to-2m-realized-price-99-5p" | "year-2018-15p-price-paid" | "from-1m-to-3m-15p-price-paid" | "from-1w-to-1m-realized-price-99p" | "from-4y-supply-in-loss-to-circulating-supply-ratio" | "from-1w-to-1m-supply-in-profit-to-own-supply-ratio" | "cumulative-fees-in-dollars" | "market-price-to-crab-realized-price-ratio-0-5p" | "market-price-to-price-89d-sma-ratio-99p" | "up-to-2m-sell-side-risk-ratio" | "market-price-to-year-2023-realized-price-ratio-1m-sma" | "up-to-3m-10p-price-paid" | "market-price-to-up-to-4m-realized-price-ratio-1m-sma" | "year-2013-input-count" | "year-2013-10p-price-paid" | "year-2021-20p-price-paid" | "year-2011-halved-supply" | "highly-liquid-supply-in-loss-to-circulating-supply-ratio" | "year-2018-spent-output-profit-ratio" | "year-2012-realized-price-0-5p" | "from-15y-spent-output-profit-ratio" | "up-to-6m-realized-profit" | "from-1y-45p-price-paid" | "humpback-supply-to-circulating-supply-ratio" | "realized-price-0-1p" | "market-price-to-up-to-5y-realized-price-ratio-99-9p" | "market-price-to-crab-realized-price-ratio-0-1p" | "market-price-to-realized-price-ratio-99-9p" | "market-price-to-year-2013-realized-price-ratio-0-5p" | "price-1y-sma-99-9p" | "up-to-3m-realized-cap" | "year-2018-supply" | "from-1m-to-3m-realized-profit" | "market-price-to-up-to-3m-realized-price-ratio" | "up-to-10y-value-destroyed" | "fees" | "price-1w-sma-99-5p" | "up-to-15y-realized-price-99-9p" | "year-2014-utxo-count" | "from-4y-85p-price-paid" | "from-10y-cumulative-net-realized-profit-and-loss" | "from-5y-to-7y-cumulative-net-realized-profit-and-loss" | "humpback-input-volume" | "market-price-to-whale-realized-price-ratio-1y-sma-momentum-oscillator" | "sth-realized-price-0-1p" | "from-10y-60p-price-paid" | "year-2021-35p-price-paid" | "year-2023-realized-price-99p" | "up-to-4m-20p-price-paid" | "up-to-1m-negative-unrealized-loss" | "market-price-to-up-to-1w-realized-price-ratio-1m-sma" | "shark-supply-in-loss" | "whale-realized-price-99p" | "from-15y-net-unrealized-profit-and-loss" | "megalodon-90p-price-paid" | "plankton-realized-price-0-1p" | "year-2009-45p-price-paid" | "year-2022-70p-price-paid" | "market-price-to-price-1m-sma-ratio-99p" | "humpback-supply" | "fish-60p-price-paid" | "p2tr-net-realized-profit-and-loss-to-market-cap-ratio" | "p2wsh-10p-price-paid" | "from-2y-to-3y-realized-price-99p" | "market-price-to-from-3m-to-6m-realized-price-ratio-1p" | "plankton-realized-price" | "whale-halved-supply" | "year-2021-cumulative-net-realized-profit-and-loss" | "market-price-to-up-to-2y-realized-price-ratio-1y-sma-momentum-oscillator" | "year-2011-supply-in-loss-to-own-supply-ratio" | "p2sh-realized-price" | "market-price-to-up-to-3y-realized-price-ratio-99p" | "p2sh-spent-output-profit-ratio" | "year-2010-75p-price-paid" | "up-to-4m-net-unrealized-profit-and-loss-to-market-cap-ratio" | "crab-05p-price-paid" | "market-price-to-p2pkh-realized-price-ratio-99p" | "p2wpkh-supply-in-loss-to-circulating-supply-ratio" | "lth-realized-price-99-9p" | "illiquid-halved-supply-to-circulating-supply-ratio" | "p2tr-halved-supply" | "market-price-to-price-34d-sma-ratio-0-5p" | "up-to-5y-net-realized-profit-and-loss-to-market-cap-ratio" | "sth-85p-price-paid" | "shrimp-negative-realized-loss" | "year-2011-10p-price-paid" | "up-to-4m-55p-price-paid" | "market-price-to-year-2023-realized-price-ratio-1y-sma" | "year-2017-35p-price-paid" | "crab-90p-price-paid" | "market-price-to-shark-realized-price-ratio-0-1p" | "crab-realized-cap-1m-net-change" | "p2tr-negative-unrealized-loss" | "up-to-4m-supply-to-circulating-supply-ratio" | "year-2017-net-realized-profit-and-loss-to-market-cap-ratio" | "from-10y-value-created" | "market-price-to-up-to-2m-realized-price-ratio-99p" | "year-2024-realized-cap-1m-net-change" | "from-3m-to-6m-85p-price-paid" | "year-2020-95p-price-paid" | "from-1w-to-1m-cumulative-realized-profit" | "market-price-to-from-15y-realized-price-ratio-0-5p" | "p2sh-unrealized-loss" | "p2pk-negative-realized-loss" | "up-to-3m-realized-price-99-9p" | "plankton-realized-value" | "year-2011-30p-price-paid" | "year-2022-value-destroyed" | "up-to-1m-65p-price-paid" | "from-1y-realized-price-0-1p" | "up-to-1y-value-created" | "market-price-to-true-market-mean-ratio-1y-sma-momentum-oscillator" | "up-to-3m-15p-price-paid" | "market-price-to-year-2020-realized-price-ratio" | "up-to-3m-supply-in-profit-to-circulating-supply-ratio" | "investorness" | "up-to-1y-55p-price-paid" | "p2pk-spent-output-profit-ratio" | "up-to-1d-realized-profit" | "from-6m-to-1y-realized-price-99-9p" | "from-3y-to-5y-realized-price-99-5p" | "up-to-2y-40p-price-paid" | "year-2016-realized-profit" | "from-1y-to-2y-net-realized-profit-and-loss" | "market-price-to-price-200w-sma-ratio-99-9p" | "year-2024-net-realized-profit-and-loss-to-market-cap-ratio" | "market-price-to-from-6m-to-1y-realized-price-ratio-0-1p" | "year-2010-supply-in-loss-to-circulating-supply-ratio" | "market-price-to-year-2012-realized-price-ratio-0-5p" | "vaulted-price-1p" | "price-1w-sma-1p" | "from-5y-to-7y-spent-output-profit-ratio" | "market-price-to-price-13d-sma-ratio" | "year-2017-realized-price-0-1p" | "up-to-1d-40p-price-paid" | "from-10y-to-15y-spent-output-profit-ratio" | "up-to-3m-60p-price-paid" | "up-to-1d-realized-price-0-1p" | "up-to-1w-input-count" | "up-to-3y-20p-price-paid" | "year-2016-realized-price-99p" | "market-price-to-from-15y-realized-price-ratio-99-9p" | "up-to-1y-supply-in-loss-to-circulating-supply-ratio" | "value-destroyed" | "year-2012-20p-price-paid" | "year-2014-net-unrealized-profit-and-loss" | "up-to-3y-supply-in-profit-to-own-supply-ratio" | "whale-70p-price-paid" | "year-2024-supply-in-profit" | "up-to-1w-unrealized-loss" | "up-to-1y-supply-in-profit-to-circulating-supply-ratio" | "up-to-4m-30p-price-paid" | "from-1y-to-2y-30p-price-paid" | "market-price-to-from-5y-to-7y-realized-price-ratio-1y-sma-momentum-oscillator" | "from-3m-to-6m-utxo-count" | "from-3m-to-6m-supply-in-loss" | "up-to-3y-realized-price-99p" | "year-2009-realized-price-99-5p" | "sth-90p-price-paid" | "from-10y-realized-price-99p" | "from-10y-to-15y-value-created" | "up-to-1w-realized-price-1p" | "up-to-5m-75p-price-paid" | "market-price-to-price-89d-sma-ratio-1y-sma" | "year-2017-realized-value" | "from-1d-to-1w-realized-price" | "up-to-3m-30p-price-paid" | "year-2019-supply-in-profit-to-own-supply-ratio" | "liquid-supply" | "year-2024-35p-price-paid" | "lth-net-realized-profit-and-loss-to-market-cap-ratio" | "up-to-5m-55p-price-paid" | "last-subsidy-in-dollars" | "sth-cumulative-net-realized-profit-and-loss-1m-net-change" | "up-to-3y-sell-side-risk-ratio" | "whale-realized-price-1p" | "year-2015-realized-cap" | "up-to-3m-spent-output-profit-ratio" | "lth-realized-price" | "year-2009-60p-price-paid" | "liveliness-net-change" | "year-2019-input-count" | "whale-realized-price" | "highly-liquid-spent-output-profit-ratio" | "p2sh-cumulative-net-realized-profit-and-loss" | "liquid-80p-price-paid" | "year-2023-realized-price-99-5p" | "year-2022-supply" | "up-to-1d-realized-loss" | "from-7y-to-10y-unrealized-profit" | "from-10y-supply-in-loss" | "year-2022-halved-supply" | "fish-10p-price-paid" | "from-1y-to-2y-utxo-count" | "market-price-to-p2sh-realized-price-ratio-99-5p" | "market-price-to-plankton-realized-price-ratio" | "from-1y-15p-price-paid" | "from-2y-to-3y-realized-cap-1m-net-change" | "p2wsh-net-realized-profit-and-loss" | "up-to-1w-realized-profit" | "whale-55p-price-paid" | "from-4y-65p-price-paid" | "year-2018-20p-price-paid" | "year-2018-input-count" | "up-to-5y-realized-price-0-1p" | "from-3y-to-5y-supply-in-profit" | "from-1y-realized-price" | "up-to-10y-net-realized-profit-and-loss" | "year-2017-45p-price-paid" | "65p-price-paid" | "from-7y-to-10y-realized-cap-1m-net-change" | "lth-realized-price-99-5p" | "megalodon-cumulative-net-realized-profit-and-loss-1m-net-change" | "market-price-to-price-4y-sma-ratio-0-5p" | "p2pkh-supply-in-profit-to-circulating-supply-ratio" | "market-price-to-p2wpkh-realized-price-ratio-0-5p" | "from-3m-to-6m-30p-price-paid" | "plankton-cumulative-net-realized-profit-and-loss" | "year-2021-supply-to-circulating-supply-ratio" | "from-1y-to-2y-realized-price" | "up-to-1m-realized-price-99p" | "up-to-5m-cumulative-realized-profit" | "from-10y-to-15y-net-unrealized-profit-and-loss-to-market-cap-ratio" | "fish-halved-supply" | "from-2y-to-3y-unrealized-profit" | "up-to-1d-supply-in-loss-to-own-supply-ratio" | "market-price-to-year-2020-realized-price-ratio-1w-sma" | "from-15y-supply-in-profit-to-own-supply-ratio" | "up-to-4m-unrealized-profit" | "market-price-to-from-15y-realized-price-ratio-99p" | "market-price-to-sth-realized-price-ratio-1w-sma" | "from-5y-to-7y-10p-price-paid" | "year-2023-20p-price-paid" | "from-7y-to-10y-realized-loss" | "year-2018-realized-price-99p" | "year-2013-25p-price-paid" | "market-price-to-price-55d-sma-ratio-1p" | "market-price-to-up-to-5y-realized-price-ratio-1y-sma-momentum-oscillator" | "up-to-15y-40p-price-paid" | "from-1w-to-1m-supply-in-loss" | "shrimp-80p-price-paid" | "from-15y-45p-price-paid" | "year-2023-net-realized-profit-and-loss-to-market-cap-ratio" | "year-2009-net-realized-profit-and-loss" | "market-price-to-up-to-1y-realized-price-ratio-0-5p" | "crab-30p-price-paid" | "from-2y-to-3y-55p-price-paid" | "p2wsh-cumulative-realized-profit" | "market-price-to-up-to-1w-realized-price-ratio-0-5p" | "highly-liquid-realized-price-0-5p" | "year-2010-55p-price-paid" | "year-2022-supply-to-circulating-supply-ratio" | "from-10y-to-15y-realized-profit" | "p2tr-realized-price-99p" | "block-vbytes-1d-10p" | "market-price-to-year-2021-realized-price-ratio-0-5p" | "p2wsh-spent-output-profit-ratio" | "sth-cumulative-realized-profit" | "up-to-4m-sell-side-risk-ratio" | "year-2021-realized-price-1p" | "up-to-2m-unrealized-profit" | "from-10y-value-destroyed" | "from-2y-realized-price-99-5p" | "lth-supply-in-loss-to-circulating-supply-ratio" | "illiquid-realized-price-1p" | "humpback-80p-price-paid" | "year-2012-value-created" | "from-1y-supply-in-profit-to-circulating-supply-ratio" | "up-to-6m-realized-price" | "from-6m-to-1y-halved-supply" | "market-price-to-p2sh-realized-price-ratio-0-5p" | "year-2013-utxo-count" | "market-price-to-from-2y-to-3y-realized-price-ratio-99p" | "up-to-1y-realized-price-99-5p" | "from-10y-to-15y-cumulative-net-realized-profit-and-loss-1m-net-change" | "from-1d-to-1w-net-unrealized-profit-and-loss-to-market-cap-ratio" | "price-1y-sma-0-5p" | "megalodon-utxo-count" | "up-to-1m-55p-price-paid" | "up-to-2y-net-unrealized-profit-and-loss" | "p2tr-75p-price-paid" | "year-2011-supply-in-loss" | "megalodon-net-realized-profit-and-loss" | "75p-price-paid" | "from-10y-to-15y-net-unrealized-profit-and-loss" | "market-price-to-shrimp-realized-price-ratio-0-5p" | "from-1d-to-1w-cumulative-net-realized-profit-and-loss-1m-net-change" | "from-4y-unrealized-loss" | "market-price-to-plankton-realized-price-ratio-1m-sma" | "year-2022-realized-price-0-5p" | "illiquid-05p-price-paid" | "crab-realized-price-0-1p" | "up-to-3y-35p-price-paid" | "halved-supply" | "from-1d-to-1w-value-destroyed" | "market-price-to-true-market-mean-ratio-0-5p" | "from-10y-to-15y-60p-price-paid" | "up-to-5m-supply-in-profit" | "p2sh-25p-price-paid" | "market-price-to-vaulted-price-ratio" | "up-to-1y-realized-price-0-5p" | "year-2023-median-price-paid" | "up-to-5y-realized-price-99p" | "up-to-2m-55p-price-paid" | "up-to-2y-10p-price-paid" | "active-price-99-5p" | "from-15y-unrealized-profit" | "market-price-to-year-2017-realized-price-ratio-1y-sma" | "plankton-realized-price-99-5p" | "plankton-cumulative-net-realized-profit-and-loss-1m-net-change" | "sth-negative-unrealized-loss" | "up-to-1w-realized-price" | "up-to-6m-25p-price-paid" | "up-to-3m-unrealized-loss" | "price-21d-sma-99p" | "shrimp-supply-in-profit-to-circulating-supply-ratio" | "year-2018-cumulative-net-realized-profit-and-loss-1m-net-change" | "from-5y-to-7y-value-destroyed" | "liquid-10p-price-paid" | "year-2018-supply-in-profit-to-circulating-supply-ratio" | "year-2014-supply-in-loss-to-own-supply-ratio" | "from-7y-to-10y-value-created" | "up-to-2y-value-created" | "from-1y-20p-price-paid" | "year-2009-supply-in-loss-to-circulating-supply-ratio" | "from-2y-to-3y-30p-price-paid" | "from-3y-to-5y-negative-realized-loss" | "market-price-to-from-3y-to-5y-realized-price-ratio-0-5p" | "p2pk-realized-price-1p" | "illiquid-realized-price" | "market-price-to-up-to-4m-realized-price-ratio-1y-sma-momentum-oscillator" | "megalodon-95p-price-paid" | "price-6y-total-return" | "from-1d-to-1w-realized-value" | "market-price-to-year-2023-realized-price-ratio-0-1p" | "up-to-1w-05p-price-paid" | "up-to-1y-spent-output-profit-ratio" | "market-price-to-price-2y-sma-ratio-1p" | "year-2012-85p-price-paid" | "year-2012-90p-price-paid" | "year-2013-realized-price-99-9p" | "from-1m-to-3m-supply-in-loss" | "market-price-to-cointime-price-ratio-1m-sma" | "p2sh-85p-price-paid" | "humpback-halved-supply-to-circulating-supply-ratio" | "from-4y-value-created" | "market-price-to-highly-liquid-realized-price-ratio-1w-sma" | "year-2018-input-volume" | "up-to-1y-supply-to-circulating-supply-ratio" | "year-2017-value-destroyed" | "from-6m-to-1y-cumulative-net-realized-profit-and-loss" | "megalodon-negative-unrealized-loss" | "p2wsh-realized-price-0-1p" | "market-price-to-from-10y-realized-price-ratio-99-5p" | "p2wpkh-realized-loss" | "fish-input-count" | "p2tr-realized-profit" | "liquid-05p-price-paid" | "from-7y-to-10y-supply-in-loss-to-circulating-supply-ratio" | "market-price-to-true-market-mean-ratio" | "year-2017-realized-cap-1m-net-change" | "price-8d-sma-0-5p" | "market-price-to-year-2012-realized-price-ratio-1y-sma-momentum-oscillator" | "from-10y-to-15y-realized-price-1p" | "market-price-to-year-2023-realized-price-ratio-99p" | "megalodon-55p-price-paid" | "year-2010-net-realized-profit-and-loss-to-market-cap-ratio" | "year-2011-75p-price-paid" | "year-2018-realized-price-99-9p" | "year-2010-45p-price-paid" | "year-2019-10p-price-paid" | "from-7y-to-10y-realized-price-0-5p" | "year-2019-40p-price-paid" | "highly-liquid-20p-price-paid" | "year-2019-supply-in-loss-to-own-supply-ratio" | "year-2021-realized-cap" | "p2tr-cumulative-realized-profit" | "price-34d-sma-99p" | "p2pkh-value-created" | "crab-net-unrealized-profit-and-loss" | "market-price-to-p2tr-realized-price-ratio-1w-sma" | "market-price-to-up-to-1d-realized-price-ratio-0-5p" | "p2pk-realized-price-99-9p" | "market-price-to-price-2y-sma-ratio-0-1p" | "year-2024-unrealized-loss" | "liquid-address-count" | "market-price-to-p2wsh-realized-price-ratio-1y-sma-momentum-oscillator" | "from-4y-realized-price-1p" | "market-price-to-up-to-3y-realized-price-ratio-1y-sma" | "up-to-4m-05p-price-paid" | "from-6m-to-1y-supply-in-profit-to-own-supply-ratio" | "hash-rate-1m-sma" | "market-price-to-from-15y-realized-price-ratio-1y-sma-momentum-oscillator" | "price-4y-sma-0-1p" | "up-to-1w-spent-output-profit-ratio" | "price-1y-total-return" | "up-to-4m-90p-price-paid" | "up-to-1w-35p-price-paid" | "illiquid-utxo-count" | "highly-liquid-95p-price-paid" | "liquid-35p-price-paid" | "year-2016-supply" | "cointime-value-stored" | "p2tr-80p-price-paid" | "up-to-10y-spent-output-profit-ratio" | "p2wpkh-cumulative-realized-profit" | "up-to-1w-negative-unrealized-loss" | "p2pkh-net-unrealized-profit-and-loss-to-market-cap-ratio" | "year-2015-realized-price-0-5p" | "market-price-to-from-7y-to-10y-realized-price-ratio-0-1p" | "year-2014-cumulative-net-realized-profit-and-loss" | "market-price-to-year-2019-realized-price-ratio-1m-sma" | "p2wpkh-35p-price-paid" | "from-15y-supply-in-profit-to-circulating-supply-ratio" | "from-10y-realized-profit" | "sth-30p-price-paid" | "from-1w-to-1m-realized-price-0-1p" | "market-price-to-fish-realized-price-ratio-99-5p" | "market-price-to-year-2017-realized-price-ratio-99-9p" | "from-2y-supply-in-loss-to-own-supply-ratio" | "market-price-to-from-1d-to-1w-realized-price-ratio-1w-sma" | "liveliness-net-change-2w-median" | "up-to-1d-10p-price-paid" | "market-price-to-from-7y-to-10y-realized-price-ratio-1m-sma" | "market-price-to-from-1w-to-1m-realized-price-ratio" | "up-to-1y-input-count" | "fish-spent-output-profit-ratio" | "illiquid-value-destroyed" | "up-to-1y-realized-profit" | "market-price-to-p2pk-realized-price-ratio-1y-sma" | "from-1w-to-1m-realized-loss" | "illiquid-supply-in-loss" | "shark-realized-price-99-5p" | "shrimp-35p-price-paid" | "p2wsh-realized-loss" | "up-to-1m-input-count" | "up-to-2m-realized-cap" | "from-7y-to-10y-value-destroyed" | "megalodon-45p-price-paid" | "up-to-1m-15p-price-paid" | "up-to-3m-05p-price-paid" | "year-2016-negative-realized-loss" | "year-2022-utxo-count" | "from-10y-to-15y-realized-cap-1m-net-change" | "p2pk-90p-price-paid" | "up-to-5y-net-unrealized-profit-and-loss-to-market-cap-ratio" | "whale-75p-price-paid" | "p2pkh-realized-price-99p" | "from-3m-to-6m-halved-supply" | "from-2y-cumulative-realized-loss" | "year-2013-85p-price-paid" | "year-2024-75p-price-paid" | "p2tr-supply-in-profit" | "market-price-to-price-4y-sma-ratio-1y-sma-momentum-oscillator" | "market-price-to-year-2020-realized-price-ratio-1y-sma-momentum-oscillator" | "up-to-1y-35p-price-paid" | "whale-supply-to-circulating-supply-ratio" | "up-to-2y-negative-unrealized-loss" | "market-price-to-plankton-realized-price-ratio-1y-sma" | "market-price-to-shrimp-realized-price-ratio-99-9p" | "year-2024-realized-profit" | "up-to-3m-supply-in-loss-to-circulating-supply-ratio" | "up-to-10y-supply-in-loss-to-own-supply-ratio" | "up-to-5m-35p-price-paid" | "price-200w-sma-0-1p" | "shark-spent-output-profit-ratio" | "up-to-5m-negative-realized-loss" | "up-to-1m-cumulative-realized-profit" | "from-3y-to-5y-cumulative-net-realized-profit-and-loss-1m-net-change" | "from-15y-supply-in-profit" | "market-price-to-year-2009-realized-price-ratio-0-1p" | "from-3m-to-6m-60p-price-paid" | "market-price-to-year-2013-realized-price-ratio-0-1p" | "year-2018-unrealized-loss" | "p2sh-supply-in-profit-to-own-supply-ratio" | "from-15y-realized-loss" | "from-2y-negative-realized-loss" | "p2sh-value-destroyed" | "plankton-value-destroyed" | "up-to-3m-45p-price-paid" | "megalodon-unrealized-profit" | "from-2y-supply-in-loss" | "year-2017-realized-profit" | "up-to-6m-sell-side-risk-ratio" | "p2tr-input-count" | "up-to-4m-spent-output-profit-ratio" | "up-to-1d-halved-supply" | "shrimp-net-unrealized-profit-and-loss-to-market-cap-ratio" | "market-price-to-whale-realized-price-ratio-1y-sma" | "up-to-5m-value-created" | "up-to-2m-85p-price-paid" | "crab-halved-supply-to-circulating-supply-ratio" | "from-15y-20p-price-paid" | "up-to-15y-input-count" | "market-price-to-cointime-price-ratio-1w-sma" | "up-to-7y-net-realized-profit-and-loss" | "market-price-to-p2wsh-realized-price-ratio-99-9p" | "up-to-1w-net-unrealized-profit-and-loss-to-market-cap-ratio" | "shrimp-net-unrealized-profit-and-loss" | "market-price-to-from-3m-to-6m-realized-price-ratio-99-9p" | "megalodon-cumulative-net-realized-profit-and-loss" | "whale-cumulative-realized-profit" | "market-price-to-price-1w-sma-ratio-1y-sma" | "year-2011-value-created" | "from-2y-95p-price-paid" | "year-2019-95p-price-paid" | "p2wpkh-25p-price-paid" | "from-1y-to-2y-realized-price-99-5p" | "from-1y-to-2y-net-unrealized-profit-and-loss-to-market-cap-ratio" | "year-2024-supply-to-circulating-supply-ratio" | "market-price-to-from-3y-to-5y-realized-price-ratio-1y-sma" | "liquid-median-price-paid" | "up-to-15y-realized-price" | "shrimp-halved-supply" | "up-to-1m-60p-price-paid" | "up-to-5m-halved-supply" | "from-2y-supply-in-profit-to-own-supply-ratio" | "market-price-to-price-8d-sma-ratio-1m-sma" | "from-15y-input-count" | "p2pk-cumulative-realized-loss" | "up-to-15y-net-realized-profit-and-loss" | "up-to-1m-net-unrealized-profit-and-loss-to-market-cap-ratio" | "from-2y-halved-supply" | "shark-input-volume" | "up-to-2m-10p-price-paid" | "from-10y-cumulative-realized-loss" | "up-to-3y-realized-cap-1m-net-change" | "year-2009-realized-loss" | "year-2019-cumulative-realized-profit" | "input-count" | "market-price-to-price-1m-sma-ratio-1y-sma-momentum-oscillator" | "block-interval-1d-average" | "up-to-2m-utxo-count" | "market-price-to-highly-liquid-realized-price-ratio-0-1p" | "market-price-to-p2wsh-realized-price-ratio-1m-sma" | "p2wpkh-net-unrealized-profit-and-loss" | "year-2020-realized-price-99-9p" | "total-cointime-value-created" | "up-to-1y-halved-supply-to-circulating-supply-ratio" | "from-2y-cumulative-net-realized-profit-and-loss" | "from-1m-to-3m-halved-supply" | "from-3y-to-5y-supply" | "market-price-to-year-2020-realized-price-ratio-1m-sma" | "subsidy" | "market-price-to-up-to-1w-realized-price-ratio-99-5p" | "up-to-4m-85p-price-paid" | "p2wpkh-60p-price-paid" | "year-2010-supply" | "shrimp-net-realized-profit-and-loss" | "market-price-to-year-2009-realized-price-ratio-1p" | "up-to-7y-realized-value" | "market-price-to-true-market-mean-ratio-1y-sma" | "liquid-55p-price-paid" | "lth-value-destroyed" | "market-price-to-plankton-realized-price-ratio-99-5p" | "year-2010-70p-price-paid" | "year-2014-75p-price-paid" | "market-price-to-price-34d-sma-ratio-1p" | "from-1y-sell-side-risk-ratio" | "up-to-3m-90p-price-paid" | "from-4y-realized-price-99-5p" | "fish-unrealized-profit" | "from-3m-to-6m-net-realized-profit-and-loss" | "from-5y-to-7y-value-created" | "up-to-5y-supply-in-loss" | "from-2y-to-3y-net-realized-profit-and-loss-to-market-cap-ratio" | "humpback-supply-in-loss-to-circulating-supply-ratio" | "from-1w-to-1m-net-unrealized-profit-and-loss" | "80p-price-paid" | "up-to-2y-25p-price-paid" | "whale-supply-in-profit-to-own-supply-ratio" | "market-price-to-up-to-5y-realized-price-ratio-1m-sma" | "year-2009-cumulative-net-realized-profit-and-loss" | "from-5y-to-7y-55p-price-paid" | "market-price-to-p2pk-realized-price-ratio-1m-sma" | "megalodon-realized-price-1p" | "market-price-to-from-4y-realized-price-ratio-99-5p" | "year-2019-halved-supply" | "up-to-2y-supply-to-circulating-supply-ratio" | "empty-addresses" | "shark-net-unrealized-profit-and-loss" | "from-1w-to-1m-realized-cap" | "year-2022-95p-price-paid" | "liquid-30p-price-paid" | "fish-realized-cap-1m-net-change" | "market-price-to-year-2017-realized-price-ratio" | "from-10y-to-15y-negative-unrealized-loss" | "megalodon-30p-price-paid" | "block-vbytes-1d-90p" | "from-1y-to-2y-negative-unrealized-loss" | "from-3y-to-5y-supply-in-profit-to-own-supply-ratio" | "up-to-15y-cumulative-realized-loss" | "from-2y-net-realized-profit-and-loss-to-market-cap-ratio" | "crab-realized-price-0-5p" | "year-2018-negative-unrealized-loss" | "year-2023-10p-price-paid" | "up-to-2m-60p-price-paid" | "market-price-to-up-to-6m-realized-price-ratio-1y-sma-momentum-oscillator" | "up-to-6m-value-destroyed" | "crab-supply-in-loss" | "shark-utxo-count" | "year-2009-supply-in-profit-to-own-supply-ratio" | "up-to-1m-90p-price-paid" | "from-7y-to-10y-95p-price-paid" | "market-price-to-from-15y-realized-price-ratio-1y-sma" | "p2sh-60p-price-paid" | "subsidy-to-coinbase-ratio" | "market-price-to-from-7y-to-10y-realized-price-ratio-99-5p" | "from-2y-to-3y-realized-price-1p" | "year-2019-net-unrealized-profit-and-loss" | "from-1m-to-3m-supply" | "from-1w-to-1m-90p-price-paid" | "p2wpkh-sell-side-risk-ratio" | "year-2014-unrealized-loss" | "market-price-to-p2sh-realized-price-ratio-1y-sma" | "up-to-1d-90p-price-paid" | "plankton-value-created" | "from-10y-to-15y-unrealized-loss" | "year-2011-realized-price-0-5p" | "up-to-10y-cumulative-realized-loss" | "market-price-to-from-1m-to-3m-realized-price-ratio" | "up-to-4m-cumulative-net-realized-profit-and-loss-1m-net-change" | "market-price-to-up-to-1d-realized-price-ratio-0-1p" | "from-1w-to-1m-30p-price-paid" | "market-price-to-active-price-ratio-1w-sma" | "up-to-2y-cumulative-realized-profit" | "up-to-3y-cumulative-net-realized-profit-and-loss" | "from-6m-to-1y-spent-output-profit-ratio" | "market-price-to-price-8d-sma-ratio-1p" | "market-price-to-from-10y-to-15y-realized-price-ratio-0-1p" | "p2wpkh-input-count" | "lth-negative-realized-loss" | "market-price-to-shark-realized-price-ratio-1w-sma" | "year-2015-supply-in-profit-to-circulating-supply-ratio" | "year-2010-40p-price-paid" | "megalodon-supply-to-circulating-supply-ratio" | "year-2018-negative-realized-loss" | "transaction-count-1w-sma" | "from-4y-supply-in-loss-to-own-supply-ratio" | "market-price-to-price-1w-sma-ratio-99p" | "p2pk-75p-price-paid" | "from-1w-to-1m-utxo-count" | "market-price-to-p2wpkh-realized-price-ratio-1p" | "supply-in-profit-to-circulating-supply-ratio" | "p2wpkh-realized-price-0-1p" | "from-7y-to-10y-realized-profit" | "market-price-to-p2sh-realized-price-ratio-99-9p" | "up-to-5y-realized-price-0-5p" | "market-price-to-p2wpkh-realized-price-ratio-0-1p" | "market-price-to-year-2010-realized-price-ratio-99-5p" | "shrimp-realized-profit" | "from-6m-to-1y-cumulative-net-realized-profit-and-loss-1m-net-change" | "from-3y-to-5y-15p-price-paid" | "sth-realized-profit" | "up-to-1w-supply-in-loss-to-own-supply-ratio" | "year-2018-utxo-count" | "year-2021-realized-cap-1m-net-change" | "sth-unrealized-loss" | "market-price-to-year-2013-realized-price-ratio-1w-sma" | "year-2015-supply-in-loss-to-own-supply-ratio" | "from-2y-15p-price-paid" | "up-to-6m-supply-in-profit" | "market-price-to-p2tr-realized-price-ratio-99-5p" | "year-2019-input-volume" | "from-7y-to-10y-cumulative-net-realized-profit-and-loss" | "crab-20p-price-paid" | "from-15y-realized-price-99-9p" | "block-size-1d-75p" | "year-2012-supply" | "p2sh-realized-price-99-5p" | "cumulative-coinblocks-stored" | "from-1m-to-3m-25p-price-paid" | "from-2y-to-3y-supply-in-profit-to-own-supply-ratio" | "market-price-to-price-1m-sma-ratio" | "p2wsh-70p-price-paid" | "market-price-to-year-2024-realized-price-ratio-0-5p" | "from-7y-to-10y-40p-price-paid" | "sth-80p-price-paid" | "from-3y-to-5y-55p-price-paid" | "from-15y-negative-unrealized-loss" | "from-1w-to-1m-supply-in-profit" | "year-2011-net-unrealized-profit-and-loss" | "p2wpkh-supply-in-loss" | "year-2013-realized-cap-1m-net-change" | "up-to-1w-realized-price-0-1p" | "from-10y-to-15y-realized-price-99-9p" | "block-weight-1d-75p" | "market-price-to-illiquid-realized-price-ratio" | "market-price-to-liquid-realized-price-ratio-1p" | "from-1y-to-2y-realized-price-0-5p" | "market-price-to-lth-realized-price-ratio-1y-sma" | "market-price-to-from-15y-realized-price-ratio-99-5p" | "from-2y-utxo-count" | "market-price-to-year-2009-realized-price-ratio-1y-sma" | "market-price-to-year-2023-realized-price-ratio-1p" | "p2sh-90p-price-paid" | "year-2016-realized-cap-1m-net-change" | "year-2024-net-unrealized-profit-and-loss-to-market-cap-ratio" | "shark-cumulative-realized-profit" | "market-price-to-year-2014-realized-price-ratio-99p" | "liquid-realized-profit" | "year-2021-55p-price-paid" | "cumulative-coinbase-in-dollars" | "from-4y-90p-price-paid" | "illiquid-negative-realized-loss" | "market-price-to-up-to-6m-realized-price-ratio-0-5p" | "shark-value-destroyed" | "year-2022-realized-loss" | "market-price-to-up-to-5m-realized-price-ratio-99-5p" | "year-2020-supply" | "year-2017-negative-unrealized-loss" | "market-price-to-from-10y-to-15y-realized-price-ratio-1y-sma" | "market-price-to-price-34d-sma-ratio-1w-sma" | "market-price-to-year-2014-realized-price-ratio-1p" | "liquid-utxo-count" | "p2sh-65p-price-paid" | "up-to-15y-unrealized-loss" | "thermo-cap" | "market-price-to-price-144d-sma-ratio-99-5p" | "up-to-15y-95p-price-paid" | "from-10y-10p-price-paid" | "market-price-to-price-34d-sma-ratio" | "illiquid-negative-unrealized-loss" | "up-to-4m-realized-price-99-9p" | "year-2024-realized-price-99-5p" | "up-to-3m-unrealized-profit" | "up-to-1m-input-volume" | "market-price-to-price-2y-sma-ratio-1y-sma" | "shrimp-negative-unrealized-loss"; +export type LastPath = "from-2y-to-3y-realized-price-99-5p" | "humpback-median-price-paid" | "market-price-to-realized-price-ratio-1m-sma" | "liquid-realized-value" | "year-2010-adjusted-value-destroyed" | "fish-unrealized-loss" | "vaulted-price-1p" | "from-2y-to-3y-realized-loss" | "market-price-to-year-2015-realized-price-ratio-1y-sma-momentum-oscillator" | "address-count" | "up-to-1w-45p-price-paid" | "up-to-3y-05p-price-paid" | "liquid-80p-price-paid" | "p2wpkh-supply-in-profit" | "from-1m-to-3m-75p-price-paid" | "market-price-to-price-13d-sma-ratio-99p" | "year-2018-unrealized-loss" | "from-2y-adjusted-spent-output-profit-ratio" | "year-2018-25p-price-paid" | "year-2020-realized-price-99-9p" | "45p-price-paid" | "highly-liquid-median-price-paid" | "market-price-to-year-2013-realized-price-ratio-99-5p" | "market-price-to-year-2016-realized-price-ratio-1m-sma" | "crab-20p-price-paid" | "from-1y-to-2y-cumulative-realized-profit" | "year-2009-halved-supply" | "year-2019-net-realized-profit-and-loss-to-market-cap-ratio" | "market-price-to-from-4y-realized-price-ratio-1m-sma" | "from-10y-utxo-count" | "from-1w-to-1m-realized-cap-1m-net-change" | "from-1y-cumulative-realized-loss" | "from-1y-input-volume" | "year-2013-05p-price-paid" | "market-price-to-illiquid-realized-price-ratio-1w-sma" | "market-price-to-year-2016-realized-price-ratio-99p" | "plankton-supply-to-circulating-supply-ratio" | "market-price-to-whale-realized-price-ratio" | "megalodon-halved-supply" | "from-2y-to-3y-unrealized-loss" | "p2pk-supply-in-profit-to-circulating-supply-ratio" | "year-2013-15p-price-paid" | "shrimp-median-price-paid" | "price-4y-sma-99-9p" | "year-2017-90p-price-paid" | "total-cointime-value-created" | "up-to-1m-supply" | "up-to-3m-net-realized-profit-and-loss-to-market-cap-ratio" | "from-2y-realized-price-1p" | "market-price-to-year-2009-realized-price-ratio-1w-sma" | "shark-net-realized-profit-and-loss-to-market-cap-ratio" | "from-7y-to-10y-adjusted-value-destroyed" | "highly-liquid-negative-realized-loss" | "market-price-to-up-to-1w-realized-price-ratio-99p" | "market-price-to-year-2014-realized-price-ratio-99p" | "price-13d-sma" | "unrealized-loss" | "year-2013-halved-supply" | "year-2010-supply-in-loss-to-own-supply-ratio" | "year-2013-supply" | "year-2015-realized-price-0-1p" | "from-7y-to-10y-negative-realized-loss" | "market-price-to-from-1y-realized-price-ratio-1p" | "up-to-3y-10p-price-paid" | "year-2016-supply-in-loss-to-own-supply-ratio" | "megalodon-supply-in-profit" | "year-2016-supply-in-profit-to-own-supply-ratio" | "from-1y-to-2y-supply-in-profit-to-circulating-supply-ratio" | "sth-median-price-paid" | "from-1y-to-2y-adjusted-value-created" | "year-2009-95p-price-paid" | "year-2020-65p-price-paid" | "from-3m-to-6m-25p-price-paid" | "fish-value-created" | "year-2012-realized-price-0-1p" | "year-2020-median-price-paid" | "from-4y-net-realized-profit-and-loss" | "year-2017-supply-to-circulating-supply-ratio" | "market-price-to-up-to-1y-realized-price-ratio-0-5p" | "from-2y-negative-realized-loss" | "year-2011-cumulative-realized-loss" | "year-2021-cumulative-net-realized-profit-and-loss" | "up-to-6m-realized-price-99-9p" | "market-price-to-price-1m-sma-ratio-1m-sma" | "from-1y-95p-price-paid" | "market-price-to-up-to-3m-realized-price-ratio-0-1p" | "p2sh-net-unrealized-profit-and-loss" | "price-89d-sma-0-1p" | "up-to-1m-supply-in-profit" | "highly-liquid-unrealized-profit" | "liquid-realized-price-1p" | "market-price-to-realized-price-ratio-0-5p" | "market-price-to-from-1m-to-3m-realized-price-ratio-99-5p" | "up-to-2m-realized-profit" | "from-3y-to-5y-realized-price" | "from-6m-to-1y-supply-in-loss" | "market-price-to-from-3m-to-6m-realized-price-ratio-99-9p" | "from-3y-to-5y-adjusted-value-created" | "market-price-to-year-2019-realized-price-ratio-99-5p" | "p2pk-supply-in-loss-to-circulating-supply-ratio" | "from-6m-to-1y-net-unrealized-profit-and-loss" | "highly-liquid-realized-price" | "up-to-2m-net-unrealized-profit-and-loss" | "year-2022-45p-price-paid" | "whale-cumulative-realized-profit" | "crab-realized-price-0-5p" | "fish-net-realized-profit-and-loss" | "up-to-3m-65p-price-paid" | "up-to-2y-supply" | "from-10y-net-unrealized-profit-and-loss" | "sth-85p-price-paid" | "from-1w-to-1m-supply-in-loss" | "megalodon-15p-price-paid" | "market-price-to-p2tr-realized-price-ratio-1w-sma" | "up-to-3y-45p-price-paid" | "year-2012-supply-in-loss" | "from-6m-to-1y-25p-price-paid" | "shark-realized-price-1p" | "up-to-7y-cumulative-net-realized-profit-and-loss" | "market-price-to-price-1m-sma-ratio-1w-sma" | "humpback-halved-supply-to-circulating-supply-ratio" | "up-to-5m-85p-price-paid" | "up-to-1w-realized-loss" | "humpback-realized-price-99-9p" | "up-to-3y-65p-price-paid" | "from-10y-to-15y-75p-price-paid" | "realized-loss" | "crab-realized-price-1p" | "up-to-2m-55p-price-paid" | "up-to-5m-80p-price-paid" | "from-10y-cumulative-realized-profit" | "year-2021-halved-supply" | "from-1m-to-3m-40p-price-paid" | "market-price-to-p2pkh-realized-price-ratio-0-1p" | "market-price-to-price-1y-sma-ratio-1w-sma" | "market-price-to-highly-liquid-realized-price-ratio-1y-sma-momentum-oscillator" | "up-to-5m-60p-price-paid" | "plankton-supply" | "plankton-65p-price-paid" | "up-to-1d-supply-in-loss" | "market-price-to-plankton-realized-price-ratio-1p" | "market-price-to-up-to-1w-realized-price-ratio-1p" | "market-price-to-up-to-10y-realized-price-ratio-99p" | "from-2y-to-3y-net-unrealized-profit-and-loss-to-market-cap-ratio" | "from-2y-to-3y-supply-in-profit" | "market-price-to-year-2009-realized-price-ratio-1p" | "market-price-to-plankton-realized-price-ratio-1y-sma-momentum-oscillator" | "year-2010-realized-price-99-9p" | "sth-sell-side-risk-ratio" | "from-10y-net-unrealized-profit-and-loss-to-market-cap-ratio" | "year-2009-utxo-count" | "price-2y-total-return" | "from-6m-to-1y-cumulative-net-realized-profit-and-loss-1m-net-change" | "year-2024-realized-cap-1m-net-change" | "from-1y-supply" | "market-price-to-year-2017-realized-price-ratio-1m-sma" | "year-2022-value-destroyed" | "year-2023-spent-output-profit-ratio" | "p2sh-median-price-paid" | "year-2024-95p-price-paid" | "humpback-negative-unrealized-loss" | "from-7y-to-10y-realized-price-1p" | "from-5y-to-7y-realized-price-99-9p" | "from-2y-to-3y-cumulative-realized-loss" | "market-price-to-fish-realized-price-ratio-0-5p" | "from-5y-to-7y-55p-price-paid" | "market-price-to-from-2y-realized-price-ratio-1m-sma" | "from-1m-to-3m-negative-unrealized-loss" | "up-to-10y-cumulative-net-realized-profit-and-loss" | "up-to-10y-supply" | "liquid-supply-in-loss-to-circulating-supply-ratio" | "up-to-1y-90p-price-paid" | "from-4y-realized-loss" | "up-to-3m-realized-price-99-5p" | "up-to-5y-negative-unrealized-loss" | "year-2017-sell-side-risk-ratio" | "market-price-to-price-21d-sma-ratio-1m-sma" | "humpback-net-realized-profit-and-loss" | "up-to-5y-65p-price-paid" | "fish-95p-price-paid" | "from-3y-to-5y-75p-price-paid" | "highly-liquid-adjusted-value-created" | "year-2011-value-destroyed" | "sth-net-realized-profit-and-loss-to-market-cap-ratio" | "year-2018-85p-price-paid" | "from-2y-to-3y-net-realized-profit-and-loss-to-market-cap-ratio" | "year-2013-30p-price-paid" | "from-5y-to-7y-adjusted-spent-output-profit-ratio" | "whale-45p-price-paid" | "market-price-to-from-1y-to-2y-realized-price-ratio-1y-sma" | "shrimp-supply-in-loss-to-own-supply-ratio" | "from-10y-55p-price-paid" | "market-price-to-year-2020-realized-price-ratio-1y-sma-momentum-oscillator" | "up-to-3y-realized-price-1p" | "year-2014-median-price-paid" | "market-price-to-p2sh-realized-price-ratio-1p" | "from-1y-to-2y-65p-price-paid" | "market-price-to-p2wpkh-realized-price-ratio-1y-sma-momentum-oscillator" | "year-2024-realized-profit" | "year-2024-unrealized-loss" | "year-2013-supply-in-loss-to-own-supply-ratio" | "up-to-3y-value-created" | "up-to-3y-40p-price-paid" | "market-price-to-p2wpkh-realized-price-ratio-99-5p" | "from-2y-value-destroyed" | "year-2017-input-volume" | "market-price-to-from-10y-to-15y-realized-price-ratio-1y-sma" | "up-to-1y-value-destroyed" | "from-2y-20p-price-paid" | "market-price-to-price-34d-sma-ratio-0-5p" | "year-2023-cumulative-realized-loss" | "from-2y-to-3y-realized-cap" | "market-price-to-p2tr-realized-price-ratio-0-1p" | "price-1w-sma-1p" | "from-1w-to-1m-95p-price-paid" | "from-10y-realized-cap" | "plankton-cumulative-net-realized-profit-and-loss-1m-net-change" | "year-2021-realized-price-0-5p" | "block-vbytes-1d-min" | "up-to-2y-45p-price-paid" | "from-15y-20p-price-paid" | "up-to-1w-realized-price-99-5p" | "up-to-6m-realized-loss" | "from-4y-realized-price-0-5p" | "from-4y-25p-price-paid" | "p2tr-negative-realized-loss" | "from-1m-to-3m-realized-price-0-5p" | "market-price-to-up-to-5y-realized-price-ratio-0-1p" | "highly-liquid-net-realized-profit-and-loss-to-market-cap-ratio" | "market-price-to-price-34d-sma-ratio-1m-sma" | "p2sh-supply-in-profit" | "from-10y-supply-to-circulating-supply-ratio" | "year-2014-cumulative-net-realized-profit-and-loss" | "up-to-6m-80p-price-paid" | "year-2023-net-realized-profit-and-loss-to-market-cap-ratio" | "p2wpkh-85p-price-paid" | "p2pk-cumulative-realized-profit" | "market-price-to-crab-realized-price-ratio-1w-sma" | "from-2y-75p-price-paid" | "coinblocks-stored" | "market-price-to-from-1y-to-2y-realized-price-ratio-1m-sma" | "market-price-to-up-to-1w-realized-price-ratio-1w-sma" | "fish-10p-price-paid" | "year-2019-unrealized-profit" | "p2pkh-sell-side-risk-ratio" | "year-2009-55p-price-paid" | "year-2012-realized-price-99-5p" | "market-price-to-from-10y-to-15y-realized-price-ratio-1m-sma" | "illiquid-adjusted-value-created" | "humpback-realized-cap-1m-net-change" | "market-price-to-from-1w-to-1m-realized-price-ratio-0-1p" | "from-7y-to-10y-realized-price-99-5p" | "up-to-1d-supply" | "lth-adjusted-value-destroyed" | "market-price-to-year-2019-realized-price-ratio-0-1p" | "shark-realized-price" | "market-price-to-from-1w-to-1m-realized-price-ratio-0-5p" | "illiquid-80p-price-paid" | "market-price-to-up-to-4m-realized-price-ratio-99p" | "up-to-15y-unrealized-loss" | "year-2022-realized-price-99-5p" | "from-10y-to-15y-input-volume" | "market-price-to-from-10y-to-15y-realized-price-ratio-1w-sma" | "market-price-to-year-2013-realized-price-ratio-1y-sma-momentum-oscillator" | "plankton-55p-price-paid" | "from-10y-median-price-paid" | "market-price-to-from-3m-to-6m-realized-price-ratio-1m-sma" | "from-6m-to-1y-realized-price-0-5p" | "up-to-2m-80p-price-paid" | "from-4y-65p-price-paid" | "liquid-realized-loss" | "price-1m-sma" | "up-to-5y-95p-price-paid" | "year-2013-80p-price-paid" | "year-2020-70p-price-paid" | "market-price-to-year-2015-realized-price-ratio-0-5p" | "up-to-5m-cumulative-net-realized-profit-and-loss" | "megalodon-cumulative-realized-profit" | "plankton-negative-unrealized-loss" | "from-1m-to-3m-supply-in-profit-to-own-supply-ratio" | "year-2014-halved-supply-to-circulating-supply-ratio" | "from-3y-to-5y-30p-price-paid" | "whale-supply-in-loss-to-circulating-supply-ratio" | "market-price-to-up-to-15y-realized-price-ratio-1w-sma" | "p2sh-unrealized-loss" | "illiquid-unrealized-profit" | "from-2y-sell-side-risk-ratio" | "up-to-3y-input-volume" | "year-2011-65p-price-paid" | "from-5y-to-7y-input-count" | "from-5y-to-7y-value-created" | "price-4y-sma-0-1p" | "from-1d-to-1w-adjusted-value-destroyed" | "from-1d-to-1w-unrealized-profit" | "year-2015-net-realized-profit-and-loss" | "year-2019-70p-price-paid" | "shrimp-90p-price-paid" | "p2sh-supply-in-loss-to-circulating-supply-ratio" | "p2sh-realized-cap" | "from-3y-to-5y-90p-price-paid" | "price-55d-sma-99p" | "up-to-4m-60p-price-paid" | "market-price-to-price-1w-sma-ratio-99-5p" | "from-2y-to-3y-supply" | "fees-1y-sum" | "crab-negative-realized-loss" | "market-price-to-lth-realized-price-ratio-1y-sma-momentum-oscillator" | "p2pkh-10p-price-paid" | "realized-cap" | "market-price-to-from-4y-realized-price-ratio-1y-sma-momentum-oscillator" | "up-to-10y-05p-price-paid" | "year-2012-realized-price" | "up-to-1w-cumulative-net-realized-profit-and-loss-1m-net-change" | "year-2015-85p-price-paid" | "whale-net-unrealized-profit-and-loss" | "from-5y-to-7y-supply-to-circulating-supply-ratio" | "from-1d-to-1w-realized-price-0-5p" | "up-to-15y-realized-price-99-9p" | "up-to-1d-negative-realized-loss" | "up-to-1y-net-unrealized-profit-and-loss-to-market-cap-ratio" | "up-to-2y-realized-price-0-5p" | "price-200w-sma" | "market-price-to-up-to-10y-realized-price-ratio-1y-sma-momentum-oscillator" | "market-price-to-up-to-3m-realized-price-ratio-1y-sma-momentum-oscillator" | "year-2020-cumulative-net-realized-profit-and-loss" | "from-4y-supply-in-loss-to-circulating-supply-ratio" | "up-to-2m-cumulative-realized-profit" | "market-price-to-megalodon-realized-price-ratio-0-1p" | "from-2y-realized-price-99-9p" | "from-1d-to-1w-net-unrealized-profit-and-loss" | "sth-halved-supply-to-circulating-supply-ratio" | "market-price-to-plankton-realized-price-ratio-1w-sma" | "up-to-2m-supply-in-profit-to-own-supply-ratio" | "market-price-to-up-to-4m-realized-price-ratio" | "up-to-1w-input-volume" | "humpback-adjusted-spent-output-profit-ratio" | "p2wpkh-supply-in-profit-to-own-supply-ratio" | "p2tr-supply-to-circulating-supply-ratio" | "shrimp-realized-price-99-5p" | "from-3m-to-6m-realized-cap-1m-net-change" | "from-1d-to-1w-05p-price-paid" | "from-4y-realized-value" | "market-price-to-up-to-15y-realized-price-ratio-99-9p" | "p2tr-15p-price-paid" | "from-3y-to-5y-realized-cap" | "up-to-5m-adjusted-value-destroyed" | "year-2009-supply-in-loss-to-circulating-supply-ratio" | "year-2014-input-count" | "year-2018-realized-profit" | "up-to-2y-negative-realized-loss" | "year-2020-realized-loss" | "liquid-05p-price-paid" | "year-2009-realized-price-99-5p" | "crab-supply-in-profit" | "market-price-to-year-2009-realized-price-ratio-99-5p" | "p2tr-input-count" | "up-to-2y-supply-in-profit-to-own-supply-ratio" | "illiquid-supply" | "lth-05p-price-paid" | "year-2013-sell-side-risk-ratio" | "year-2017-realized-value" | "up-to-10y-realized-price-99p" | "year-2013-35p-price-paid" | "fish-60p-price-paid" | "up-to-1m-80p-price-paid" | "market-price-to-from-3m-to-6m-realized-price-ratio-99-5p" | "from-3m-to-6m-60p-price-paid" | "year-2024-net-unrealized-profit-and-loss" | "market-price-to-price-1m-sma-ratio-0-5p" | "p2pkh-realized-price-99-9p" | "year-2010-35p-price-paid" | "crab-spent-output-profit-ratio" | "up-to-3y-realized-price-99p" | "year-2010-spent-output-profit-ratio" | "up-to-2m-25p-price-paid" | "from-3m-to-6m-supply" | "market-price-to-liquid-realized-price-ratio-1y-sma-momentum-oscillator" | "p2pkh-unrealized-profit" | "year-2019-supply-to-circulating-supply-ratio" | "from-4y-realized-price-99p" | "year-2021-30p-price-paid" | "from-1y-supply-in-profit-to-circulating-supply-ratio" | "block-size-1d-max" | "year-2014-sell-side-risk-ratio" | "from-2y-to-3y-supply-in-profit-to-circulating-supply-ratio" | "year-2015-sell-side-risk-ratio" | "year-2018-halved-supply" | "humpback-value-created" | "from-2y-unrealized-loss" | "illiquid-negative-unrealized-loss" | "humpback-address-count" | "lth-input-count" | "market-price-to-price-1m-sma-ratio-99-5p" | "market-price-to-year-2014-realized-price-ratio-1w-sma" | "megalodon-75p-price-paid" | "market-price-to-price-4y-sma-ratio-99-9p" | "from-7y-to-10y-05p-price-paid" | "sth-realized-price-0-1p" | "up-to-10y-25p-price-paid" | "up-to-10y-supply-in-loss-to-circulating-supply-ratio" | "up-to-3m-05p-price-paid" | "market-price-to-from-1m-to-3m-realized-price-ratio-0-5p" | "p2tr-realized-value" | "year-2017-cumulative-realized-profit" | "year-2019-realized-price-99p" | "year-2017-realized-price-99p" | "up-to-4m-negative-unrealized-loss" | "supply" | "market-price-to-year-2015-realized-price-ratio-1y-sma" | "up-to-1d-cumulative-net-realized-profit-and-loss-1m-net-change" | "year-2023-unrealized-loss" | "from-1y-to-2y-cumulative-net-realized-profit-and-loss-1m-net-change" | "illiquid-address-count" | "from-1w-to-1m-adjusted-value-created" | "up-to-3m-spent-output-profit-ratio" | "up-to-3m-value-created" | "up-to-2m-value-destroyed" | "from-1w-to-1m-cumulative-realized-profit" | "up-to-5y-realized-price-1p" | "up-to-7y-realized-price-99-9p" | "highly-liquid-adjusted-spent-output-profit-ratio" | "whale-net-realized-profit-and-loss-to-market-cap-ratio" | "year-2011-realized-price-99p" | "year-2015-cumulative-realized-loss" | "up-to-3y-realized-loss" | "plankton-cumulative-net-realized-profit-and-loss" | "year-2016-input-volume" | "crab-realized-price-99p" | "illiquid-45p-price-paid" | "p2wpkh-realized-price-99p" | "market-price-to-p2wsh-realized-price-ratio-0-1p" | "p2tr-20p-price-paid" | "up-to-1y-30p-price-paid" | "market-price-to-whale-realized-price-ratio-99-5p" | "market-price-to-price-1y-sma-ratio-99-5p" | "market-price-to-p2sh-realized-price-ratio-99-5p" | "up-to-3m-net-unrealized-profit-and-loss-to-market-cap-ratio" | "cointime-adjusted-yearly-inflation-rate" | "market-price-to-illiquid-realized-price-ratio-99p" | "market-price-to-year-2022-realized-price-ratio-1y-sma" | "p2pk-cumulative-net-realized-profit-and-loss-1m-net-change" | "market-price-to-humpback-realized-price-ratio-1w-sma" | "from-15y-realized-value" | "market-price-to-realized-price-ratio-1y-sma" | "from-2y-to-3y-net-realized-profit-and-loss" | "year-2019-35p-price-paid" | "year-2022-85p-price-paid" | "up-to-1w-supply-in-profit-to-own-supply-ratio" | "year-2020-95p-price-paid" | "up-to-3m-90p-price-paid" | "market-price-to-from-7y-to-10y-realized-price-ratio-1w-sma" | "from-15y-input-volume" | "market-price-to-whale-realized-price-ratio-1w-sma" | "up-to-4m-20p-price-paid" | "plankton-adjusted-spent-output-profit-ratio" | "up-to-6m-spent-output-profit-ratio" | "year-2021-adjusted-spent-output-profit-ratio" | "year-2022-realized-loss" | "up-to-1d-negative-unrealized-loss" | "year-2011-supply-in-loss-to-circulating-supply-ratio" | "up-to-1d-halved-supply" | "market-price-to-from-2y-to-3y-realized-price-ratio-0-1p" | "from-1y-supply-in-profit" | "market-price-to-true-market-mean-ratio-99p" | "from-1d-to-1w-supply" | "lth-35p-price-paid" | "market-price-to-year-2011-realized-price-ratio-99p" | "plankton-address-count" | "year-2020-value-created" | "market-price-to-up-to-1d-realized-price-ratio-0-1p" | "market-price-to-up-to-7y-realized-price-ratio-0-1p" | "lth-realized-cap-1m-net-change" | "market-price-to-from-1m-to-3m-realized-price-ratio-0-1p" | "p2pkh-70p-price-paid" | "from-6m-to-1y-sell-side-risk-ratio" | "p2tr-05p-price-paid" | "up-to-1d-realized-price" | "p2wpkh-supply-in-loss-to-own-supply-ratio" | "up-to-1m-30p-price-paid" | "from-10y-supply-in-profit" | "from-2y-to-3y-35p-price-paid" | "from-2y-to-3y-65p-price-paid" | "from-4y-realized-price-1p" | "up-to-1m-15p-price-paid" | "market-price-to-p2tr-realized-price-ratio-1y-sma" | "from-1d-to-1w-value-created" | "p2pk-55p-price-paid" | "up-to-1w-supply-in-profit" | "shrimp-unrealized-loss" | "up-to-10y-halved-supply" | "up-to-1y-realized-price-0-1p" | "up-to-1y-realized-price-99-5p" | "up-to-2m-30p-price-paid" | "up-to-4m-cumulative-realized-loss" | "up-to-4m-realized-price-0-1p" | "from-10y-adjusted-spent-output-profit-ratio" | "up-to-7y-realized-cap-1m-net-change" | "up-to-2m-realized-value" | "year-2013-spent-output-profit-ratio" | "p2pk-adjusted-spent-output-profit-ratio" | "year-2016-30p-price-paid" | "year-2019-realized-price-99-9p" | "from-1m-to-3m-95p-price-paid" | "up-to-1m-halved-supply" | "whale-55p-price-paid" | "year-2019-15p-price-paid" | "up-to-1y-realized-cap-1m-net-change" | "year-2024-value-created" | "drawdown" | "block-weight-1d-75p" | "up-to-1d-net-realized-profit-and-loss-to-market-cap-ratio" | "year-2017-45p-price-paid" | "year-2020-45p-price-paid" | "shrimp-35p-price-paid" | "market-price-to-up-to-3m-realized-price-ratio-0-5p" | "from-5y-to-7y-80p-price-paid" | "year-2019-realized-loss" | "year-2020-net-unrealized-profit-and-loss" | "from-1m-to-3m-halved-supply" | "market-price-to-p2pk-realized-price-ratio-0-5p" | "year-2023-supply-to-circulating-supply-ratio" | "up-to-2y-negative-unrealized-loss" | "up-to-5m-supply-to-circulating-supply-ratio" | "coinbase-1y-sum" | "from-7y-to-10y-90p-price-paid" | "market-price-to-year-2009-realized-price-ratio-99-9p" | "p2wsh-realized-value" | "transactions-per-second" | "market-price-to-sth-realized-price-ratio" | "shrimp-supply" | "year-2019-25p-price-paid" | "from-7y-to-10y-supply-in-profit-to-own-supply-ratio" | "year-2021-10p-price-paid" | "year-2024-realized-cap" | "from-1y-sell-side-risk-ratio" | "year-2013-40p-price-paid" | "from-3y-to-5y-05p-price-paid" | "year-2017-supply-in-loss" | "fish-net-realized-profit-and-loss-to-market-cap-ratio" | "year-2016-40p-price-paid" | "from-3m-to-6m-realized-price-99-9p" | "year-2023-unrealized-profit" | "year-2013-net-realized-profit-and-loss-to-market-cap-ratio" | "p2wsh-median-price-paid" | "shark-adjusted-spent-output-profit-ratio" | "up-to-2y-adjusted-spent-output-profit-ratio" | "fish-cumulative-realized-profit" | "up-to-1d-05p-price-paid" | "from-1y-to-2y-halved-supply-to-circulating-supply-ratio" | "crab-net-realized-profit-and-loss" | "year-2023-45p-price-paid" | "from-2y-supply-in-profit-to-circulating-supply-ratio" | "from-4y-realized-cap" | "market-price-to-from-1y-to-2y-realized-price-ratio-99-5p" | "market-price-to-p2wsh-realized-price-ratio-1m-sma" | "from-2y-to-3y-cumulative-realized-profit" | "market-price-to-sth-realized-price-ratio-99-5p" | "up-to-5m-20p-price-paid" | "up-to-5m-realized-price-99-5p" | "fees" | "shark-supply-in-profit-to-circulating-supply-ratio" | "year-2014-45p-price-paid" | "up-to-2y-realized-price-99-9p" | "year-2014-realized-price-99-9p" | "year-2021-cumulative-realized-profit" | "up-to-5y-realized-price-99-9p" | "year-2023-40p-price-paid" | "from-1y-supply-in-loss-to-circulating-supply-ratio" | "market-price-to-price-144d-sma-ratio" | "up-to-3y-cumulative-realized-loss" | "p2tr-realized-price-99-9p" | "p2wpkh-realized-cap" | "humpback-supply-in-profit-to-circulating-supply-ratio" | "sth-10p-price-paid" | "from-10y-85p-price-paid" | "from-1y-35p-price-paid" | "up-to-3y-70p-price-paid" | "year-2023-90p-price-paid" | "market-price-to-cointime-price-ratio-1y-sma-momentum-oscillator" | "price-2y-sma-99p" | "year-2016-spent-output-profit-ratio" | "p2wsh-net-realized-profit-and-loss-to-market-cap-ratio" | "year-2017-unrealized-profit" | "year-2023-70p-price-paid" | "from-5y-to-7y-realized-price-0-1p" | "market-price-to-p2sh-realized-price-ratio-99-9p" | "up-to-6m-net-realized-profit-and-loss-to-market-cap-ratio" | "up-to-3m-median-price-paid" | "shrimp-supply-in-profit" | "from-6m-to-1y-realized-price" | "market-price-to-price-89d-sma-ratio-0-1p" | "plankton-45p-price-paid" | "from-1m-to-3m-90p-price-paid" | "liquid-20p-price-paid" | "p2wsh-30p-price-paid" | "from-6m-to-1y-realized-price-99p" | "fish-cumulative-realized-loss" | "market-price-to-realized-price-ratio-1w-sma" | "market-price-to-price-1w-sma-ratio-1y-sma" | "whale-supply-in-loss" | "year-2011-10p-price-paid" | "shark-75p-price-paid" | "illiquid-65p-price-paid" | "year-2017-net-realized-profit-and-loss-to-market-cap-ratio" | "market-price-to-fish-realized-price-ratio-99-5p" | "megalodon-supply-in-profit-to-own-supply-ratio" | "year-2013-input-count" | "market-price-to-up-to-15y-realized-price-ratio-0-5p" | "market-price-to-highly-liquid-realized-price-ratio-0-1p" | "year-2012-unrealized-loss" | "from-2y-input-volume" | "market-price-to-year-2011-realized-price-ratio-99-9p" | "year-2010-halved-supply-to-circulating-supply-ratio" | "market-price-to-year-2022-realized-price-ratio-1w-sma" | "year-2021-median-price-paid" | "year-2024-median-price-paid" | "market-price-to-price-55d-sma-ratio-1y-sma" | "from-10y-to-15y-adjusted-value-destroyed" | "market-price-to-active-price-ratio-0-5p" | "up-to-1y-negative-unrealized-loss" | "input-count" | "market-price-to-up-to-2y-realized-price-ratio-1y-sma-momentum-oscillator" | "megalodon-80p-price-paid" | "market-price-to-sth-realized-price-ratio-1y-sma" | "market-price-to-year-2010-realized-price-ratio-1m-sma" | "p2pkh-supply-in-profit" | "up-to-1w-70p-price-paid" | "year-2021-20p-price-paid" | "market-price-to-liquid-realized-price-ratio" | "year-2016-realized-cap" | "market-price-to-from-15y-realized-price-ratio-1m-sma" | "year-2020-30p-price-paid" | "from-10y-to-15y-30p-price-paid" | "from-5y-to-7y-utxo-count" | "year-2018-15p-price-paid" | "market-price-to-highly-liquid-realized-price-ratio-99-5p" | "up-to-15y-median-price-paid" | "year-2012-input-volume" | "up-to-3m-adjusted-value-created" | "up-to-2y-supply-in-profit" | "up-to-1m-70p-price-paid" | "year-2013-realized-price-1p" | "up-to-15y-cumulative-realized-profit" | "market-price-to-up-to-5y-realized-price-ratio-1w-sma" | "market-price-to-year-2012-realized-price-ratio-99-5p" | "from-15y-45p-price-paid" | "from-1w-to-1m-negative-realized-loss" | "from-1y-to-2y-realized-price-0-5p" | "shrimp-adjusted-spent-output-profit-ratio" | "from-15y-supply-in-profit" | "up-to-4m-25p-price-paid" | "crab-realized-value" | "from-1w-to-1m-input-volume" | "negative-unrealized-loss" | "block-size-1d-sum" | "market-price-to-humpback-realized-price-ratio-1y-sma" | "up-to-5m-median-price-paid" | "year-2019-realized-value" | "shrimp-net-unrealized-profit-and-loss" | "from-6m-to-1y-halved-supply" | "from-10y-to-15y-realized-price-99p" | "price-1m-total-return" | "up-to-10y-55p-price-paid" | "from-10y-40p-price-paid" | "year-2024-60p-price-paid" | "from-2y-realized-cap-1m-net-change" | "price-4y-compound-return" | "40p-price-paid" | "block-interval-1d-75p" | "price-55d-sma-1p" | "up-to-5y-15p-price-paid" | "year-2015-60p-price-paid" | "p2sh-realized-price-99p" | "plankton-70p-price-paid" | "shrimp-address-count" | "up-to-7y-supply-in-loss-to-circulating-supply-ratio" | "p2pkh-cumulative-realized-loss" | "p2pkh-realized-profit" | "from-1y-to-2y-input-count" | "year-2013-realized-price-99-9p" | "year-2014-utxo-count" | "market-price-to-year-2021-realized-price-ratio-1m-sma" | "price-89d-sma-99-9p" | "up-to-15y-input-volume" | "p2wsh-net-unrealized-profit-and-loss-to-market-cap-ratio" | "up-to-7y-35p-price-paid" | "year-2015-cumulative-net-realized-profit-and-loss" | "up-to-1y-40p-price-paid" | "p2wsh-supply-in-loss-to-circulating-supply-ratio" | "fish-input-count" | "year-2022-10p-price-paid" | "from-10y-to-15y-sell-side-risk-ratio" | "up-to-1w-input-count" | "market-price-to-from-1d-to-1w-realized-price-ratio-1y-sma-momentum-oscillator" | "year-2010-supply-to-circulating-supply-ratio" | "year-2011-negative-unrealized-loss" | "up-to-1y-75p-price-paid" | "market-price-to-cointime-price-ratio-1p" | "up-to-3m-realized-profit" | "up-to-3y-adjusted-value-created" | "up-to-3y-net-unrealized-profit-and-loss" | "up-to-2m-net-unrealized-profit-and-loss-to-market-cap-ratio" | "from-7y-to-10y-30p-price-paid" | "market-price-to-from-10y-to-15y-realized-price-ratio-0-5p" | "lth-adjusted-spent-output-profit-ratio" | "up-to-3y-realized-price" | "year-2009-realized-profit" | "market-price-to-humpback-realized-price-ratio-0-1p" | "from-10y-to-15y-median-price-paid" | "from-10y-to-15y-input-count" | "humpback-spent-output-profit-ratio" | "up-to-2m-95p-price-paid" | "up-to-5y-utxo-count" | "year-2012-cumulative-realized-profit" | "year-2012-sell-side-risk-ratio" | "year-2016-negative-unrealized-loss" | "from-1y-to-2y-input-volume" | "year-2020-adjusted-value-destroyed" | "year-2023-cumulative-realized-profit" | "from-1y-to-2y-05p-price-paid" | "from-3y-to-5y-realized-price-99p" | "humpback-realized-profit" | "shark-realized-price-0-5p" | "lth-net-unrealized-profit-and-loss-to-market-cap-ratio" | "market-price-to-price-1y-sma-ratio-1y-sma-momentum-oscillator" | "market-price-to-up-to-10y-realized-price-ratio-0-1p" | "from-1w-to-1m-negative-unrealized-loss" | "year-2018-95p-price-paid" | "market-price-to-true-market-mean-ratio-1y-sma" | "from-3y-to-5y-realized-price-99-9p" | "highly-liquid-cumulative-realized-loss" | "market-price-to-shrimp-realized-price-ratio-1p" | "p2tr-supply-in-loss" | "up-to-7y-65p-price-paid" | "highly-liquid-realized-price-1p" | "market-price-to-up-to-6m-realized-price-ratio-99-5p" | "up-to-5y-net-realized-profit-and-loss" | "sth-realized-price" | "shark-utxo-count" | "from-1d-to-1w-spent-output-profit-ratio" | "up-to-2m-cumulative-net-realized-profit-and-loss" | "year-2014-realized-loss" | "year-2013-supply-in-loss-to-circulating-supply-ratio" | "from-10y-to-15y-adjusted-spent-output-profit-ratio" | "market-price-to-price-4y-sma-ratio-0-5p" | "market-price-to-year-2021-realized-price-ratio-99-9p" | "from-7y-to-10y-value-destroyed" | "market-price-to-from-4y-realized-price-ratio-1p" | "year-2017-realized-price-99-5p" | "year-2020-85p-price-paid" | "year-2010-net-unrealized-profit-and-loss-to-market-cap-ratio" | "price-2y-sma-0-5p" | "p2wsh-spent-output-profit-ratio" | "from-6m-to-1y-55p-price-paid" | "up-to-3m-supply-in-profit" | "market-price-to-year-2013-realized-price-ratio-99-9p" | "up-to-3y-cumulative-realized-profit" | "up-to-1y-supply-in-loss-to-own-supply-ratio" | "market-price-to-price-144d-sma-ratio-1p" | "up-to-4m-supply-in-profit-to-own-supply-ratio" | "market-price-to-up-to-10y-realized-price-ratio-1w-sma" | "market-price-to-from-1d-to-1w-realized-price-ratio-1w-sma" | "from-3m-to-6m-net-realized-profit-and-loss-to-market-cap-ratio" | "from-1d-to-1w-65p-price-paid" | "up-to-5m-realized-cap" | "year-2011-unrealized-profit" | "from-1w-to-1m-value-destroyed" | "humpback-input-volume" | "market-price-to-price-4y-sma-ratio-1y-sma-momentum-oscillator" | "up-to-2y-35p-price-paid" | "up-to-2y-70p-price-paid" | "year-2016-65p-price-paid" | "year-2020-supply-in-loss-to-circulating-supply-ratio" | "market-price-to-p2wpkh-realized-price-ratio" | "market-price-to-year-2017-realized-price-ratio" | "market-price-to-price-89d-sma-ratio-1y-sma" | "active-price-1p" | "up-to-2y-input-count" | "shrimp-45p-price-paid" | "from-1y-65p-price-paid" | "p2sh-35p-price-paid" | "from-2y-median-price-paid" | "fish-70p-price-paid" | "megalodon-supply-in-loss-to-own-supply-ratio" | "up-to-3m-supply" | "vaulting-rate" | "up-to-4m-supply-in-profit-to-circulating-supply-ratio" | "year-2012-90p-price-paid" | "65p-price-paid" | "market-price-to-from-1w-to-1m-realized-price-ratio-99-9p" | "year-2019-utxo-count" | "year-2018-spent-output-profit-ratio" | "from-3y-to-5y-unrealized-profit" | "year-2015-supply-in-profit" | "from-10y-to-15y-supply-in-profit-to-circulating-supply-ratio" | "market-price-to-up-to-10y-realized-price-ratio-1y-sma" | "year-2011-75p-price-paid" | "market-price-to-up-to-5m-realized-price-ratio-1y-sma-momentum-oscillator" | "shark-40p-price-paid" | "from-10y-10p-price-paid" | "market-price-to-year-2018-realized-price-ratio-99p" | "up-to-5m-realized-price-99p" | "from-3y-to-5y-45p-price-paid" | "from-5y-to-7y-supply-in-profit-to-circulating-supply-ratio" | "shrimp-negative-unrealized-loss" | "subsidy-in-dollars-1y-sum" | "from-2y-85p-price-paid" | "from-10y-supply-in-loss-to-own-supply-ratio" | "from-5y-to-7y-30p-price-paid" | "illiquid-realized-price-99p" | "market-price-to-price-144d-sma-ratio-1w-sma" | "price-2y-sma" | "year-2013-supply-in-profit-to-own-supply-ratio" | "from-3m-to-6m-realized-price-1p" | "up-to-1d-supply-in-profit-to-circulating-supply-ratio" | "year-2015-55p-price-paid" | "year-2019-negative-realized-loss" | "year-2019-realized-cap-1m-net-change" | "liquid-unrealized-profit" | "from-6m-to-1y-15p-price-paid" | "from-5y-to-7y-supply-in-loss-to-circulating-supply-ratio" | "up-to-4m-15p-price-paid" | "from-7y-to-10y-cumulative-realized-loss" | "blocks-mined-1d-target" | "from-3y-to-5y-realized-price-99-5p" | "market-price-to-year-2017-realized-price-ratio-99-9p" | "year-2012-net-unrealized-profit-and-loss" | "shark-unrealized-profit" | "concurrent-liveliness" | "from-6m-to-1y-supply-in-loss-to-circulating-supply-ratio" | "price-144d-sma-1p" | "from-3y-to-5y-95p-price-paid" | "price-89d-sma-99p" | "whale-05p-price-paid" | "55p-price-paid" | "price-1y-sma-99-9p" | "up-to-3m-cumulative-net-realized-profit-and-loss-1m-net-change" | "up-to-5y-realized-price-0-5p" | "shrimp-realized-cap" | "p2wpkh-input-volume" | "from-1y-net-unrealized-profit-and-loss-to-market-cap-ratio" | "from-6m-to-1y-adjusted-spent-output-profit-ratio" | "market-price-to-liquid-realized-price-ratio-1w-sma" | "market-price-to-up-to-2m-realized-price-ratio-0-1p" | "p2wsh-unrealized-loss" | "market-price-to-shark-realized-price-ratio-99p" | "crab-realized-cap-1m-net-change" | "from-5y-to-7y-spent-output-profit-ratio" | "year-2014-realized-price-0-5p" | "p2pk-20p-price-paid" | "up-to-5m-45p-price-paid" | "lth-negative-unrealized-loss" | "from-15y-supply-in-profit-to-own-supply-ratio" | "up-to-15y-cumulative-realized-loss" | "year-2015-negative-unrealized-loss" | "up-to-7y-05p-price-paid" | "year-2020-realized-cap" | "crab-negative-unrealized-loss" | "market-price-to-true-market-mean-ratio-0-1p" | "crab-realized-profit" | "from-1w-to-1m-input-count" | "year-2021-supply" | "year-2010-25p-price-paid" | "year-2014-30p-price-paid" | "year-2023-realized-value" | "market-price-to-up-to-1m-realized-price-ratio-1p" | "up-to-2y-95p-price-paid" | "sth-supply-to-circulating-supply-ratio" | "market-price-to-megalodon-realized-price-ratio-1p" | "market-price-to-shark-realized-price-ratio" | "from-10y-to-15y-realized-price-0-1p" | "from-3y-to-5y-realized-profit" | "market-price-to-year-2024-realized-price-ratio-0-5p" | "year-2013-cumulative-net-realized-profit-and-loss" | "year-2019-spent-output-profit-ratio" | "empty-addresses" | "year-2010-supply-in-loss-to-circulating-supply-ratio" | "year-2022-realized-profit" | "market-price-to-up-to-1d-realized-price-ratio-1y-sma-momentum-oscillator" | "plankton-realized-loss" | "year-2012-realized-value" | "market-price-to-up-to-2y-realized-price-ratio-1m-sma" | "from-1d-to-1w-negative-unrealized-loss" | "lth-80p-price-paid" | "market-price-to-year-2022-realized-price-ratio" | "from-3y-to-5y-15p-price-paid" | "from-1y-net-realized-profit-and-loss-to-market-cap-ratio" | "year-2011-halved-supply-to-circulating-supply-ratio" | "fish-supply" | "humpback-net-realized-profit-and-loss-to-market-cap-ratio" | "coinblocks-destroyed" | "from-6m-to-1y-spent-output-profit-ratio" | "market-price-to-p2tr-realized-price-ratio-99-5p" | "block-size-1d-25p" | "highly-liquid-15p-price-paid" | "p2pk-40p-price-paid" | "up-to-4m-realized-price-99-9p" | "cumulative-coinblocks-destroyed" | "illiquid-35p-price-paid" | "from-2y-realized-price-0-5p" | "year-2014-55p-price-paid" | "market-price-to-from-4y-realized-price-ratio-99-9p" | "up-to-10y-utxo-count" | "market-price-to-year-2020-realized-price-ratio-1m-sma" | "lth-realized-profit" | "from-1d-to-1w-supply-in-profit" | "from-7y-to-10y-supply-in-profit-to-circulating-supply-ratio" | "p2pk-input-volume" | "year-2009-adjusted-spent-output-profit-ratio" | "from-1d-to-1w-10p-price-paid" | "from-1y-to-2y-realized-loss" | "year-2010-input-count" | "market-price-to-year-2017-realized-price-ratio-1y-sma-momentum-oscillator" | "fish-55p-price-paid" | "up-to-1y-20p-price-paid" | "up-to-6m-negative-realized-loss" | "year-2017-net-unrealized-profit-and-loss-to-market-cap-ratio" | "p2tr-adjusted-value-created" | "year-2015-realized-cap-1m-net-change" | "from-10y-to-15y-value-destroyed" | "from-6m-to-1y-realized-loss" | "market-price-to-price-2y-sma-ratio-99-9p" | "year-2009-unrealized-loss" | "year-2019-85p-price-paid" | "year-2014-realized-price" | "blocks-mined-1m-target" | "market-price-to-up-to-3y-realized-price-ratio-1w-sma" | "year-2020-halved-supply" | "year-2022-negative-unrealized-loss" | "cumulative-coinbase" | "block-interval" | "p2pkh-40p-price-paid" | "market-price-to-shark-realized-price-ratio-99-9p" | "market-price-to-price-1m-sma-ratio-99-9p" | "price-21d-sma-99-5p" | "p2tr-cumulative-net-realized-profit-and-loss-1m-net-change" | "up-to-2m-supply-in-profit" | "cointime-price-0-1p" | "market-price-to-from-1w-to-1m-realized-price-ratio-1m-sma" | "95p-price-paid" | "market-price-to-up-to-4m-realized-price-ratio-1w-sma" | "market-price-to-p2tr-realized-price-ratio-0-5p" | "market-price-to-price-200w-sma-ratio-1w-sma" | "up-to-5m-95p-price-paid" | "from-3m-to-6m-05p-price-paid" | "whale-40p-price-paid" | "from-5y-to-7y-15p-price-paid" | "shark-value-destroyed" | "liquid-60p-price-paid" | "whale-realized-price-99p" | "year-2011-realized-price-0-5p" | "year-2012-net-unrealized-profit-and-loss-to-market-cap-ratio" | "year-2012-realized-cap-1m-net-change" | "from-3y-to-5y-supply-in-loss-to-circulating-supply-ratio" | "year-2020-realized-value" | "year-2021-value-destroyed" | "from-1w-to-1m-value-created" | "market-price-to-year-2018-realized-price-ratio-99-5p" | "market-price-to-from-1y-realized-price-ratio-1m-sma" | "fish-realized-price" | "highly-liquid-negative-unrealized-loss" | "up-to-1m-supply-to-circulating-supply-ratio" | "market-price-to-crab-realized-price-ratio-0-5p" | "whale-cumulative-net-realized-profit-and-loss" | "from-1d-to-1w-90p-price-paid" | "p2sh-negative-unrealized-loss" | "up-to-1w-net-unrealized-profit-and-loss-to-market-cap-ratio" | "market-price-to-up-to-7y-realized-price-ratio-0-5p" | "year-2022-unrealized-profit" | "up-to-1m-supply-in-profit-to-own-supply-ratio" | "market-price-to-from-2y-realized-price-ratio-1y-sma" | "up-to-1m-supply-in-loss" | "from-3m-to-6m-supply-in-loss-to-circulating-supply-ratio" | "p2pk-unrealized-profit" | "p2pkh-median-price-paid" | "up-to-15y-net-unrealized-profit-and-loss-to-market-cap-ratio" | "up-to-3m-realized-price-99-9p" | "up-to-1d-supply-in-profit-to-own-supply-ratio" | "up-to-3y-cumulative-net-realized-profit-and-loss" | "year-2012-65p-price-paid" | "year-2012-net-realized-profit-and-loss" | "from-1y-to-2y-95p-price-paid" | "market-price-to-p2pkh-realized-price-ratio-1m-sma" | "market-price-to-up-to-2y-realized-price-ratio-0-5p" | "illiquid-halved-supply" | "from-1w-to-1m-halved-supply-to-circulating-supply-ratio" | "from-3m-to-6m-15p-price-paid" | "p2pkh-60p-price-paid" | "true-market-mean-99p" | "up-to-1d-median-price-paid" | "up-to-1m-negative-realized-loss" | "year-2015-cumulative-net-realized-profit-and-loss-1m-net-change" | "year-2015-supply-in-loss-to-own-supply-ratio" | "puell-multiple" | "year-2019-supply-in-loss" | "up-to-4m-supply-in-loss" | "up-to-15y-supply-in-loss" | "market-price-to-price-89d-sma-ratio-1m-sma" | "year-2022-cumulative-net-realized-profit-and-loss-1m-net-change" | "year-2011-35p-price-paid" | "vaulted-price-0-5p" | "year-2017-realized-cap-1m-net-change" | "75p-price-paid" | "from-10y-realized-price-1p" | "market-price-to-price-8d-sma-ratio-99-5p" | "year-2010-net-realized-profit-and-loss" | "year-2015-15p-price-paid" | "block-interval-1d-median" | "shark-realized-price-99p" | "market-price-to-p2pk-realized-price-ratio-0-1p" | "year-2011-95p-price-paid" | "crab-net-unrealized-profit-and-loss" | "year-2017-cumulative-net-realized-profit-and-loss" | "from-1w-to-1m-net-realized-profit-and-loss-to-market-cap-ratio" | "market-price-to-up-to-3y-realized-price-ratio-99p" | "year-2012-85p-price-paid" | "from-1m-to-3m-realized-profit" | "market-price-to-up-to-3y-realized-price-ratio-0-5p" | "blocks-mined-1w-target" | "from-7y-to-10y-55p-price-paid" | "year-2018-20p-price-paid" | "from-10y-adjusted-value-created" | "year-2024-supply-to-circulating-supply-ratio" | "whale-cumulative-net-realized-profit-and-loss-1m-net-change" | "price-21d-sma" | "illiquid-realized-cap-1m-net-change" | "market-price-to-up-to-2m-realized-price-ratio-0-5p" | "market-price-to-up-to-7y-realized-price-ratio-1m-sma" | "up-to-5m-spent-output-profit-ratio" | "year-2022-halved-supply-to-circulating-supply-ratio" | "p2sh-adjusted-value-destroyed" | "whale-90p-price-paid" | "up-to-2m-supply-to-circulating-supply-ratio" | "from-1w-to-1m-supply" | "year-2012-value-created" | "year-2015-adjusted-spent-output-profit-ratio" | "year-2016-95p-price-paid" | "from-1y-to-2y-value-created" | "market-price-to-up-to-3m-realized-price-ratio-1w-sma" | "from-1y-utxo-count" | "shrimp-realized-price-99-9p" | "fish-net-unrealized-profit-and-loss" | "market-price-to-up-to-3m-realized-price-ratio-99p" | "from-1w-to-1m-median-price-paid" | "year-2023-realized-price-99p" | "year-2021-supply-in-profit-to-own-supply-ratio" | "up-to-5y-10p-price-paid" | "from-5y-to-7y-20p-price-paid" | "whale-median-price-paid" | "market-price-to-shark-realized-price-ratio-0-5p" | "from-4y-75p-price-paid" | "from-5y-to-7y-60p-price-paid" | "up-to-5y-value-destroyed" | "from-1d-to-1w-55p-price-paid" | "from-1w-to-1m-realized-loss" | "up-to-1w-net-realized-profit-and-loss" | "whale-realized-value" | "from-6m-to-1y-cumulative-net-realized-profit-and-loss" | "market-price-to-up-to-1m-realized-price-ratio" | "up-to-3m-unrealized-loss" | "from-1m-to-3m-cumulative-realized-profit" | "up-to-1m-10p-price-paid" | "year-2015-95p-price-paid" | "year-2020-realized-price-99-5p" | "plankton-35p-price-paid" | "year-2024-cumulative-realized-loss" | "from-1m-to-3m-adjusted-spent-output-profit-ratio" | "market-price-to-year-2018-realized-price-ratio-99-9p" | "market-price-to-up-to-3m-realized-price-ratio-1y-sma" | "value-created" | "from-7y-to-10y-95p-price-paid" | "from-1d-to-1w-adjusted-value-created" | "from-1y-realized-price-0-1p" | "market-price-to-year-2021-realized-price-ratio-99-5p" | "from-4y-net-unrealized-profit-and-loss-to-market-cap-ratio" | "up-to-5y-cumulative-realized-profit" | "from-1w-to-1m-realized-price-99p" | "year-2024-supply-in-loss" | "market-price-to-illiquid-realized-price-ratio-1m-sma" | "up-to-2m-input-count" | "from-5y-to-7y-40p-price-paid" | "from-4y-realized-price-99-5p" | "from-4y-input-volume" | "humpback-value-destroyed" | "market-price-to-realized-price-ratio-1y-sma-momentum-oscillator" | "sth-realized-price-99-9p" | "up-to-1w-90p-price-paid" | "p2pkh-80p-price-paid" | "price-4y-sma" | "market-price-to-from-10y-realized-price-ratio-0-5p" | "year-2015-realized-price-99-5p" | "year-2018-45p-price-paid" | "market-price-to-from-2y-realized-price-ratio-0-5p" | "up-to-2y-spent-output-profit-ratio" | "from-10y-realized-price-99-5p" | "vaulted-price-99-9p" | "from-10y-sell-side-risk-ratio" | "shark-cumulative-realized-profit" | "from-1d-to-1w-20p-price-paid" | "from-1w-to-1m-realized-profit" | "p2tr-95p-price-paid" | "from-2y-utxo-count" | "price-1m-sma-99p" | "active-price-99-9p" | "up-to-10y-30p-price-paid" | "price-8y-total-return" | "sth-net-realized-profit-and-loss" | "from-1w-to-1m-supply-in-profit-to-own-supply-ratio" | "from-5y-to-7y-negative-unrealized-loss" | "year-2015-45p-price-paid" | "from-1w-to-1m-supply-in-loss-to-circulating-supply-ratio" | "year-2021-realized-cap" | "plankton-40p-price-paid" | "year-2019-supply" | "up-to-10y-80p-price-paid" | "megalodon-05p-price-paid" | "up-to-1m-05p-price-paid" | "up-to-6m-value-destroyed" | "up-to-15y-halved-supply" | "crab-85p-price-paid" | "highly-liquid-unrealized-loss" | "p2wpkh-adjusted-spent-output-profit-ratio" | "year-2012-realized-cap" | "from-1d-to-1w-negative-realized-loss" | "from-1y-70p-price-paid" | "p2pk-value-destroyed" | "price-2y-sma-99-9p" | "shark-15p-price-paid" | "up-to-2m-15p-price-paid" | "from-1d-to-1w-halved-supply-to-circulating-supply-ratio" | "market-price-to-year-2018-realized-price-ratio" | "year-2020-supply" | "from-3m-to-6m-10p-price-paid" | "up-to-4m-supply" | "up-to-7y-supply" | "liquid-halved-supply-to-circulating-supply-ratio" | "market-price-to-from-1w-to-1m-realized-price-ratio-1y-sma-momentum-oscillator" | "sth-adjusted-value-destroyed" | "year-2009-60p-price-paid" | "year-2013-unrealized-profit" | "liquid-supply-in-profit" | "last-coinbase" | "year-2014-70p-price-paid" | "from-10y-to-15y-utxo-count" | "lth-halved-supply-to-circulating-supply-ratio" | "up-to-7y-adjusted-spent-output-profit-ratio" | "whale-supply-in-profit-to-own-supply-ratio" | "from-10y-to-15y-realized-value" | "year-2010-cumulative-net-realized-profit-and-loss-1m-net-change" | "concurrent-liveliness-2w-median" | "shrimp-55p-price-paid" | "fees-in-dollars-1y-sum" | "up-to-4m-supply-in-profit" | "year-2011-20p-price-paid" | "80p-price-paid" | "up-to-2m-realized-price" | "year-2023-95p-price-paid" | "market-price-to-from-5y-to-7y-realized-price-ratio-99-5p" | "up-to-2y-input-volume" | "liquid-realized-price-99p" | "up-to-10y-75p-price-paid" | "from-1y-supply-in-loss-to-own-supply-ratio" | "from-1m-to-3m-supply-to-circulating-supply-ratio" | "shark-95p-price-paid" | "year-2013-55p-price-paid" | "megalodon-supply-in-profit-to-circulating-supply-ratio" | "market-price-to-lth-realized-price-ratio-0-5p" | "crab-35p-price-paid" | "market-price-to-from-2y-realized-price-ratio-99p" | "market-price-to-realized-price-ratio-99-9p" | "up-to-4m-adjusted-spent-output-profit-ratio" | "market-price-to-p2wsh-realized-price-ratio-99-5p" | "price-34d-sma-99-5p" | "p2sh-spent-output-profit-ratio" | "from-1d-to-1w-realized-price-0-1p" | "market-cap" | "from-1w-to-1m-20p-price-paid" | "up-to-10y-supply-in-loss" | "year-2013-realized-value" | "year-2020-value-destroyed" | "year-2018-cumulative-net-realized-profit-and-loss" | "crab-cumulative-net-realized-profit-and-loss-1m-net-change" | "from-15y-cumulative-net-realized-profit-and-loss-1m-net-change" | "whale-value-destroyed" | "year-2019-net-unrealized-profit-and-loss" | "market-price-to-price-1m-sma-ratio-1p" | "from-4y-unrealized-profit" | "market-price-to-from-10y-to-15y-realized-price-ratio-1p" | "market-price-to-price-2y-sma-ratio-1y-sma-momentum-oscillator" | "market-price-to-whale-realized-price-ratio-0-5p" | "from-5y-to-7y-halved-supply-to-circulating-supply-ratio" | "highly-liquid-net-unrealized-profit-and-loss" | "market-price-to-from-1d-to-1w-realized-price-ratio" | "market-price-to-up-to-5m-realized-price-ratio-99p" | "market-price-to-up-to-1m-realized-price-ratio-1m-sma" | "p2pkh-realized-price-99p" | "p2wsh-90p-price-paid" | "p2pkh-supply-to-circulating-supply-ratio" | "up-to-4m-40p-price-paid" | "up-to-6m-realized-cap-1m-net-change" | "year-2015-net-realized-profit-and-loss-to-market-cap-ratio" | "year-2017-cumulative-net-realized-profit-and-loss-1m-net-change" | "up-to-1m-realized-price-0-5p" | "up-to-10y-realized-profit" | "from-1y-45p-price-paid" | "from-2y-to-3y-55p-price-paid" | "year-2022-supply" | "whale-realized-price-1p" | "p2wsh-realized-cap" | "up-to-15y-net-realized-profit-and-loss" | "p2sh-realized-price-0-1p" | "up-to-1d-60p-price-paid" | "liquid-value-destroyed" | "year-2014-supply-in-profit" | "year-2023-realized-loss" | "lth-90p-price-paid" | "up-to-3y-supply-in-profit-to-circulating-supply-ratio" | "up-to-1d-20p-price-paid" | "year-2009-halved-supply-to-circulating-supply-ratio" | "market-price-to-from-2y-to-3y-realized-price-ratio-1w-sma" | "block-vbytes-1d-25p" | "up-to-1y-80p-price-paid" | "year-2016-adjusted-value-created" | "up-to-3y-realized-cap-1m-net-change" | "from-6m-to-1y-supply-in-profit-to-own-supply-ratio" | "p2pk-realized-price-0-1p" | "shrimp-15p-price-paid" | "year-2014-supply-in-profit-to-circulating-supply-ratio" | "highly-liquid-05p-price-paid" | "up-to-3m-cumulative-realized-loss" | "year-2016-supply" | "year-2016-adjusted-spent-output-profit-ratio" | "up-to-15y-net-realized-profit-and-loss-to-market-cap-ratio" | "block-weight-1d-average" | "market-price-to-sth-realized-price-ratio-0-1p" | "p2tr-median-price-paid" | "p2sh-halved-supply" | "market-price-to-plankton-realized-price-ratio-1y-sma" | "crab-90p-price-paid" | "up-to-1m-realized-price-0-1p" | "up-to-2m-cumulative-realized-loss" | "60p-price-paid" | "year-2015-input-volume" | "up-to-1d-utxo-count" | "year-2021-realized-value" | "from-2y-25p-price-paid" | "year-2015-90p-price-paid" | "market-price-to-from-1w-to-1m-realized-price-ratio-1y-sma" | "up-to-1y-supply-to-circulating-supply-ratio" | "market-price-to-from-1m-to-3m-realized-price-ratio-1y-sma" | "humpback-90p-price-paid" | "from-15y-cumulative-realized-profit" | "up-to-10y-negative-unrealized-loss" | "year-2019-05p-price-paid" | "from-1w-to-1m-realized-price-0-5p" | "market-price-to-cointime-price-ratio-99p" | "up-to-1w-75p-price-paid" | "liveliness-net-change" | "up-to-7y-unrealized-loss" | "year-2020-10p-price-paid" | "from-1w-to-1m-adjusted-spent-output-profit-ratio" | "market-price-to-year-2023-realized-price-ratio-1y-sma-momentum-oscillator" | "price-13d-sma-99-9p" | "year-2024-realized-price-1p" | "market-price-to-price-8d-sma-ratio-1w-sma" | "up-to-1w-60p-price-paid" | "from-2y-45p-price-paid" | "from-2y-to-3y-net-unrealized-profit-and-loss" | "sth-70p-price-paid" | "up-to-3y-realized-price-0-5p" | "up-to-5y-85p-price-paid" | "year-2012-halved-supply" | "year-2017-95p-price-paid" | "sth-75p-price-paid" | "p2wsh-20p-price-paid" | "from-10y-realized-price-99-9p" | "p2pkh-net-realized-profit-and-loss-to-market-cap-ratio" | "year-2011-negative-realized-loss" | "year-2023-realized-price-99-9p" | "from-1y-to-2y-60p-price-paid" | "up-to-1d-unrealized-loss" | "year-2021-utxo-count" | "from-1d-to-1w-80p-price-paid" | "up-to-1w-realized-price-1p" | "up-to-5y-supply" | "year-2019-median-price-paid" | "market-price-to-up-to-2m-realized-price-ratio-1y-sma" | "market-price-to-up-to-1w-realized-price-ratio-0-5p" | "market-price-to-year-2022-realized-price-ratio-1p" | "p2tr-utxo-count" | "plankton-10p-price-paid" | "plankton-net-unrealized-profit-and-loss" | "market-price-to-price-34d-sma-ratio-99-9p" | "from-15y-realized-cap-1m-net-change" | "up-to-1w-realized-price-99-9p" | "from-1y-to-2y-net-unrealized-profit-and-loss-to-market-cap-ratio" | "lth-median-price-paid" | "up-to-1m-55p-price-paid" | "up-to-6m-55p-price-paid" | "from-1d-to-1w-supply-in-profit-to-own-supply-ratio" | "up-to-1m-realized-price-99-5p" | "plankton-05p-price-paid" | "annualized-transaction-volume" | "plankton-adjusted-value-created" | "crab-unrealized-loss" | "up-to-2y-net-realized-profit-and-loss-to-market-cap-ratio" | "from-2y-cumulative-net-realized-profit-and-loss-1m-net-change" | "up-to-3m-55p-price-paid" | "p2tr-net-unrealized-profit-and-loss-to-market-cap-ratio" | "p2wpkh-unrealized-profit" | "from-1y-10p-price-paid" | "from-15y-net-realized-profit-and-loss-to-market-cap-ratio" | "crab-median-price-paid" | "up-to-7y-70p-price-paid" | "up-to-1m-utxo-count" | "year-2014-80p-price-paid" | "from-7y-to-10y-supply-to-circulating-supply-ratio" | "up-to-10y-realized-price-99-9p" | "supply-in-profit-to-circulating-supply-ratio" | "market-price-to-price-1y-sma-ratio-0-5p" | "from-1w-to-1m-05p-price-paid" | "up-to-5m-halved-supply" | "p2pk-realized-price-1p" | "from-4y-cumulative-net-realized-profit-and-loss-1m-net-change" | "from-10y-15p-price-paid" | "p2pkh-55p-price-paid" | "up-to-1m-median-price-paid" | "market-price-to-plankton-realized-price-ratio" | "lth-supply-in-loss" | "market-price-to-from-10y-realized-price-ratio-1p" | "realized-value" | "from-3y-to-5y-utxo-count" | "megalodon-65p-price-paid" | "shark-realized-cap-1m-net-change" | "up-to-7y-cumulative-net-realized-profit-and-loss-1m-net-change" | "year-2017-realized-price-99-9p" | "year-2024-supply-in-loss-to-own-supply-ratio" | "market-price-to-true-market-mean-ratio-1p" | "year-2010-realized-price-99-5p" | "hash-price" | "megalodon-cumulative-net-realized-profit-and-loss" | "up-to-1d-realized-price-99-9p" | "lth-45p-price-paid" | "market-price-to-from-1m-to-3m-realized-price-ratio-99p" | "price-6m-total-return" | "year-2013-20p-price-paid" | "from-7y-to-10y-realized-price-99p" | "from-3y-to-5y-cumulative-realized-loss" | "year-2019-80p-price-paid" | "up-to-1y-realized-profit" | "from-5y-to-7y-supply-in-loss-to-own-supply-ratio" | "market-price-to-price-144d-sma-ratio-99p" | "up-to-7y-realized-loss" | "from-1m-to-3m-net-unrealized-profit-and-loss" | "price-2y-sma-1p" | "year-2015-negative-realized-loss" | "market-price-to-year-2021-realized-price-ratio-1w-sma" | "megalodon-realized-price-99p" | "p2wsh-75p-price-paid" | "highly-liquid-realized-profit" | "market-price-to-realized-price-ratio-0-1p" | "highly-liquid-supply" | "p2pk-supply-in-profit-to-own-supply-ratio" | "up-to-1d-net-realized-profit-and-loss" | "p2tr-45p-price-paid" | "up-to-3m-input-volume" | "up-to-1w-85p-price-paid" | "shark-cumulative-net-realized-profit-and-loss" | "up-to-5m-supply-in-loss" | "shark-70p-price-paid" | "market-price-to-from-3m-to-6m-realized-price-ratio-0-1p" | "year-2010-70p-price-paid" | "illiquid-cumulative-net-realized-profit-and-loss-1m-net-change" | "market-price-to-fish-realized-price-ratio-99p" | "plankton-realized-price-1p" | "liquid-sell-side-risk-ratio" | "up-to-5m-75p-price-paid" | "up-to-6m-negative-unrealized-loss" | "fish-unrealized-profit" | "up-to-6m-realized-price-0-5p" | "market-price-to-year-2015-realized-price-ratio-99p" | "price-144d-sma-99p" | "from-7y-to-10y-realized-price" | "market-price-to-up-to-10y-realized-price-ratio-1m-sma" | "price-34d-sma-1p" | "market-price-to-from-5y-to-7y-realized-price-ratio-1p" | "crab-halved-supply" | "market-price-to-from-4y-realized-price-ratio-0-1p" | "p2pk-adjusted-value-destroyed" | "up-to-1d-supply-in-profit" | "year-2017-35p-price-paid" | "year-2021-40p-price-paid" | "shrimp-20p-price-paid" | "up-to-7y-supply-in-loss-to-own-supply-ratio" | "up-to-2y-realized-price" | "liquid-adjusted-value-destroyed" | "humpback-65p-price-paid" | "market-price-to-price-2y-sma-ratio-1p" | "up-to-6m-adjusted-spent-output-profit-ratio" | "shrimp-halved-supply" | "year-2023-negative-unrealized-loss" | "up-to-5y-realized-profit" | "vaulted-supply" | "fish-adjusted-value-created" | "megalodon-net-unrealized-profit-and-loss" | "p2pkh-85p-price-paid" | "up-to-4m-unrealized-profit" | "market-price-to-up-to-1m-realized-price-ratio-1y-sma" | "up-to-4m-utxo-count" | "up-to-1y-realized-price-99p" | "market-price-to-whale-realized-price-ratio-1p" | "from-1w-to-1m-30p-price-paid" | "megalodon-realized-price-1p" | "up-to-1d-cumulative-realized-loss" | "transaction-volume-1w-sma" | "block-size-1d-median" | "market-price-to-cointime-price-ratio-99-9p" | "market-price-to-price-13d-sma-ratio-1p" | "up-to-10y-60p-price-paid" | "year-2015-75p-price-paid" | "market-price-to-active-price-ratio-1y-sma-momentum-oscillator" | "lth-supply-in-loss-to-own-supply-ratio" | "up-to-2m-supply-in-loss-to-own-supply-ratio" | "up-to-3y-value-destroyed" | "market-price-to-up-to-1y-realized-price-ratio-99-9p" | "year-2020-adjusted-spent-output-profit-ratio" | "year-2024-net-realized-profit-and-loss" | "from-10y-unrealized-profit" | "coinbase" | "crab-supply" | "market-price-to-year-2024-realized-price-ratio-99-5p" | "from-2y-to-3y-supply-in-loss" | "p2sh-cumulative-realized-profit" | "shrimp-value-created" | "up-to-1y-input-volume" | "up-to-4m-10p-price-paid" | "p2wpkh-cumulative-net-realized-profit-and-loss-1m-net-change" | "up-to-4m-net-unrealized-profit-and-loss" | "humpback-realized-price" | "year-2017-realized-loss" | "year-2019-halved-supply-to-circulating-supply-ratio" | "up-to-3y-55p-price-paid" | "year-2022-80p-price-paid" | "year-2024-10p-price-paid" | "year-2024-35p-price-paid" | "from-7y-to-10y-35p-price-paid" | "market-price-to-lth-realized-price-ratio-0-1p" | "from-1y-to-2y-negative-unrealized-loss" | "year-2023-adjusted-spent-output-profit-ratio" | "shark-net-realized-profit-and-loss" | "p2pk-90p-price-paid" | "year-2015-realized-cap" | "market-price-to-up-to-5y-realized-price-ratio-99-9p" | "up-to-1d-30p-price-paid" | "illiquid-halved-supply-to-circulating-supply-ratio" | "up-to-2y-cumulative-net-realized-profit-and-loss-1m-net-change" | "year-2014-unrealized-loss" | "year-2012-10p-price-paid" | "year-2020-supply-in-profit-to-own-supply-ratio" | "year-2022-net-realized-profit-and-loss" | "year-2015-realized-price-99-9p" | "year-2017-supply-in-loss-to-own-supply-ratio" | "from-3m-to-6m-net-realized-profit-and-loss" | "whale-halved-supply" | "year-2010-cumulative-realized-profit" | "market-price-to-up-to-1d-realized-price-ratio-1m-sma" | "year-2024-adjusted-value-created" | "year-2023-85p-price-paid" | "up-to-3y-realized-price-99-5p" | "year-2019-cumulative-net-realized-profit-and-loss-1m-net-change" | "year-2023-15p-price-paid" | "humpback-10p-price-paid" | "market-price-to-true-market-mean-ratio-99-9p" | "year-2010-value-created" | "block-weight-1d-25p" | "up-to-4m-realized-loss" | "year-2019-negative-unrealized-loss" | "up-to-3m-25p-price-paid" | "highly-liquid-40p-price-paid" | "up-to-1m-value-created" | "year-2024-20p-price-paid" | "year-2010-net-unrealized-profit-and-loss" | "p2pkh-75p-price-paid" | "fish-adjusted-value-destroyed" | "up-to-5m-negative-unrealized-loss" | "from-10y-to-15y-net-unrealized-profit-and-loss" | "up-to-2m-adjusted-value-created" | "up-to-2y-25p-price-paid" | "p2sh-unrealized-profit" | "fish-adjusted-spent-output-profit-ratio" | "up-to-5m-realized-price-1p" | "year-2017-adjusted-spent-output-profit-ratio" | "year-2019-realized-price-0-1p" | "year-2020-supply-in-loss" | "up-to-2m-65p-price-paid" | "up-to-4m-05p-price-paid" | "year-2022-unrealized-loss" | "year-2024-realized-value" | "up-to-3m-input-count" | "up-to-1m-adjusted-value-created" | "p2tr-net-realized-profit-and-loss-to-market-cap-ratio" | "sth-value-destroyed" | "from-10y-to-15y-45p-price-paid" | "from-2y-70p-price-paid" | "price-1m-sma-0-5p" | "year-2021-net-realized-profit-and-loss-to-market-cap-ratio" | "year-2016-sell-side-risk-ratio" | "from-6m-to-1y-realized-profit" | "shrimp-60p-price-paid" | "year-2022-realized-price-99-9p" | "illiquid-realized-price-0-5p" | "year-2022-35p-price-paid" | "from-1y-cumulative-net-realized-profit-and-loss" | "from-1y-cumulative-net-realized-profit-and-loss-1m-net-change" | "net-realized-profit-and-loss" | "cointime-price-0-5p" | "up-to-10y-net-realized-profit-and-loss-to-market-cap-ratio" | "market-price-to-from-1m-to-3m-realized-price-ratio-1y-sma-momentum-oscillator" | "from-1d-to-1w-value-destroyed" | "from-5y-to-7y-realized-value" | "from-6m-to-1y-70p-price-paid" | "up-to-15y-realized-cap" | "realized-price-1p" | "year-2020-55p-price-paid" | "year-2011-supply-in-profit" | "illiquid-cumulative-net-realized-profit-and-loss" | "price-1y-sma-99-5p" | "year-2021-realized-profit" | "from-15y-90p-price-paid" | "market-price-to-from-3y-to-5y-realized-price-ratio-0-1p" | "up-to-1y-net-realized-profit-and-loss" | "market-price-to-vaulted-price-ratio-99-5p" | "market-price-to-up-to-3y-realized-price-ratio-99-5p" | "year-2011-adjusted-value-destroyed" | "year-2021-realized-price-1p" | "from-10y-to-15y-supply-in-loss-to-own-supply-ratio" | "from-2y-30p-price-paid" | "up-to-1m-cumulative-net-realized-profit-and-loss" | "from-3y-to-5y-halved-supply" | "market-price-to-year-2010-realized-price-ratio-1y-sma" | "price-2y-sma-0-1p" | "p2wsh-net-unrealized-profit-and-loss" | "subsidy-to-coinbase-ratio" | "up-to-6m-supply-in-profit" | "realized-price-0-1p" | "market-price-to-crab-realized-price-ratio-1y-sma" | "from-10y-95p-price-paid" | "year-2020-15p-price-paid" | "from-10y-to-15y-net-realized-profit-and-loss" | "up-to-1y-input-count" | "lth-realized-loss" | "up-to-7y-realized-price-99p" | "up-to-1m-net-unrealized-profit-and-loss" | "from-1w-to-1m-realized-price-99-9p" | "market-price-to-year-2013-realized-price-ratio-1m-sma" | "year-2009-realized-value" | "from-1d-to-1w-supply-in-loss-to-circulating-supply-ratio" | "from-4y-70p-price-paid" | "from-7y-to-10y-85p-price-paid" | "market-price-to-illiquid-realized-price-ratio-0-1p" | "market-price-to-year-2016-realized-price-ratio" | "true-market-net-unrealized-profit-and-loss" | "p2sh-address-count" | "shark-realized-price-99-9p" | "up-to-2y-cumulative-realized-profit" | "year-2020-adjusted-value-created" | "price-200w-sma-0-1p" | "up-to-1w-utxo-count" | "year-2018-adjusted-value-destroyed" | "year-2018-realized-price-99p" | "from-1w-to-1m-realized-price-0-1p" | "from-15y-30p-price-paid" | "market-price-to-year-2022-realized-price-ratio-1m-sma" | "from-6m-to-1y-unrealized-profit" | "market-price-to-year-2012-realized-price-ratio-1p" | "up-to-5y-realized-price-0-1p" | "crab-realized-price-0-1p" | "from-10y-negative-realized-loss" | "from-4y-sell-side-risk-ratio" | "market-price-to-up-to-1y-realized-price-ratio-1p" | "from-1y-value-destroyed" | "from-7y-to-10y-net-realized-profit-and-loss-to-market-cap-ratio" | "up-to-3m-cumulative-realized-profit" | "up-to-10y-20p-price-paid" | "up-to-5y-input-count" | "year-2018-90p-price-paid" | "market-price-to-from-2y-to-3y-realized-price-ratio-99p" | "market-price-to-from-6m-to-1y-realized-price-ratio-0-5p" | "year-2024-value-destroyed" | "from-7y-to-10y-supply-in-loss-to-own-supply-ratio" | "p2tr-sell-side-risk-ratio" | "year-2014-net-unrealized-profit-and-loss-to-market-cap-ratio" | "market-price-to-price-2y-sma-ratio-0-5p" | "from-15y-realized-price" | "year-2011-90p-price-paid" | "from-4y-55p-price-paid" | "year-2015-unrealized-profit" | "sth-supply-in-profit-to-circulating-supply-ratio" | "up-to-2y-net-unrealized-profit-and-loss-to-market-cap-ratio" | "from-1y-supply-in-loss" | "humpback-20p-price-paid" | "liquid-supply" | "year-2014-realized-price-1p" | "up-to-2y-adjusted-value-created" | "from-3m-to-6m-55p-price-paid" | "market-price-to-p2wsh-realized-price-ratio-0-5p" | "p2wpkh-realized-profit" | "market-price-to-p2sh-realized-price-ratio-1y-sma" | "from-1d-to-1w-60p-price-paid" | "highly-liquid-95p-price-paid" | "shark-sell-side-risk-ratio" | "p2sh-40p-price-paid" | "sth-25p-price-paid" | "up-to-5m-realized-price-0-5p" | "shark-net-unrealized-profit-and-loss" | "year-2013-95p-price-paid" | "year-2015-net-unrealized-profit-and-loss-to-market-cap-ratio" | "year-2009-realized-cap-1m-net-change" | "from-1w-to-1m-net-unrealized-profit-and-loss" | "illiquid-55p-price-paid" | "spent-output-profit-ratio" | "crab-realized-price-99-5p" | "up-to-15y-60p-price-paid" | "from-10y-75p-price-paid" | "from-1w-to-1m-70p-price-paid" | "up-to-4m-halved-supply" | "up-to-7y-realized-price-0-1p" | "p2pk-net-unrealized-profit-and-loss-to-market-cap-ratio" | "up-to-3y-adjusted-spent-output-profit-ratio" | "year-2023-65p-price-paid" | "highly-liquid-85p-price-paid" | "up-to-1m-cumulative-realized-loss" | "year-2023-30p-price-paid" | "shark-realized-value" | "from-3m-to-6m-input-volume" | "from-10y-to-15y-realized-price-0-5p" | "market-price-to-up-to-5m-realized-price-ratio-1y-sma" | "price-89d-sma-1p" | "year-2018-supply" | "year-2017-net-unrealized-profit-and-loss" | "p2wsh-cumulative-realized-profit" | "year-2022-halved-supply" | "from-7y-to-10y-median-price-paid" | "block-weight-1d-median" | "year-2012-adjusted-value-destroyed" | "p2tr-realized-price-0-5p" | "whale-address-count" | "from-4y-spent-output-profit-ratio" | "year-2017-05p-price-paid" | "sth-supply" | "from-3m-to-6m-halved-supply" | "from-6m-to-1y-45p-price-paid" | "market-price-to-up-to-7y-realized-price-ratio-99-5p" | "highly-liquid-net-realized-profit-and-loss" | "market-price-to-up-to-1w-realized-price-ratio-1y-sma-momentum-oscillator" | "up-to-1m-cumulative-net-realized-profit-and-loss-1m-net-change" | "up-to-15y-45p-price-paid" | "year-2011-15p-price-paid" | "from-1w-to-1m-80p-price-paid" | "market-price-to-fish-realized-price-ratio-99-9p" | "fish-cumulative-net-realized-profit-and-loss-1m-net-change" | "up-to-1w-halved-supply-to-circulating-supply-ratio" | "up-to-4m-value-created" | "p2sh-input-volume" | "market-price-to-year-2022-realized-price-ratio-99p" | "p2wpkh-25p-price-paid" | "from-10y-to-15y-95p-price-paid" | "market-price-to-up-to-6m-realized-price-ratio-99p" | "year-2017-realized-price-1p" | "market-price-to-from-2y-realized-price-ratio" | "market-price-to-up-to-4m-realized-price-ratio-1m-sma" | "up-to-10y-95p-price-paid" | "from-2y-40p-price-paid" | "p2tr-realized-profit" | "market-price-to-price-4y-sma-ratio-1y-sma" | "from-15y-realized-loss" | "up-to-15y-supply" | "up-to-1y-70p-price-paid" | "year-2024-adjusted-spent-output-profit-ratio" | "up-to-5m-supply-in-profit" | "market-price-to-shrimp-realized-price-ratio-99p" | "up-to-1d-sell-side-risk-ratio" | "market-price-to-shrimp-realized-price-ratio-1y-sma" | "from-1d-to-1w-net-realized-profit-and-loss" | "up-to-6m-sell-side-risk-ratio" | "year-2010-80p-price-paid" | "p2tr-net-realized-profit-and-loss" | "year-2010-90p-price-paid" | "from-3m-to-6m-adjusted-value-destroyed" | "up-to-10y-70p-price-paid" | "up-to-15y-85p-price-paid" | "market-price-to-lth-realized-price-ratio-99-5p" | "market-price-to-price-13d-sma-ratio-1y-sma" | "shark-35p-price-paid" | "vaultedness" | "from-7y-to-10y-halved-supply-to-circulating-supply-ratio" | "price-21d-sma-99p" | "year-2017-25p-price-paid" | "market-price-to-up-to-3y-realized-price-ratio-0-1p" | "market-price-to-crab-realized-price-ratio-1m-sma" | "year-2018-realized-cap" | "year-2022-75p-price-paid" | "from-1m-to-3m-net-unrealized-profit-and-loss-to-market-cap-ratio" | "humpback-supply-in-loss-to-circulating-supply-ratio" | "year-2022-spent-output-profit-ratio" | "up-to-7y-90p-price-paid" | "market-price-to-from-5y-to-7y-realized-price-ratio-99-9p" | "market-price-to-price-144d-sma-ratio-99-5p" | "from-1y-to-2y-supply-to-circulating-supply-ratio" | "from-10y-to-15y-unrealized-loss" | "highly-liquid-30p-price-paid" | "market-price-to-price-200w-sma-ratio" | "market-price-to-price-55d-sma-ratio-1y-sma-momentum-oscillator" | "market-price-to-shrimp-realized-price-ratio-99-5p" | "active-price-99p" | "market-price-to-up-to-1d-realized-price-ratio-99p" | "up-to-2y-80p-price-paid" | "up-to-3m-adjusted-value-destroyed" | "up-to-3y-30p-price-paid" | "shark-20p-price-paid" | "from-3m-to-6m-cumulative-realized-loss" | "market-price-to-up-to-6m-realized-price-ratio-1m-sma" | "year-2023-input-volume" | "from-15y-25p-price-paid" | "year-2023-realized-cap-1m-net-change" | "fish-85p-price-paid" | "from-1d-to-1w-realized-loss" | "investor-cap" | "market-price-to-from-3m-to-6m-realized-price-ratio" | "up-to-1m-sell-side-risk-ratio" | "year-2012-realized-price-0-5p" | "year-2015-65p-price-paid" | "market-price-to-year-2016-realized-price-ratio-99-9p" | "up-to-15y-realized-price-0-5p" | "year-2023-negative-realized-loss" | "shrimp-realized-value" | "from-1m-to-3m-adjusted-value-created" | "up-to-5y-adjusted-value-created" | "from-7y-to-10y-20p-price-paid" | "shrimp-negative-realized-loss" | "up-to-1w-realized-price-0-1p" | "market-price-to-year-2020-realized-price-ratio-1y-sma" | "year-2009-realized-price" | "block-weight-1d-90p" | "market-price-to-cointime-price-ratio-1y-sma" | "up-to-15y-net-unrealized-profit-and-loss" | "vaulted-supply-3m-net-change" | "illiquid-realized-loss" | "market-price-to-from-1w-to-1m-realized-price-ratio" | "market-price-to-plankton-realized-price-ratio-0-5p" | "p2pk-realized-price-99-9p" | "market-price-to-price-144d-sma-ratio-0-1p" | "year-2021-supply-in-profit-to-circulating-supply-ratio" | "market-price-to-price-1w-sma-ratio-1m-sma" | "from-15y-realized-cap" | "year-2022-supply-in-profit-to-circulating-supply-ratio" | "from-7y-to-10y-negative-unrealized-loss" | "market-price-to-up-to-15y-realized-price-ratio" | "p2sh-realized-profit" | "from-3y-to-5y-supply-in-loss" | "humpback-cumulative-net-realized-profit-and-loss-1m-net-change" | "shrimp-95p-price-paid" | "up-to-1d-70p-price-paid" | "illiquid-sell-side-risk-ratio" | "shark-supply" | "p2sh-55p-price-paid" | "from-5y-to-7y-halved-supply" | "from-6m-to-1y-input-volume" | "up-to-10y-net-unrealized-profit-and-loss" | "from-1y-to-2y-35p-price-paid" | "year-2018-05p-price-paid" | "market-price-to-up-to-2m-realized-price-ratio-1m-sma" | "shrimp-sell-side-risk-ratio" | "fish-utxo-count" | "fish-supply-in-loss-to-circulating-supply-ratio" | "market-price-to-from-6m-to-1y-realized-price-ratio" | "up-to-7y-60p-price-paid" | "megalodon-supply" | "p2tr-realized-price-99-5p" | "market-price-to-up-to-5y-realized-price-ratio-1m-sma" | "from-2y-realized-loss" | "p2pkh-cumulative-net-realized-profit-and-loss-1m-net-change" | "up-to-5m-value-destroyed" | "liquid-65p-price-paid" | "from-1d-to-1w-30p-price-paid" | "from-7y-to-10y-realized-value" | "market-price-to-highly-liquid-realized-price-ratio-1w-sma" | "humpback-realized-price-0-5p" | "market-price-to-year-2010-realized-price-ratio-99-5p" | "lth-realized-price-99-5p" | "market-price-to-from-1y-realized-price-ratio-0-5p" | "up-to-1m-95p-price-paid" | "up-to-6m-unrealized-loss" | "year-2022-utxo-count" | "market-price-to-from-10y-realized-price-ratio-1m-sma" | "from-1m-to-3m-65p-price-paid" | "p2tr-realized-cap-1m-net-change" | "year-2018-realized-price-0-1p" | "market-price-to-shrimp-realized-price-ratio-99-9p" | "from-1d-to-1w-cumulative-realized-loss" | "year-2022-65p-price-paid" | "sth-95p-price-paid" | "year-2009-45p-price-paid" | "market-price-to-p2pk-realized-price-ratio" | "sth-negative-realized-loss" | "up-to-1w-10p-price-paid" | "up-to-4m-90p-price-paid" | "year-2022-input-count" | "up-to-1y-cumulative-net-realized-profit-and-loss" | "year-2015-40p-price-paid" | "cumulative-subsidy-in-dollars" | "fish-realized-value" | "crab-halved-supply-to-circulating-supply-ratio" | "p2wsh-cumulative-realized-loss" | "market-price-to-illiquid-realized-price-ratio" | "p2pk-realized-value" | "year-2014-cumulative-net-realized-profit-and-loss-1m-net-change" | "year-2015-realized-price-99p" | "year-2017-supply-in-loss-to-circulating-supply-ratio" | "year-2019-realized-profit" | "from-3y-to-5y-adjusted-spent-output-profit-ratio" | "up-to-3y-supply-in-loss-to-own-supply-ratio" | "from-10y-to-15y-realized-price-1p" | "market-price-to-year-2019-realized-price-ratio" | "up-to-5y-supply-in-profit-to-circulating-supply-ratio" | "from-1m-to-3m-20p-price-paid" | "from-10y-to-15y-60p-price-paid" | "humpback-cumulative-realized-loss" | "from-3m-to-6m-adjusted-value-created" | "market-price-to-from-10y-realized-price-ratio-99p" | "fish-negative-unrealized-loss" | "lth-realized-price-0-1p" | "illiquid-supply-in-loss-to-circulating-supply-ratio" | "year-2011-55p-price-paid" | "from-6m-to-1y-realized-cap" | "shark-60p-price-paid" | "up-to-10y-net-realized-profit-and-loss" | "year-2010-05p-price-paid" | "price-1m-sma-99-5p" | "highly-liquid-cumulative-realized-profit" | "illiquid-30p-price-paid" | "price-10y-total-return" | "year-2011-unrealized-loss" | "up-to-2y-30p-price-paid" | "year-2015-supply-in-profit-to-circulating-supply-ratio" | "market-price-to-up-to-5y-realized-price-ratio-1y-sma" | "shrimp-10p-price-paid" | "30p-price-paid" | "lth-adjusted-value-created" | "year-2012-supply-in-profit-to-own-supply-ratio" | "from-4y-90p-price-paid" | "shark-negative-unrealized-loss" | "up-to-3y-halved-supply-to-circulating-supply-ratio" | "from-7y-to-10y-10p-price-paid" | "from-15y-supply-to-circulating-supply-ratio" | "up-to-4m-realized-price-99p" | "year-2013-realized-price-0-5p" | "from-4y-adjusted-value-created" | "up-to-1d-15p-price-paid" | "year-2017-20p-price-paid" | "plankton-90p-price-paid" | "p2tr-realized-price-1p" | "up-to-1y-supply-in-loss" | "up-to-2y-65p-price-paid" | "from-1y-to-2y-realized-cap-1m-net-change" | "year-2009-65p-price-paid" | "shark-55p-price-paid" | "market-price-to-up-to-2m-realized-price-ratio-1y-sma-momentum-oscillator" | "up-to-10y-realized-price-0-1p" | "year-2011-median-price-paid" | "investorness" | "p2sh-cumulative-net-realized-profit-and-loss" | "shark-adjusted-value-destroyed" | "blocks-mined-1m-sum" | "market-price-to-from-15y-realized-price-ratio-99-9p" | "megalodon-realized-price-0-5p" | "up-to-15y-realized-cap-1m-net-change" | "year-2016-55p-price-paid" | "from-7y-to-10y-realized-price-99-9p" | "up-to-2m-negative-unrealized-loss" | "up-to-3m-realized-price" | "up-to-4m-supply-to-circulating-supply-ratio" | "liquid-cumulative-net-realized-profit-and-loss-1m-net-change" | "from-15y-halved-supply-to-circulating-supply-ratio" | "from-10y-supply-in-loss" | "up-to-4m-supply-in-loss-to-own-supply-ratio" | "up-to-15y-80p-price-paid" | "market-price-to-year-2017-realized-price-ratio-99p" | "p2tr-40p-price-paid" | "up-to-7y-median-price-paid" | "year-2020-cumulative-net-realized-profit-and-loss-1m-net-change" | "year-2022-realized-price" | "year-2010-30p-price-paid" | "up-to-5m-adjusted-value-created" | "liquid-40p-price-paid" | "up-to-3m-adjusted-spent-output-profit-ratio" | "p2sh-value-created" | "shrimp-input-count" | "10p-price-paid" | "crab-adjusted-value-created" | "p2pk-realized-price-0-5p" | "block-size-1d-75p" | "p2pk-10p-price-paid" | "year-2011-25p-price-paid" | "market-price-to-price-21d-sma-ratio-1w-sma" | "year-2011-sell-side-risk-ratio" | "market-price-to-highly-liquid-realized-price-ratio-99-9p" | "highly-liquid-value-created" | "active-supply" | "from-1y-to-2y-80p-price-paid" | "p2wsh-value-created" | "up-to-1y-unrealized-loss" | "lth-cumulative-realized-profit" | "year-2018-40p-price-paid" | "illiquid-85p-price-paid" | "year-2019-10p-price-paid" | "lth-25p-price-paid" | "plankton-supply-in-profit-to-own-supply-ratio" | "market-price-to-p2pk-realized-price-ratio-1m-sma" | "megalodon-30p-price-paid" | "p2sh-adjusted-value-created" | "from-10y-negative-unrealized-loss" | "from-15y-95p-price-paid" | "from-10y-value-destroyed" | "from-1y-to-2y-25p-price-paid" | "market-price-to-up-to-2m-realized-price-ratio-99-5p" | "from-2y-supply-in-profit" | "year-2021-cumulative-net-realized-profit-and-loss-1m-net-change" | "from-6m-to-1y-cumulative-realized-loss" | "market-price-to-year-2019-realized-price-ratio-0-5p" | "from-3m-to-6m-45p-price-paid" | "shrimp-realized-price-99p" | "market-price-to-plankton-realized-price-ratio-0-1p" | "sth-45p-price-paid" | "from-3y-to-5y-median-price-paid" | "year-2009-negative-unrealized-loss" | "from-15y-35p-price-paid" | "from-6m-to-1y-10p-price-paid" | "price-34d-sma-99-9p" | "from-7y-to-10y-75p-price-paid" | "up-to-2y-realized-cap" | "year-2012-95p-price-paid" | "p2pkh-adjusted-value-destroyed" | "from-1w-to-1m-25p-price-paid" | "market-price-to-from-2y-to-3y-realized-price-ratio-1y-sma" | "market-price-to-year-2020-realized-price-ratio-99-5p" | "from-4y-adjusted-spent-output-profit-ratio" | "humpback-net-unrealized-profit-and-loss" | "market-price-to-year-2010-realized-price-ratio-1p" | "p2pk-realized-price-99p" | "market-price-to-illiquid-realized-price-ratio-99-5p" | "year-2022-05p-price-paid" | "up-to-5y-unrealized-loss" | "p2tr-30p-price-paid" | "plankton-15p-price-paid" | "up-to-5y-value-created" | "highly-liquid-cumulative-net-realized-profit-and-loss-1m-net-change" | "year-2011-realized-price-99-9p" | "market-price-to-from-3m-to-6m-realized-price-ratio-1y-sma-momentum-oscillator" | "humpback-75p-price-paid" | "up-to-2m-realized-cap-1m-net-change" | "market-price-to-year-2018-realized-price-ratio-1m-sma" | "year-2020-80p-price-paid" | "year-2022-net-realized-profit-and-loss-to-market-cap-ratio" | "shark-05p-price-paid" | "up-to-3y-supply-in-loss" | "up-to-2m-60p-price-paid" | "year-2014-adjusted-value-created" | "from-4y-95p-price-paid" | "sth-realized-loss" | "year-2014-90p-price-paid" | "from-10y-to-15y-10p-price-paid" | "p2tr-85p-price-paid" | "shrimp-80p-price-paid" | "year-2014-20p-price-paid" | "market-price-to-from-7y-to-10y-realized-price-ratio-0-5p" | "from-1d-to-1w-25p-price-paid" | "plankton-value-destroyed" | "shark-25p-price-paid" | "up-to-6m-cumulative-net-realized-profit-and-loss-1m-net-change" | "plankton-cumulative-realized-profit" | "price-144d-sma-99-9p" | "up-to-5y-supply-in-loss-to-circulating-supply-ratio" | "market-price-to-up-to-1d-realized-price-ratio-99-9p" | "from-7y-to-10y-utxo-count" | "market-price-to-from-1y-to-2y-realized-price-ratio-1w-sma" | "up-to-1d-spent-output-profit-ratio" | "up-to-1m-45p-price-paid" | "year-2024-supply-in-loss-to-circulating-supply-ratio" | "up-to-7y-20p-price-paid" | "price-200w-sma-1p" | "market-price-to-p2pk-realized-price-ratio-99-5p" | "from-2y-to-3y-realized-price-99p" | "market-price-to-shark-realized-price-ratio-1y-sma" | "highly-liquid-10p-price-paid" | "up-to-6m-75p-price-paid" | "price-1y-sma-99p" | "p2wpkh-net-realized-profit-and-loss" | "up-to-7y-realized-profit" | "from-1y-realized-price-99-5p" | "market-price-to-crab-realized-price-ratio-0-1p" | "market-price-to-up-to-1w-realized-price-ratio-99-9p" | "year-2018-10p-price-paid" | "year-2024-70p-price-paid" | "year-2011-realized-price-0-1p" | "market-price-to-up-to-5m-realized-price-ratio-1m-sma" | "supply-to-circulating-supply-ratio" | "year-2022-net-unrealized-profit-and-loss-to-market-cap-ratio" | "from-1w-to-1m-10p-price-paid" | "up-to-3m-10p-price-paid" | "up-to-3m-60p-price-paid" | "from-10y-05p-price-paid" | "from-5y-to-7y-cumulative-realized-profit" | "from-1y-adjusted-value-destroyed" | "market-price-to-price-21d-sma-ratio-99p" | "p2wpkh-supply-in-loss" | "year-2023-supply-in-profit-to-own-supply-ratio" | "from-10y-to-15y-80p-price-paid" | "from-3m-to-6m-value-created" | "megalodon-realized-price" | "illiquid-cumulative-realized-loss" | "from-1y-to-2y-cumulative-realized-loss" | "market-price-to-from-2y-to-3y-realized-price-ratio" | "block-vbytes-1d-average" | "p2pkh-20p-price-paid" | "plankton-20p-price-paid" | "block-interval-1d-90p" | "market-price-to-year-2011-realized-price-ratio-1w-sma" | "annualized-issuance" | "market-price-to-price-55d-sma-ratio-99-9p" | "from-3y-to-5y-realized-price-1p" | "market-price-to-illiquid-realized-price-ratio-99-9p" | "from-5y-to-7y-cumulative-net-realized-profit-and-loss" | "market-price-to-liquid-realized-price-ratio-0-1p" | "market-price-to-up-to-2y-realized-price-ratio-1w-sma" | "from-4y-halved-supply-to-circulating-supply-ratio" | "from-1d-to-1w-realized-price" | "sell-side-risk-ratio" | "year-2017-75p-price-paid" | "year-2023-80p-price-paid" | "from-10y-to-15y-40p-price-paid" | "from-10y-to-15y-55p-price-paid" | "from-1w-to-1m-realized-cap" | "up-to-1m-supply-in-profit-to-circulating-supply-ratio" | "from-1y-to-2y-realized-value" | "year-2010-realized-price-0-1p" | "up-to-5m-10p-price-paid" | "market-price-to-plankton-realized-price-ratio-99p" | "year-2016-supply-to-circulating-supply-ratio" | "from-15y-realized-price-0-1p" | "up-to-1d-adjusted-value-destroyed" | "market-price-to-year-2010-realized-price-ratio-1y-sma-momentum-oscillator" | "year-2017-adjusted-value-destroyed" | "sth-20p-price-paid" | "from-4y-supply-in-loss" | "from-1y-adjusted-spent-output-profit-ratio" | "up-to-10y-65p-price-paid" | "year-2023-realized-price-99-5p" | "market-price-to-up-to-5m-realized-price-ratio-1p" | "price-1w-sma" | "year-2020-realized-profit" | "year-2024-negative-realized-loss" | "market-price-to-price-8d-sma-ratio-1m-sma" | "p2tr-supply-in-profit-to-circulating-supply-ratio" | "up-to-2m-supply-in-profit-to-circulating-supply-ratio" | "year-2016-cumulative-net-realized-profit-and-loss" | "from-1y-to-2y-realized-price" | "from-1d-to-1w-supply-to-circulating-supply-ratio" | "from-5y-to-7y-negative-realized-loss" | "market-price-to-price-8d-sma-ratio-1y-sma" | "from-1m-to-3m-sell-side-risk-ratio" | "up-to-6m-45p-price-paid" | "year-2011-cumulative-realized-profit" | "market-price-to-from-7y-to-10y-realized-price-ratio-0-1p" | "market-price-to-megalodon-realized-price-ratio-0-5p" | "year-2015-value-destroyed" | "from-10y-to-15y-65p-price-paid" | "p2sh-value-destroyed" | "up-to-1y-55p-price-paid" | "market-price-to-cointime-price-ratio-99-5p" | "p2wpkh-adjusted-value-created" | "year-2017-40p-price-paid" | "lth-75p-price-paid" | "market-price-to-price-200w-sma-ratio-99-5p" | "up-to-2m-realized-price-0-1p" | "up-to-5y-halved-supply-to-circulating-supply-ratio" | "market-price-to-highly-liquid-realized-price-ratio-0-5p" | "up-to-10y-value-created" | "year-2018-55p-price-paid" | "block-interval-1d-25p" | "year-2010-halved-supply" | "year-2015-05p-price-paid" | "year-2016-input-count" | "market-price-to-price-1y-sma-ratio" | "megalodon-spent-output-profit-ratio" | "p2wsh-net-realized-profit-and-loss" | "year-2021-realized-cap-1m-net-change" | "up-to-10y-cumulative-realized-profit" | "market-price-to-p2sh-realized-price-ratio-1y-sma-momentum-oscillator" | "market-price-to-p2wpkh-realized-price-ratio-0-5p" | "market-price-to-price-1w-sma-ratio-1p" | "up-to-10y-adjusted-value-created" | "market-price-to-from-1y-to-2y-realized-price-ratio-99-9p" | "megalodon-40p-price-paid" | "up-to-15y-spent-output-profit-ratio" | "up-to-2y-realized-price-0-1p" | "cointime-value-destroyed" | "from-1y-net-realized-profit-and-loss" | "up-to-10y-90p-price-paid" | "from-2y-65p-price-paid" | "whale-supply" | "up-to-3y-halved-supply" | "from-4y-supply-in-profit-to-circulating-supply-ratio" | "from-1m-to-3m-55p-price-paid" | "from-1d-to-1w-85p-price-paid" | "market-price-to-price-89d-sma-ratio-1w-sma" | "year-2015-30p-price-paid" | "from-2y-input-count" | "cumulative-fees" | "p2sh-cumulative-realized-loss" | "humpback-unrealized-profit" | "p2tr-75p-price-paid" | "p2wpkh-unrealized-loss" | "year-2020-input-count" | "plankton-supply-in-loss-to-own-supply-ratio" | "market-price-to-from-6m-to-1y-realized-price-ratio-0-1p" | "from-4y-supply-in-profit-to-own-supply-ratio" | "fish-supply-in-profit" | "market-price-to-up-to-3m-realized-price-ratio-1p" | "year-2014-40p-price-paid" | "from-1y-realized-value" | "megalodon-net-realized-profit-and-loss" | "market-price-to-p2pk-realized-price-ratio-99p" | "p2pkh-supply-in-profit-to-own-supply-ratio" | "up-to-1d-adjusted-value-created" | "year-2010-negative-realized-loss" | "year-2013-utxo-count" | "up-to-2y-adjusted-value-destroyed" | "market-price-to-price-34d-sma-ratio-1w-sma" | "market-price-to-year-2019-realized-price-ratio-1p" | "market-price-to-year-2019-realized-price-ratio-1y-sma-momentum-oscillator" | "price-200w-sma-99-9p" | "up-to-5m-realized-loss" | "year-2010-adjusted-spent-output-profit-ratio" | "whale-15p-price-paid" | "from-1d-to-1w-70p-price-paid" | "p2sh-15p-price-paid" | "year-2016-60p-price-paid" | "up-to-6m-realized-value" | "year-2019-realized-price-99-5p" | "megalodon-address-count" | "up-to-10y-net-unrealized-profit-and-loss-to-market-cap-ratio" | "whale-75p-price-paid" | "from-1m-to-3m-net-realized-profit-and-loss-to-market-cap-ratio" | "from-5y-to-7y-realized-profit" | "p2wsh-25p-price-paid" | "year-2022-negative-realized-loss" | "market-price-to-p2tr-realized-price-ratio-1m-sma" | "p2wpkh-15p-price-paid" | "up-to-5m-25p-price-paid" | "year-2009-80p-price-paid" | "year-2020-60p-price-paid" | "year-2022-net-unrealized-profit-and-loss" | "p2wpkh-supply-in-loss-to-circulating-supply-ratio" | "year-2020-supply-in-profit-to-circulating-supply-ratio" | "from-15y-negative-unrealized-loss" | "year-2012-supply-in-profit-to-circulating-supply-ratio" | "up-to-15y-realized-price-99-5p" | "from-10y-to-15y-realized-cap-1m-net-change" | "year-2011-net-unrealized-profit-and-loss-to-market-cap-ratio" | "up-to-1d-cumulative-realized-profit" | "up-to-3m-realized-cap-1m-net-change" | "market-price-to-active-price-ratio-99-9p" | "market-price-to-p2pk-realized-price-ratio-1y-sma" | "from-1d-to-1w-utxo-count" | "fish-input-volume" | "year-2014-net-realized-profit-and-loss" | "p2wsh-utxo-count" | "market-price-to-p2wsh-realized-price-ratio-99p" | "year-2012-cumulative-realized-loss" | "market-price-to-year-2012-realized-price-ratio-1y-sma" | "from-15y-realized-price-99-5p" | "market-price-to-up-to-2y-realized-price-ratio-1p" | "market-price-to-price-4y-sma-ratio" | "from-1y-to-2y-supply-in-loss-to-circulating-supply-ratio" | "p2wsh-supply-in-profit" | "from-7y-to-10y-adjusted-value-created" | "p2wsh-55p-price-paid" | "up-to-6m-realized-price-0-1p" | "year-2019-supply-in-profit-to-own-supply-ratio" | "market-price-to-up-to-3m-realized-price-ratio-99-9p" | "year-2017-utxo-count" | "market-price-to-from-1m-to-3m-realized-price-ratio-1w-sma" | "p2wpkh-realized-price-99-5p" | "p2pkh-supply" | "from-3y-to-5y-sell-side-risk-ratio" | "from-2y-60p-price-paid" | "from-1m-to-3m-input-count" | "p2wpkh-supply-to-circulating-supply-ratio" | "active-cap" | "market-price-to-from-3m-to-6m-realized-price-ratio-1p" | "shark-supply-in-loss" | "whale-negative-realized-loss" | "market-price-to-from-1d-to-1w-realized-price-ratio-99-5p" | "blocks-mined-1w-sma" | "market-price-to-shark-realized-price-ratio-0-1p" | "p2wpkh-net-unrealized-profit-and-loss" | "highly-liquid-realized-loss" | "from-1y-to-2y-20p-price-paid" | "up-to-6m-cumulative-realized-loss" | "highly-liquid-realized-price-99-5p" | "year-2011-net-realized-profit-and-loss" | "year-2020-negative-unrealized-loss" | "market-price-to-year-2020-realized-price-ratio" | "from-1w-to-1m-cumulative-realized-loss" | "from-1w-to-1m-sell-side-risk-ratio" | "up-to-3y-35p-price-paid" | "market-price-to-year-2009-realized-price-ratio-0-1p" | "from-1y-median-price-paid" | "liquid-55p-price-paid" | "market-price-to-p2pk-realized-price-ratio-1y-sma-momentum-oscillator" | "market-price-to-from-15y-realized-price-ratio-1p" | "year-2020-realized-price" | "year-2022-sell-side-risk-ratio" | "year-2014-spent-output-profit-ratio" | "year-2015-80p-price-paid" | "from-15y-15p-price-paid" | "from-1w-to-1m-15p-price-paid" | "up-to-1m-negative-unrealized-loss" | "up-to-1w-95p-price-paid" | "up-to-2y-utxo-count" | "p2tr-negative-unrealized-loss" | "year-2013-supply-in-loss" | "market-price-to-sth-realized-price-ratio-1y-sma-momentum-oscillator" | "from-1d-to-1w-35p-price-paid" | "hash-rate-1m-sma" | "up-to-15y-realized-price-1p" | "market-price-to-price-55d-sma-ratio-0-5p" | "year-2024-65p-price-paid" | "up-to-10y-realized-cap" | "market-price-to-whale-realized-price-ratio-1y-sma" | "fish-cumulative-net-realized-profit-and-loss" | "market-price-to-price-34d-sma-ratio" | "market-price-to-year-2024-realized-price-ratio-1y-sma" | "p2wpkh-35p-price-paid" | "year-2022-supply-in-loss-to-own-supply-ratio" | "from-10y-to-15y-90p-price-paid" | "shark-realized-cap" | "year-2011-value-created" | "from-2y-to-3y-70p-price-paid" | "market-price-to-vaulted-price-ratio-1p" | "up-to-5m-unrealized-loss" | "from-5y-to-7y-95p-price-paid" | "market-price-to-year-2023-realized-price-ratio-1p" | "from-3y-to-5y-35p-price-paid" | "from-2y-to-3y-realized-price" | "up-to-7y-halved-supply-to-circulating-supply-ratio" | "year-2015-supply-in-loss-to-circulating-supply-ratio" | "up-to-1w-20p-price-paid" | "from-2y-95p-price-paid" | "market-price-to-from-7y-to-10y-realized-price-ratio-1y-sma" | "market-price-to-lth-realized-price-ratio-1w-sma" | "year-2011-realized-profit" | "year-2014-value-created" | "from-15y-60p-price-paid" | "from-15y-realized-price-99p" | "from-2y-to-3y-05p-price-paid" | "market-price-to-p2pkh-realized-price-ratio-99-9p" | "market-price-to-year-2009-realized-price-ratio-0-5p" | "up-to-15y-35p-price-paid" | "market-price-to-p2wpkh-realized-price-ratio-1y-sma" | "humpback-70p-price-paid" | "p2wsh-supply" | "plankton-85p-price-paid" | "shark-realized-price-99-5p" | "market-price-to-p2wpkh-realized-price-ratio-0-1p" | "year-2017-halved-supply-to-circulating-supply-ratio" | "up-to-3y-90p-price-paid" | "from-3m-to-6m-20p-price-paid" | "year-2013-supply-in-profit-to-circulating-supply-ratio" | "year-2019-95p-price-paid" | "market-price-to-year-2023-realized-price-ratio-0-1p" | "up-to-7y-realized-price-99-5p" | "year-2015-net-unrealized-profit-and-loss" | "p2wpkh-55p-price-paid" | "p2sh-95p-price-paid" | "up-to-1y-supply-in-profit-to-circulating-supply-ratio" | "year-2022-25p-price-paid" | "year-2010-95p-price-paid" | "from-5y-to-7y-90p-price-paid" | "from-3y-to-5y-unrealized-loss" | "p2pkh-value-created" | "year-2022-realized-value" | "from-1y-to-2y-70p-price-paid" | "from-1m-to-3m-supply-in-loss-to-circulating-supply-ratio" | "market-price-to-from-1m-to-3m-realized-price-ratio-1p" | "market-price-to-price-1w-sma-ratio-99-9p" | "p2sh-realized-price" | "up-to-4m-net-unrealized-profit-and-loss-to-market-cap-ratio" | "megalodon-adjusted-value-created" | "year-2011-supply-to-circulating-supply-ratio" | "up-to-1y-60p-price-paid" | "year-2013-unrealized-loss" | "year-2015-spent-output-profit-ratio" | "illiquid-realized-price-99-5p" | "market-price-to-year-2017-realized-price-ratio-1p" | "up-to-10y-realized-cap-1m-net-change" | "up-to-4m-unrealized-loss" | "crab-15p-price-paid" | "year-2018-net-realized-profit-and-loss" | "market-price-to-from-10y-to-15y-realized-price-ratio-99-5p" | "year-2014-supply-in-profit-to-own-supply-ratio" | "plankton-realized-price-99-5p" | "megalodon-supply-in-loss-to-circulating-supply-ratio" | "blocks-mined-1m-sma" | "market-price-to-p2pkh-realized-price-ratio-1p" | "p2wsh-value-destroyed" | "from-7y-to-10y-realized-loss" | "from-1d-to-1w-cumulative-net-realized-profit-and-loss" | "up-to-2y-halved-supply-to-circulating-supply-ratio" | "market-price-to-price-55d-sma-ratio" | "from-1m-to-3m-supply-in-loss-to-own-supply-ratio" | "p2sh-supply-in-profit-to-circulating-supply-ratio" | "up-to-6m-15p-price-paid" | "year-2023-realized-price-0-1p" | "market-price-to-year-2019-realized-price-ratio-1m-sma" | "from-1y-supply-in-profit-to-own-supply-ratio" | "lth-supply" | "highly-liquid-utxo-count" | "market-price-to-from-15y-realized-price-ratio-0-1p" | "from-2y-10p-price-paid" | "market-price-to-from-1m-to-3m-realized-price-ratio" | "p2wsh-10p-price-paid" | "shrimp-realized-price-0-1p" | "up-to-1d-65p-price-paid" | "up-to-3m-95p-price-paid" | "market-price-to-price-8d-sma-ratio-1p" | "from-10y-25p-price-paid" | "up-to-2y-realized-cap-1m-net-change" | "from-1m-to-3m-supply-in-profit-to-circulating-supply-ratio" | "up-to-2y-15p-price-paid" | "up-to-3m-realized-price-0-1p" | "fish-halved-supply" | "year-2024-sell-side-risk-ratio" | "whale-supply-in-profit-to-circulating-supply-ratio" | "hash-rate-2m-sma" | "from-10y-80p-price-paid" | "from-15y-realized-price-1p" | "illiquid-cumulative-realized-profit" | "lth-55p-price-paid" | "market-price-to-from-2y-realized-price-ratio-1w-sma" | "market-price-to-year-2019-realized-price-ratio-99-9p" | "whale-input-count" | "year-2024-supply" | "market-price-to-price-89d-sma-ratio-1p" | "market-price-to-vaulted-price-ratio-0-5p" | "year-2013-realized-profit" | "market-price-to-year-2017-realized-price-ratio-1w-sma" | "from-3y-to-5y-realized-price-0-5p" | "year-2021-adjusted-value-created" | "from-1d-to-1w-realized-profit" | "illiquid-supply-to-circulating-supply-ratio" | "market-price-to-true-market-mean-ratio-1y-sma-momentum-oscillator" | "market-price-to-year-2011-realized-price-ratio-0-5p" | "humpback-85p-price-paid" | "from-10y-to-15y-realized-profit" | "p2pk-realized-loss" | "market-price-to-up-to-10y-realized-price-ratio-99-9p" | "from-7y-to-10y-cumulative-net-realized-profit-and-loss" | "p2pkh-25p-price-paid" | "market-price-to-vaulted-price-ratio-1y-sma-momentum-oscillator" | "p2wsh-adjusted-value-created" | "from-2y-supply-in-loss" | "from-3y-to-5y-negative-unrealized-loss" | "p2sh-net-realized-profit-and-loss-to-market-cap-ratio" | "p2tr-adjusted-value-destroyed" | "from-5y-to-7y-70p-price-paid" | "up-to-2m-realized-price-99p" | "market-price-to-up-to-1y-realized-price-ratio-99p" | "from-10y-to-15y-20p-price-paid" | "from-2y-to-3y-median-price-paid" | "year-2016-85p-price-paid" | "market-price-to-up-to-5m-realized-price-ratio-99-9p" | "up-to-1w-spent-output-profit-ratio" | "up-to-5y-supply-in-loss-to-own-supply-ratio" | "illiquid-60p-price-paid" | "from-2y-35p-price-paid" | "market-price-to-up-to-1d-realized-price-ratio-1y-sma" | "p2wsh-realized-price-0-5p" | "year-2016-unrealized-profit" | "market-price-to-up-to-5y-realized-price-ratio-1p" | "from-10y-spent-output-profit-ratio" | "shark-unrealized-loss" | "up-to-15y-supply-in-profit" | "p2sh-60p-price-paid" | "market-price-to-up-to-1y-realized-price-ratio-99-5p" | "market-price-to-cointime-price-ratio-1w-sma" | "market-price-to-up-to-5y-realized-price-ratio" | "from-15y-spent-output-profit-ratio" | "liquid-90p-price-paid" | "year-2014-15p-price-paid" | "year-2013-cumulative-realized-profit" | "from-2y-to-3y-value-created" | "year-2020-20p-price-paid" | "from-15y-net-realized-profit-and-loss" | "from-10y-to-15y-unrealized-profit" | "from-5y-to-7y-cumulative-realized-loss" | "liquid-supply-in-loss" | "from-15y-realized-price-99-9p" | "shark-supply-in-profit-to-own-supply-ratio" | "up-to-5m-realized-price-0-1p" | "p2sh-adjusted-spent-output-profit-ratio" | "up-to-1w-negative-unrealized-loss" | "year-2014-negative-realized-loss" | "year-2012-realized-profit" | "whale-30p-price-paid" | "from-10y-to-15y-cumulative-realized-loss" | "p2pkh-realized-cap-1m-net-change" | "from-4y-realized-cap-1m-net-change" | "p2tr-halved-supply-to-circulating-supply-ratio" | "price-1w-sma-0-5p" | "up-to-3y-80p-price-paid" | "from-1w-to-1m-75p-price-paid" | "year-2009-net-unrealized-profit-and-loss" | "year-2019-halved-supply" | "year-2022-20p-price-paid" | "p2pkh-realized-cap" | "from-10y-to-15y-supply" | "whale-realized-cap-1m-net-change" | "from-4y-60p-price-paid" | "up-to-5m-utxo-count" | "total-cointime-value-destroyed" | "from-4y-35p-price-paid" | "year-2022-supply-in-loss" | "up-to-1y-cumulative-net-realized-profit-and-loss-1m-net-change" | "megalodon-supply-in-loss" | "humpback-supply-in-profit-to-own-supply-ratio" | "liquid-negative-realized-loss" | "plankton-halved-supply" | "liquid-realized-cap" | "liquid-realized-price-99-9p" | "up-to-1w-05p-price-paid" | "market-price-to-from-10y-to-15y-realized-price-ratio-0-1p" | "market-price-to-price-8d-sma-ratio-1y-sma-momentum-oscillator" | "market-price-to-shark-realized-price-ratio-99-5p" | "megalodon-negative-realized-loss" | "price-1y-sma-0-5p" | "market-price-to-from-1y-realized-price-ratio-1w-sma" | "shrimp-value-destroyed" | "year-2017-cumulative-realized-loss" | "from-1d-to-1w-45p-price-paid" | "from-1y-to-2y-supply-in-profit" | "up-to-15y-realized-price-99p" | "up-to-1w-realized-profit" | "up-to-7y-40p-price-paid" | "year-2019-input-volume" | "year-2021-net-realized-profit-and-loss" | "market-price-to-from-6m-to-1y-realized-price-ratio-99-9p" | "p2wsh-unrealized-profit" | "up-to-7y-80p-price-paid" | "year-2024-realized-price-99p" | "up-to-1m-supply-in-loss-to-own-supply-ratio" | "year-2022-realized-price-1p" | "market-price-to-price-200w-sma-ratio-1m-sma" | "from-10y-to-15y-realized-loss" | "year-2020-realized-price-0-5p" | "up-to-4m-adjusted-value-destroyed" | "p2pk-value-created" | "year-2014-cumulative-realized-profit" | "market-price-to-megalodon-realized-price-ratio-1w-sma" | "up-to-7y-spent-output-profit-ratio" | "price-21d-sma-0-1p" | "from-1y-to-2y-realized-profit" | "humpback-adjusted-value-destroyed" | "market-price-to-shrimp-realized-price-ratio" | "supply-in-profit" | "p2tr-cumulative-realized-profit" | "up-to-3m-net-unrealized-profit-and-loss" | "illiquid-supply-in-loss-to-own-supply-ratio" | "liquid-address-count" | "up-to-1y-realized-price" | "year-2012-net-realized-profit-and-loss-to-market-cap-ratio" | "up-to-1d-net-unrealized-profit-and-loss-to-market-cap-ratio" | "year-2018-median-price-paid" | "year-2018-realized-price-0-5p" | "year-2021-spent-output-profit-ratio" | "market-price-to-up-to-2m-realized-price-ratio-1w-sma" | "market-price-to-sth-realized-price-ratio-99p" | "p2wpkh-realized-value" | "market-price-to-year-2021-realized-price-ratio-1y-sma" | "up-to-2y-60p-price-paid" | "cointime-price-99-9p" | "market-price-to-year-2018-realized-price-ratio-0-1p" | "market-price-to-year-2019-realized-price-ratio-1y-sma" | "from-3y-to-5y-55p-price-paid" | "fish-realized-profit" | "year-2024-adjusted-value-destroyed" | "from-15y-adjusted-spent-output-profit-ratio" | "p2pkh-cumulative-realized-profit" | "market-price-to-from-2y-to-3y-realized-price-ratio-1m-sma" | "p2wpkh-spent-output-profit-ratio" | "shrimp-halved-supply-to-circulating-supply-ratio" | "fish-realized-cap" | "from-1w-to-1m-85p-price-paid" | "year-2009-adjusted-value-destroyed" | "from-1y-adjusted-value-created" | "p2pkh-realized-loss" | "up-to-2m-adjusted-spent-output-profit-ratio" | "sth-supply-in-loss-to-circulating-supply-ratio" | "up-to-5y-realized-cap" | "fish-realized-price-1p" | "up-to-1w-cumulative-net-realized-profit-and-loss" | "crab-supply-in-profit-to-circulating-supply-ratio" | "p2sh-25p-price-paid" | "from-1m-to-3m-15p-price-paid" | "year-2018-80p-price-paid" | "from-6m-to-1y-85p-price-paid" | "from-10y-30p-price-paid" | "year-2016-80p-price-paid" | "up-to-5m-55p-price-paid" | "humpback-35p-price-paid" | "year-2010-65p-price-paid" | "from-15y-40p-price-paid" | "from-1m-to-3m-realized-price-1p" | "up-to-1d-realized-price-99p" | "year-2018-realized-cap-1m-net-change" | "year-2018-supply-in-profit-to-circulating-supply-ratio" | "market-price-to-active-price-ratio-1m-sma" | "year-2023-35p-price-paid" | "p2pkh-realized-value" | "net-unrealized-profit-and-loss-to-market-cap-ratio" | "market-price-to-from-4y-realized-price-ratio-1w-sma" | "up-to-1w-halved-supply" | "up-to-2m-supply-in-loss" | "up-to-3y-spent-output-profit-ratio" | "year-2023-60p-price-paid" | "sth-adjusted-value-created" | "from-1y-20p-price-paid" | "year-2020-net-realized-profit-and-loss" | "from-3y-to-5y-supply" | "from-1y-to-2y-realized-price-1p" | "whale-unrealized-profit" | "from-10y-35p-price-paid" | "crab-65p-price-paid" | "up-to-7y-input-volume" | "fish-40p-price-paid" | "cumulative-coinbase-in-dollars" | "up-to-15y-supply-in-profit-to-own-supply-ratio" | "up-to-10y-realized-price-0-5p" | "market-price-to-year-2014-realized-price-ratio-1y-sma" | "cumulative-net-realized-profit-and-loss" | "p2wpkh-10p-price-paid" | "sth-05p-price-paid" | "market-price-to-from-4y-realized-price-ratio-99-5p" | "up-to-5m-realized-price-99-9p" | "up-to-5y-cumulative-net-realized-profit-and-loss-1m-net-change" | "p2sh-supply-in-loss" | "year-2023-adjusted-value-created" | "year-2020-realized-price-99p" | "market-price-to-price-55d-sma-ratio-99-5p" | "fish-25p-price-paid" | "price-21d-sma-1p" | "year-2019-90p-price-paid" | "p2wsh-negative-realized-loss" | "up-to-1d-realized-cap-1m-net-change" | "up-to-15y-input-count" | "year-2021-unrealized-loss" | "activity-to-vaultedness-ratio" | "year-2011-realized-price-1p" | "from-10y-supply" | "year-2016-halved-supply" | "p2pk-80p-price-paid" | "from-10y-to-15y-adjusted-value-created" | "from-7y-to-10y-net-unrealized-profit-and-loss-to-market-cap-ratio" | "p2pk-60p-price-paid" | "year-2024-supply-in-profit-to-own-supply-ratio" | "up-to-7y-supply-in-profit-to-own-supply-ratio" | "transaction-volume-1m-sma" | "from-2y-to-3y-60p-price-paid" | "megalodon-35p-price-paid" | "from-6m-to-1y-value-created" | "highly-liquid-supply-to-circulating-supply-ratio" | "year-2011-input-volume" | "hash-rate" | "up-to-1w-realized-price-99p" | "market-price-to-year-2018-realized-price-ratio-0-5p" | "market-price-to-year-2014-realized-price-ratio-1y-sma-momentum-oscillator" | "market-price-to-year-2015-realized-price-ratio-1p" | "from-3m-to-6m-supply-in-loss" | "market-price-to-humpback-realized-price-ratio-1m-sma" | "price-89d-sma-0-5p" | "up-to-2m-35p-price-paid" | "from-3y-to-5y-85p-price-paid" | "p2pkh-realized-price" | "year-2021-supply-in-loss-to-circulating-supply-ratio" | "up-to-1y-95p-price-paid" | "price-55d-sma" | "year-2024-input-count" | "up-to-5m-supply" | "up-to-1y-halved-supply-to-circulating-supply-ratio" | "up-to-4m-cumulative-realized-profit" | "up-to-5m-supply-in-loss-to-circulating-supply-ratio" | "year-2010-utxo-count" | "year-2009-realized-price-1p" | "market-price-to-from-15y-realized-price-ratio" | "cumulative-fees-in-dollars" | "market-price-to-from-1d-to-1w-realized-price-ratio-1m-sma" | "from-1w-to-1m-realized-price" | "humpback-05p-price-paid" | "from-10y-halved-supply" | "from-10y-to-15y-supply-to-circulating-supply-ratio" | "market-price-to-from-2y-to-3y-realized-price-ratio-99-9p" | "year-2018-value-destroyed" | "market-price-to-price-1w-sma-ratio-0-5p" | "p2wsh-70p-price-paid" | "p2wsh-60p-price-paid" | "year-2015-halved-supply" | "year-2017-supply" | "from-1y-halved-supply-to-circulating-supply-ratio" | "from-3m-to-6m-85p-price-paid" | "from-3y-to-5y-70p-price-paid" | "fish-05p-price-paid" | "up-to-1m-realized-price" | "market-price-to-year-2024-realized-price-ratio" | "p2sh-realized-value" | "year-2017-30p-price-paid" | "market-price-to-highly-liquid-realized-price-ratio" | "from-10y-to-15y-realized-cap" | "market-price-to-price-55d-sma-ratio-0-1p" | "year-2017-15p-price-paid" | "lth-95p-price-paid" | "market-price-to-up-to-15y-realized-price-ratio-99-5p" | "market-price-to-up-to-2m-realized-price-ratio-99-9p" | "market-price-to-up-to-4m-realized-price-ratio-0-1p" | "humpback-80p-price-paid" | "block-vbytes" | "from-3m-to-6m-realized-cap" | "from-1d-to-1w-adjusted-spent-output-profit-ratio" | "fish-supply-in-profit-to-own-supply-ratio" | "hash-rate-1w-sma" | "market-price-to-year-2017-realized-price-ratio-1y-sma" | "p2sh-halved-supply-to-circulating-supply-ratio" | "from-15y-70p-price-paid" | "from-6m-to-1y-90p-price-paid" | "market-price-to-from-5y-to-7y-realized-price-ratio-99p" | "from-2y-to-3y-85p-price-paid" | "realized-price-99-5p" | "price-21d-sma-0-5p" | "year-2021-input-volume" | "market-price-to-shrimp-realized-price-ratio-0-5p" | "market-price-to-from-1y-realized-price-ratio-1y-sma-momentum-oscillator" | "timestamp" | "market-price-to-price-21d-sma-ratio-0-1p" | "highly-liquid-supply-in-profit" | "p2pk-45p-price-paid" | "p2pk-utxo-count" | "from-1y-realized-price-0-5p" | "year-2021-cumulative-realized-loss" | "up-to-2m-75p-price-paid" | "up-to-4m-input-count" | "p2wpkh-05p-price-paid" | "year-2018-supply-in-loss-to-own-supply-ratio" | "year-2023-realized-price-1p" | "market-price-to-up-to-1w-realized-price-ratio-1m-sma" | "market-price-to-year-2018-realized-price-ratio-1y-sma-momentum-oscillator" | "year-2014-supply-in-loss" | "from-1y-supply-to-circulating-supply-ratio" | "up-to-3m-sell-side-risk-ratio" | "from-1y-realized-cap-1m-net-change" | "year-2009-adjusted-value-created" | "market-price-to-from-3y-to-5y-realized-price-ratio-99p" | "from-3y-to-5y-60p-price-paid" | "up-to-10y-halved-supply-to-circulating-supply-ratio" | "from-1y-to-2y-55p-price-paid" | "year-2010-realized-price" | "cointime-value-stored" | "p2pk-spent-output-profit-ratio" | "year-2019-net-realized-profit-and-loss" | "plankton-25p-price-paid" | "up-to-5y-55p-price-paid" | "year-2016-05p-price-paid" | "from-2y-net-unrealized-profit-and-loss" | "market-price-to-year-2016-realized-price-ratio-1w-sma" | "year-2021-realized-price-99-9p" | "p2pk-input-count" | "price-55d-sma-99-9p" | "from-2y-to-3y-40p-price-paid" | "up-to-15y-65p-price-paid" | "up-to-3y-75p-price-paid" | "up-to-7y-net-unrealized-profit-and-loss-to-market-cap-ratio" | "0" | "up-to-1y-negative-realized-loss" | "p2pkh-realized-price-1p" | "from-5y-to-7y-cumulative-net-realized-profit-and-loss-1m-net-change" | "market-price-to-year-2021-realized-price-ratio-1p" | "up-to-10y-supply-in-profit-to-circulating-supply-ratio" | "up-to-1w-realized-cap-1m-net-change" | "whale-value-created" | "market-price-to-year-2023-realized-price-ratio-99p" | "year-2013-60p-price-paid" | "up-to-3y-unrealized-profit" | "year-2022-30p-price-paid" | "year-2022-cumulative-net-realized-profit-and-loss" | "up-to-3y-median-price-paid" | "from-2y-to-3y-supply-in-loss-to-circulating-supply-ratio" | "year-2016-realized-price-0-1p" | "up-to-4m-realized-price-99-5p" | "year-2013-net-realized-profit-and-loss" | "from-1w-to-1m-realized-price-99-5p" | "up-to-3m-40p-price-paid" | "year-2009-35p-price-paid" | "year-2019-unrealized-loss" | "sth-90p-price-paid" | "sth-55p-price-paid" | "year-2017-spent-output-profit-ratio" | "true-market-mean" | "plankton-95p-price-paid" | "year-2010-realized-value" | "whale-80p-price-paid" | "up-to-5m-realized-value" | "market-price-to-price-34d-sma-ratio-99-5p" | "p2wpkh-cumulative-net-realized-profit-and-loss" | "1" | "up-to-3m-negative-unrealized-loss" | "megalodon-60p-price-paid" | "up-to-1m-realized-cap" | "market-price-to-from-2y-realized-price-ratio-1y-sma-momentum-oscillator" | "from-1d-to-1w-sell-side-risk-ratio" | "p2sh-75p-price-paid" | "up-to-5m-input-volume" | "megalodon-45p-price-paid" | "year-2010-cumulative-net-realized-profit-and-loss" | "illiquid-adjusted-spent-output-profit-ratio" | "shrimp-realized-loss" | "megalodon-70p-price-paid" | "shark-negative-realized-loss" | "up-to-15y-40p-price-paid" | "year-2010-realized-cap" | "from-2y-to-3y-realized-profit" | "humpback-adjusted-value-created" | "from-2y-net-unrealized-profit-and-loss-to-market-cap-ratio" | "megalodon-realized-loss" | "from-2y-cumulative-realized-loss" | "market-price-to-plankton-realized-price-ratio-99-5p" | "up-to-5y-30p-price-paid" | "year-2012-supply-in-loss-to-own-supply-ratio" | "from-3m-to-6m-input-count" | "year-2012-supply-to-circulating-supply-ratio" | "market-price-to-price-144d-sma-ratio-0-5p" | "market-price-to-up-to-7y-realized-price-ratio" | "up-to-1w-realized-price-0-5p" | "year-2013-75p-price-paid" | "up-to-1y-adjusted-value-created" | "liquid-supply-in-profit-to-circulating-supply-ratio" | "up-to-3m-45p-price-paid" | "year-2014-adjusted-value-destroyed" | "crab-supply-in-loss" | "market-price-to-year-2016-realized-price-ratio-0-1p" | "market-price-to-p2tr-realized-price-ratio-1p" | "p2pk-halved-supply" | "humpback-supply-in-loss-to-own-supply-ratio" | "up-to-10y-realized-value" | "year-2011-80p-price-paid" | "from-1y-40p-price-paid" | "from-10y-to-15y-supply-in-profit" | "from-3y-to-5y-realized-value" | "market-price-to-price-8d-sma-ratio-0-5p" | "up-to-1m-20p-price-paid" | "year-2011-85p-price-paid" | "year-2012-25p-price-paid" | "from-3m-to-6m-negative-unrealized-loss" | "from-7y-to-10y-cumulative-realized-profit" | "liquid-realized-price-99-5p" | "cumulative-coinblocks-stored" | "year-2010-55p-price-paid" | "from-2y-to-3y-adjusted-spent-output-profit-ratio" | "up-to-3m-35p-price-paid" | "adjusted-spent-output-profit-ratio" | "from-15y-utxo-count" | "from-3m-to-6m-supply-in-profit" | "highly-liquid-realized-price-99-9p" | "up-to-5y-net-unrealized-profit-and-loss" | "from-4y-halved-supply" | "p2tr-cumulative-net-realized-profit-and-loss" | "up-to-6m-85p-price-paid" | "liquid-input-count" | "from-4y-net-unrealized-profit-and-loss" | "market-price-to-p2tr-realized-price-ratio-99p" | "shark-supply-to-circulating-supply-ratio" | "year-2010-45p-price-paid" | "whale-65p-price-paid" | "from-10y-to-15y-25p-price-paid" | "p2pk-85p-price-paid" | "p2wpkh-value-destroyed" | "from-2y-realized-value" | "shark-input-count" | "block-size" | "market-price-to-up-to-1d-realized-price-ratio-1w-sma" | "from-6m-to-1y-negative-unrealized-loss" | "market-price-to-price-89d-sma-ratio-99p" | "market-price-to-year-2021-realized-price-ratio" | "from-5y-to-7y-realized-cap" | "sth-realized-price-99p" | "up-to-3y-supply-in-loss-to-circulating-supply-ratio" | "p2tr-value-created" | "market-price-to-price-1y-sma-ratio-99p" | "from-1y-15p-price-paid" | "highly-liquid-halved-supply" | "illiquid-supply-in-loss" | "illiquid-value-created" | "p2sh-negative-realized-loss" | "sth-35p-price-paid" | "subsidy-1y-sum" | "year-2014-unrealized-profit" | "market-price-to-liquid-realized-price-ratio-99-5p" | "whale-unrealized-loss" | "year-2023-adjusted-value-destroyed" | "market-price-to-plankton-realized-price-ratio-1m-sma" | "up-to-7y-10p-price-paid" | "from-3y-to-5y-negative-realized-loss" | "market-price-to-active-price-ratio-1y-sma" | "sth-supply-in-profit" | "from-3m-to-6m-unrealized-loss" | "market-price-to-price-1m-sma-ratio-0-1p" | "market-price-to-true-market-mean-ratio-1m-sma" | "total-cointime-value-stored" | "year-2011-realized-price" | "year-2012-negative-unrealized-loss" | "year-2015-70p-price-paid" | "year-2016-10p-price-paid" | "market-price-to-price-2y-sma-ratio" | "from-3m-to-6m-realized-price-0-5p" | "p2pkh-05p-price-paid" | "market-price-to-lth-realized-price-ratio-1m-sma" | "from-1w-to-1m-35p-price-paid" | "p2tr-unrealized-loss" | "year-2012-cumulative-net-realized-profit-and-loss" | "year-2017-negative-unrealized-loss" | "up-to-3m-negative-realized-loss" | "market-price-to-from-3y-to-5y-realized-price-ratio-1y-sma-momentum-oscillator" | "block-vbytes-1d-90p" | "market-price-to-up-to-15y-realized-price-ratio-99p" | "from-2y-to-3y-30p-price-paid" | "market-price-to-year-2020-realized-price-ratio-99p" | "from-3m-to-6m-halved-supply-to-circulating-supply-ratio" | "from-5y-to-7y-05p-price-paid" | "up-to-3m-80p-price-paid" | "up-to-3y-realized-cap" | "year-2017-supply-in-profit-to-own-supply-ratio" | "year-2019-supply-in-profit" | "p2wsh-realized-profit" | "year-2021-halved-supply-to-circulating-supply-ratio" | "year-2022-55p-price-paid" | "from-3y-to-5y-supply-to-circulating-supply-ratio" | "from-1y-to-2y-adjusted-value-destroyed" | "humpback-realized-price-0-1p" | "year-2016-realized-price-99-9p" | "humpback-halved-supply" | "market-price-to-from-15y-realized-price-ratio-99-5p" | "liquid-adjusted-value-created" | "market-price-to-up-to-1m-realized-price-ratio-0-1p" | "megalodon-realized-profit" | "year-2010-realized-cap-1m-net-change" | "from-2y-to-3y-input-volume" | "market-price-to-price-55d-sma-ratio-1w-sma" | "year-2019-value-destroyed" | "year-2020-supply-in-profit" | "up-to-1m-net-unrealized-profit-and-loss-to-market-cap-ratio" | "p2wsh-halved-supply-to-circulating-supply-ratio" | "year-2015-20p-price-paid" | "market-price-to-up-to-3y-realized-price-ratio-1m-sma" | "year-2013-realized-loss" | "liquid-supply-in-loss-to-own-supply-ratio" | "up-to-1w-supply-to-circulating-supply-ratio" | "up-to-5m-net-unrealized-profit-and-loss" | "price-144d-sma-99-5p" | "sth-supply-in-loss-to-own-supply-ratio" | "market-price-to-active-price-ratio-1p" | "from-6m-to-1y-input-count" | "up-to-1w-supply-in-loss-to-circulating-supply-ratio" | "date" | "year-2012-05p-price-paid" | "year-2014-95p-price-paid" | "year-2024-realized-price" | "p2tr-65p-price-paid" | "thermo-cap" | "market-price-to-up-to-1y-realized-price-ratio-1w-sma" | "shrimp-adjusted-value-destroyed" | "active-price-0-5p" | "from-7y-to-10y-halved-supply" | "liquid-negative-unrealized-loss" | "p2wpkh-median-price-paid" | "from-15y-halved-supply" | "market-price-to-up-to-3m-realized-price-ratio-99-5p" | "liquid-30p-price-paid" | "up-to-10y-realized-price-99-5p" | "up-to-3m-supply-to-circulating-supply-ratio" | "year-2013-realized-cap-1m-net-change" | "illiquid-supply-in-profit" | "year-2013-realized-price-99-5p" | "year-2009-net-unrealized-profit-and-loss-to-market-cap-ratio" | "shrimp-05p-price-paid" | "year-2018-70p-price-paid" | "up-to-1m-net-realized-profit-and-loss-to-market-cap-ratio" | "up-to-1y-unrealized-profit" | "up-to-1d-85p-price-paid" | "year-2021-unrealized-profit" | "up-to-1m-net-realized-profit-and-loss" | "plankton-net-realized-profit-and-loss-to-market-cap-ratio" | "from-2y-to-3y-15p-price-paid" | "p2wsh-45p-price-paid" | "market-price-to-year-2023-realized-price-ratio-1w-sma" | "market-price-to-year-2012-realized-price-ratio" | "up-to-15y-10p-price-paid" | "year-2016-supply-in-profit" | "year-2021-25p-price-paid" | "year-2024-negative-unrealized-loss" | "from-1m-to-3m-10p-price-paid" | "p2wpkh-90p-price-paid" | "year-2023-realized-price" | "market-price-to-price-1w-sma-ratio-0-1p" | "from-1y-30p-price-paid" | "up-to-6m-40p-price-paid" | "lth-supply-in-loss-to-circulating-supply-ratio" | "p2pkh-cumulative-net-realized-profit-and-loss" | "market-price-to-up-to-1w-realized-price-ratio-0-1p" | "market-price-to-up-to-5y-realized-price-ratio-99p" | "price-3y-total-return" | "up-to-1w-supply-in-loss" | "p2wsh-35p-price-paid" | "up-to-1w-realized-price" | "up-to-6m-realized-price" | "year-2016-cumulative-net-realized-profit-and-loss-1m-net-change" | "cumulative-realized-loss" | "up-to-2m-halved-supply" | "from-4y-negative-realized-loss" | "highly-liquid-spent-output-profit-ratio" | "up-to-6m-supply-in-profit-to-own-supply-ratio" | "up-to-3y-supply-in-profit-to-own-supply-ratio" | "year-2017-median-price-paid" | "market-price-to-from-7y-to-10y-realized-price-ratio-99-5p" | "from-10y-cumulative-net-realized-profit-and-loss-1m-net-change" | "market-price-to-year-2016-realized-price-ratio-99-5p" | "up-to-1y-halved-supply" | "up-to-6m-realized-price-1p" | "year-2016-15p-price-paid" | "p2wsh-realized-loss" | "up-to-2m-negative-realized-loss" | "up-to-2m-realized-cap" | "up-to-3y-supply" | "year-2010-15p-price-paid" | "year-2013-halved-supply-to-circulating-supply-ratio" | "market-price-to-from-5y-to-7y-realized-price-ratio-1w-sma" | "illiquid-realized-profit" | "from-2y-to-3y-realized-value" | "from-2y-to-3y-cumulative-net-realized-profit-and-loss-1m-net-change" | "market-price-to-megalodon-realized-price-ratio" | "p2pkh-halved-supply-to-circulating-supply-ratio" | "plankton-supply-in-profit-to-circulating-supply-ratio" | "up-to-7y-utxo-count" | "true-market-mean-99-9p" | "highly-liquid-20p-price-paid" | "p2pk-30p-price-paid" | "highly-liquid-35p-price-paid" | "up-to-1w-35p-price-paid" | "active-price" | "market-price-to-p2tr-realized-price-ratio-99-9p" | "market-price-to-megalodon-realized-price-ratio-99-9p" | "up-to-5y-45p-price-paid" | "up-to-7y-30p-price-paid" | "year-2010-10p-price-paid" | "market-price-to-from-1w-to-1m-realized-price-ratio-1p" | "shrimp-net-unrealized-profit-and-loss-to-market-cap-ratio" | "year-2011-net-unrealized-profit-and-loss" | "block-weight-1d-max" | "crab-cumulative-net-realized-profit-and-loss" | "fish-supply-in-loss-to-own-supply-ratio" | "from-6m-to-1y-realized-price-0-1p" | "illiquid-value-destroyed" | "market-price-to-from-1y-realized-price-ratio-99-5p" | "highly-liquid-supply-in-loss-to-own-supply-ratio" | "market-price-to-p2sh-realized-price-ratio-1w-sma" | "market-price-to-realized-price-ratio-99-5p" | "from-1y-to-2y-value-destroyed" | "p2sh-utxo-count" | "p2wsh-supply-to-circulating-supply-ratio" | "up-to-15y-05p-price-paid" | "up-to-15y-sell-side-risk-ratio" | "up-to-5y-realized-price-99p" | "up-to-1m-40p-price-paid" | "up-to-3y-sell-side-risk-ratio" | "up-to-7y-value-destroyed" | "last-height" | "whale-net-unrealized-profit-and-loss-to-market-cap-ratio" | "plankton-adjusted-value-destroyed" | "year-2023-net-realized-profit-and-loss" | "from-15y-input-count" | "year-2018-net-realized-profit-and-loss-to-market-cap-ratio" | "market-price-to-crab-realized-price-ratio-99p" | "from-10y-70p-price-paid" | "illiquid-net-realized-profit-and-loss" | "p2wpkh-45p-price-paid" | "year-2015-supply-in-profit-to-own-supply-ratio" | "year-2014-net-unrealized-profit-and-loss" | "humpback-realized-price-99p" | "p2wpkh-sell-side-risk-ratio" | "sth-40p-price-paid" | "up-to-4m-net-realized-profit-and-loss" | "market-price-to-up-to-4m-realized-price-ratio-99-5p" | "up-to-6m-cumulative-realized-profit" | "100" | "p2pk-supply-to-circulating-supply-ratio" | "from-2y-to-3y-realized-price-1p" | "price-200w-sma-0-5p" | "market-price-to-up-to-1m-realized-price-ratio-99-9p" | "up-to-3m-30p-price-paid" | "p2wpkh-net-realized-profit-and-loss-to-market-cap-ratio" | "up-to-5m-unrealized-profit" | "fish-supply-in-loss" | "market-price-to-price-144d-sma-ratio-1y-sma" | "year-2020-supply-in-loss-to-own-supply-ratio" | "year-2022-input-volume" | "from-3m-to-6m-cumulative-net-realized-profit-and-loss-1m-net-change" | "from-10y-supply-in-profit-to-circulating-supply-ratio" | "p2pkh-adjusted-value-created" | "humpback-utxo-count" | "year-2019-60p-price-paid" | "from-1m-to-3m-realized-price" | "from-15y-realized-profit" | "p2wpkh-negative-unrealized-loss" | "year-2021-realized-price-99p" | "year-2022-60p-price-paid" | "from-6m-to-1y-net-unrealized-profit-and-loss-to-market-cap-ratio" | "market-price-to-fish-realized-price-ratio-1w-sma" | "market-price-to-year-2022-realized-price-ratio-99-9p" | "sth-realized-cap" | "up-to-1y-15p-price-paid" | "crab-realized-loss" | "liquid-median-price-paid" | "year-2010-60p-price-paid" | "up-to-1y-10p-price-paid" | "from-1y-to-2y-utxo-count" | "year-2018-halved-supply-to-circulating-supply-ratio" | "year-2019-supply-in-loss-to-own-supply-ratio" | "highly-liquid-25p-price-paid" | "market-price-to-from-2y-realized-price-ratio-99-9p" | "shrimp-supply-in-profit-to-circulating-supply-ratio" | "market-price-to-up-to-6m-realized-price-ratio-0-1p" | "from-10y-to-15y-negative-realized-loss" | "up-to-5m-65p-price-paid" | "from-10y-to-15y-cumulative-net-realized-profit-and-loss" | "from-3y-to-5y-65p-price-paid" | "from-6m-to-1y-80p-price-paid" | "from-1d-to-1w-supply-in-loss" | "market-price-to-year-2018-realized-price-ratio-1y-sma" | "whale-realized-loss" | "market-price-to-from-10y-realized-price-ratio-1y-sma-momentum-oscillator" | "from-3y-to-5y-realized-loss" | "year-2021-adjusted-value-destroyed" | "shrimp-net-realized-profit-and-loss" | "p2tr-adjusted-spent-output-profit-ratio" | "market-price-to-up-to-7y-realized-price-ratio-99-9p" | "year-2021-80p-price-paid" | "from-3m-to-6m-80p-price-paid" | "from-3y-to-5y-realized-price-0-1p" | "highly-liquid-sell-side-risk-ratio" | "market-price-to-from-5y-to-7y-realized-price-ratio" | "from-6m-to-1y-supply-to-circulating-supply-ratio" | "from-15y-supply-in-loss-to-circulating-supply-ratio" | "price-1w-sma-99-5p" | "sth-cumulative-net-realized-profit-and-loss-1m-net-change" | "megalodon-realized-price-99-5p" | "from-1y-cumulative-realized-profit" | "up-to-2y-supply-in-loss" | "from-6m-to-1y-net-realized-profit-and-loss" | "year-2022-adjusted-spent-output-profit-ratio" | "year-2023-cumulative-net-realized-profit-and-loss" | "from-5y-to-7y-25p-price-paid" | "up-to-1m-realized-loss" | "p2pk-25p-price-paid" | "market-price-to-year-2012-realized-price-ratio-0-1p" | "up-to-4m-sell-side-risk-ratio" | "illiquid-spent-output-profit-ratio" | "year-2017-realized-price-0-1p" | "p2wpkh-70p-price-paid" | "year-2012-30p-price-paid" | "block-interval-1d-max" | "from-10y-realized-cap-1m-net-change" | "year-2024-05p-price-paid" | "market-price-to-from-1y-realized-price-ratio-1y-sma" | "up-to-6m-halved-supply" | "liquid-35p-price-paid" | "year-2010-supply-in-profit-to-circulating-supply-ratio" | "up-to-7y-net-realized-profit-and-loss-to-market-cap-ratio" | "shrimp-realized-price-1p" | "from-1y-realized-price-99p" | "year-2023-halved-supply-to-circulating-supply-ratio" | "price-2y-sma-99-5p" | "market-price-to-year-2017-realized-price-ratio-99-5p" | "from-1m-to-3m-70p-price-paid" | "05p-price-paid" | "market-price-to-year-2013-realized-price-ratio-1y-sma" | "year-2021-net-unrealized-profit-and-loss" | "market-price-to-whale-realized-price-ratio-1m-sma" | "year-2015-cumulative-realized-profit" | "p2tr-address-count" | "market-price-to-year-2013-realized-price-ratio" | "year-2016-net-unrealized-profit-and-loss-to-market-cap-ratio" | "market-price-to-p2wsh-realized-price-ratio-1y-sma-momentum-oscillator" | "from-2y-halved-supply" | "year-2017-input-count" | "market-price-to-year-2014-realized-price-ratio-99-5p" | "from-1m-to-3m-value-destroyed" | "humpback-60p-price-paid" | "from-1y-to-2y-net-realized-profit-and-loss" | "market-price-to-year-2011-realized-price-ratio-1y-sma-momentum-oscillator" | "market-price-to-realized-price-ratio" | "p2pk-realized-profit" | "active-supply-net-change" | "from-1y-to-2y-net-unrealized-profit-and-loss" | "p2wsh-realized-price" | "up-to-5y-25p-price-paid" | "market-price-to-from-10y-realized-price-ratio" | "up-to-3y-realized-price-99-9p" | "up-to-7y-realized-price-1p" | "price" | "from-4y-realized-price-0-1p" | "megalodon-90p-price-paid" | "from-3m-to-6m-spent-output-profit-ratio" | "market-price-to-from-1y-realized-price-ratio-99p" | "p2pk-median-price-paid" | "up-to-2y-sell-side-risk-ratio" | "up-to-10y-negative-realized-loss" | "up-to-1y-35p-price-paid" | "megalodon-unrealized-loss" | "plankton-80p-price-paid" | "market-price-to-whale-realized-price-ratio-1y-sma-momentum-oscillator" | "up-to-3m-halved-supply-to-circulating-supply-ratio" | "up-to-7y-adjusted-value-destroyed" | "crab-60p-price-paid" | "from-4y-median-price-paid" | "from-10y-to-15y-net-unrealized-profit-and-loss-to-market-cap-ratio" | "p2pkh-net-unrealized-profit-and-loss" | "p2wsh-40p-price-paid" | "year-2023-supply-in-profit-to-circulating-supply-ratio" | "year-2023-supply-in-loss-to-own-supply-ratio" | "year-2016-realized-price" | "from-1y-to-2y-30p-price-paid" | "year-2020-40p-price-paid" | "year-2023-halved-supply" | "market-price-to-price-200w-sma-ratio-99-9p" | "up-to-5m-value-created" | "created-addresses" | "up-to-5m-30p-price-paid" | "year-2014-cumulative-realized-loss" | "from-4y-realized-price-99-9p" | "from-7y-to-10y-45p-price-paid" | "plankton-realized-price-0-1p" | "up-to-7y-supply-in-profit-to-circulating-supply-ratio" | "up-to-7y-75p-price-paid" | "year-2016-value-destroyed" | "block-vbytes-1d-10p" | "fees-in-dollars" | "market-price-to-illiquid-realized-price-ratio-1y-sma-momentum-oscillator" | "from-5y-to-7y-value-destroyed" | "p2pk-15p-price-paid" | "shark-30p-price-paid" | "up-to-4m-cumulative-net-realized-profit-and-loss" | "whale-utxo-count" | "blocks-mined-1y-sum" | "market-price-to-from-7y-to-10y-realized-price-ratio-99-9p" | "block-vbytes-1d-median" | "from-10y-to-15y-net-realized-profit-and-loss-to-market-cap-ratio" | "market-price-to-p2wsh-realized-price-ratio-1w-sma" | "70p-price-paid" | "p2wpkh-supply-in-profit-to-circulating-supply-ratio" | "from-6m-to-1y-supply-in-loss-to-own-supply-ratio" | "market-price-to-year-2010-realized-price-ratio-99p" | "p2sh-30p-price-paid" | "price-8d-sma-99-5p" | "fish-90p-price-paid" | "up-to-1y-realized-price-99-9p" | "market-price-to-from-15y-realized-price-ratio-1y-sma-momentum-oscillator" | "year-2011-utxo-count" | "market-price-to-p2pk-realized-price-ratio-99-9p" | "year-2010-realized-price-1p" | "p2sh-supply-in-profit-to-own-supply-ratio" | "from-7y-to-10y-supply-in-loss" | "fish-spent-output-profit-ratio" | "p2pk-95p-price-paid" | "year-2013-supply-to-circulating-supply-ratio" | "year-2014-value-destroyed" | "up-to-5y-75p-price-paid" | "up-to-5m-realized-profit" | "market-price-to-humpback-realized-price-ratio-0-5p" | "market-price-to-sth-realized-price-ratio-99-9p" | "p2tr-supply-in-profit" | "vaulted-price-99p" | "from-2y-adjusted-value-destroyed" | "from-1d-to-1w-median-price-paid" | "lth-20p-price-paid" | "market-price-to-shrimp-realized-price-ratio-1m-sma" | "shark-cumulative-net-realized-profit-and-loss-1m-net-change" | "year-2016-halved-supply-to-circulating-supply-ratio" | "market-price-to-year-2012-realized-price-ratio-1w-sma" | "year-2011-70p-price-paid" | "market-price-to-up-to-1y-realized-price-ratio-1y-sma-momentum-oscillator" | "up-to-4m-supply-in-loss-to-circulating-supply-ratio" | "lth-realized-price-99p" | "whale-realized-price" | "sth-unrealized-profit" | "highly-liquid-80p-price-paid" | "sth-negative-unrealized-loss" | "year-2020-net-unrealized-profit-and-loss-to-market-cap-ratio" | "year-2022-90p-price-paid" | "from-2y-to-3y-unrealized-profit" | "shrimp-25p-price-paid" | "fish-30p-price-paid" | "from-10y-adjusted-value-destroyed" | "illiquid-75p-price-paid" | "shark-adjusted-value-created" | "market-price-to-price-21d-sma-ratio" | "year-2014-60p-price-paid" | "market-price-to-p2wpkh-realized-price-ratio-1m-sma" | "up-to-1d-realized-cap" | "shark-median-price-paid" | "p2pk-halved-supply-to-circulating-supply-ratio" | "illiquid-95p-price-paid" | "market-price-to-year-2024-realized-price-ratio-0-1p" | "market-price-to-price-1m-sma-ratio-1y-sma-momentum-oscillator" | "year-2009-supply" | "year-2012-cumulative-net-realized-profit-and-loss-1m-net-change" | "from-2y-value-created" | "market-price-to-price-200w-sma-ratio-1p" | "p2pk-cumulative-realized-loss" | "p2wpkh-realized-price-0-5p" | "p2pkh-35p-price-paid" | "shark-supply-in-loss-to-own-supply-ratio" | "market-price-to-vaulted-price-ratio-99p" | "up-to-4m-input-volume" | "whale-net-realized-profit-and-loss" | "from-3y-to-5y-supply-in-profit-to-circulating-supply-ratio" | "from-1y-to-2y-realized-price-99p" | "liquid-realized-price-0-5p" | "p2pk-adjusted-value-created" | "blocks-mined-1w-sum" | "p2wpkh-realized-price-99-9p" | "up-to-1m-cumulative-realized-profit" | "up-to-6m-25p-price-paid" | "year-2017-70p-price-paid" | "p2pk-supply-in-loss" | "year-2011-adjusted-value-created" | "from-15y-unrealized-profit" | "year-2009-cumulative-net-realized-profit-and-loss" | "year-2013-cumulative-net-realized-profit-and-loss-1m-net-change" | "up-to-7y-net-unrealized-profit-and-loss" | "up-to-1y-median-price-paid" | "up-to-3m-realized-price-1p" | "from-1y-80p-price-paid" | "p2sh-realized-price-99-9p" | "up-to-3m-supply-in-profit-to-own-supply-ratio" | "whale-35p-price-paid" | "up-to-1y-65p-price-paid" | "up-to-1d-realized-value" | "liquid-cumulative-realized-profit" | "market-price-to-from-2y-to-3y-realized-price-ratio-99-5p" | "from-1y-unrealized-profit" | "market-price-to-year-2016-realized-price-ratio-1y-sma-momentum-oscillator" | "shark-10p-price-paid" | "year-2013-cumulative-realized-loss" | "plankton-30p-price-paid" | "up-to-4m-80p-price-paid" | "year-2010-input-volume" | "crab-net-unrealized-profit-and-loss-to-market-cap-ratio" | "price-4y-sma-99-5p" | "up-to-3y-negative-unrealized-loss" | "p2tr-realized-price" | "from-10y-unrealized-loss" | "from-1y-realized-price-99-9p" | "lth-realized-value" | "megalodon-input-volume" | "up-to-3y-input-count" | "year-2012-40p-price-paid" | "market-price-to-fish-realized-price-ratio-1y-sma" | "crab-input-count" | "whale-adjusted-spent-output-profit-ratio" | "market-price-to-price-34d-sma-ratio-1y-sma-momentum-oscillator" | "illiquid-utxo-count" | "from-4y-value-created" | "up-to-3y-25p-price-paid" | "year-2015-utxo-count" | "year-2019-input-count" | "up-to-2m-realized-price-99-9p" | "year-2024-45p-price-paid" | "market-price-to-price-13d-sma-ratio-0-5p" | "p2wpkh-net-unrealized-profit-and-loss-to-market-cap-ratio" | "market-price-to-shrimp-realized-price-ratio-0-1p" | "market-price-to-up-to-5y-realized-price-ratio-0-5p" | "up-to-1m-75p-price-paid" | "year-2015-adjusted-value-created" | "from-1d-to-1w-realized-value" | "market-price-to-year-2014-realized-price-ratio-99-9p" | "cointime-cap" | "up-to-1w-adjusted-spent-output-profit-ratio" | "market-price-to-year-2018-realized-price-ratio-1p" | "p2pkh-adjusted-spent-output-profit-ratio" | "year-2021-net-unrealized-profit-and-loss-to-market-cap-ratio" | "first-height" | "crab-supply-in-profit-to-own-supply-ratio" | "sth-supply-in-profit-to-own-supply-ratio" | "year-2009-supply-in-profit" | "from-6m-to-1y-unrealized-loss" | "up-to-2y-supply-in-loss-to-own-supply-ratio" | "year-2017-10p-price-paid" | "from-1y-input-count" | "market-price-to-liquid-realized-price-ratio-1m-sma" | "market-price-to-up-to-6m-realized-price-ratio-1y-sma-momentum-oscillator" | "up-to-1d-45p-price-paid" | "year-2012-halved-supply-to-circulating-supply-ratio" | "year-2013-65p-price-paid" | "market-price-to-lth-realized-price-ratio-99p" | "year-2016-realized-price-0-5p" | "from-3y-to-5y-input-volume" | "market-price-to-up-to-5m-realized-price-ratio" | "market-price-to-year-2016-realized-price-ratio-1y-sma" | "p2wpkh-realized-price-0-1p" | "from-2y-to-3y-80p-price-paid" | "illiquid-net-unrealized-profit-and-loss" | "from-4y-supply-in-loss-to-own-supply-ratio" | "p2tr-25p-price-paid" | "realized-cap-1m-net-change" | "market-price-to-year-2022-realized-price-ratio-1y-sma-momentum-oscillator" | "transactions-per-second-1m-sma" | "market-price-to-year-2014-realized-price-ratio-0-5p" | "up-to-1w-adjusted-value-created" | "up-to-1y-cumulative-realized-profit" | "up-to-3m-net-realized-profit-and-loss" | "up-to-15y-adjusted-value-destroyed" | "up-to-7y-realized-price" | "year-2009-90p-price-paid" | "year-2015-realized-value" | "market-price-to-up-to-15y-realized-price-ratio-1m-sma" | "from-10y-60p-price-paid" | "from-2y-realized-price" | "year-2011-30p-price-paid" | "illiquid-05p-price-paid" | "year-2011-40p-price-paid" | "shrimp-realized-profit" | "liquid-95p-price-paid" | "p2tr-10p-price-paid" | "up-to-3y-15p-price-paid" | "up-to-4m-95p-price-paid" | "year-2015-realized-price" | "shark-45p-price-paid" | "year-2009-realized-price-0-5p" | "from-10y-to-15y-15p-price-paid" | "up-to-5y-realized-price" | "market-price-to-lth-realized-price-ratio-1y-sma" | "market-price-to-up-to-10y-realized-price-ratio-1p" | "year-2018-unrealized-profit" | "year-2021-35p-price-paid" | "up-to-15y-realized-price-0-1p" | "humpback-cumulative-realized-profit" | "illiquid-40p-price-paid" | "year-2022-adjusted-value-destroyed" | "from-1y-to-2y-cumulative-net-realized-profit-and-loss" | "market-price-to-p2sh-realized-price-ratio" | "crab-utxo-count" | "year-2016-realized-price-1p" | "transactions-per-second-1w-sma" | "market-price-to-true-market-mean-ratio-1w-sma" | "up-to-4m-halved-supply-to-circulating-supply-ratio" | "year-2015-value-created" | "market-price-to-from-3y-to-5y-realized-price-ratio" | "from-6m-to-1y-35p-price-paid" | "up-to-2y-20p-price-paid" | "price-8d-sma-1p" | "year-2018-realized-price" | "up-to-1y-supply-in-loss-to-circulating-supply-ratio" | "from-1m-to-3m-realized-price-99-5p" | "market-price-to-price-4y-sma-ratio-99p" | "p2pk-05p-price-paid" | "up-to-6m-supply-to-circulating-supply-ratio" | "up-to-2y-realized-value" | "p2tr-spent-output-profit-ratio" | "up-to-1w-supply-in-profit-to-circulating-supply-ratio" | "from-2y-55p-price-paid" | "from-1m-to-3m-median-price-paid" | "from-1m-to-3m-realized-cap-1m-net-change" | "supply-in-profit-to-own-supply-ratio" | "market-price-to-year-2024-realized-price-ratio-1p" | "year-2018-realized-price-99-5p" | "from-5y-to-7y-realized-price" | "megalodon-median-price-paid" | "up-to-3m-supply-in-loss-to-circulating-supply-ratio" | "up-to-2m-value-created" | "market-price-to-up-to-2y-realized-price-ratio-1y-sma" | "market-price-to-vaulted-price-ratio-1m-sma" | "up-to-5m-net-realized-profit-and-loss-to-market-cap-ratio" | "from-1m-to-3m-utxo-count" | "from-1m-to-3m-cumulative-net-realized-profit-and-loss-1m-net-change" | "market-price-to-year-2020-realized-price-ratio-1w-sma" | "p2pk-supply-in-loss-to-own-supply-ratio" | "up-to-1m-supply-in-loss-to-circulating-supply-ratio" | "from-1y-to-2y-supply-in-profit-to-own-supply-ratio" | "highly-liquid-supply-in-loss-to-circulating-supply-ratio" | "from-2y-to-3y-utxo-count" | "up-to-1y-realized-cap" | "price-8d-sma-99p" | "humpback-25p-price-paid" | "year-2011-realized-price-99-5p" | "up-to-15y-supply-in-profit-to-circulating-supply-ratio" | "from-1w-to-1m-realized-price-1p" | "up-to-6m-value-created" | "megalodon-20p-price-paid" | "up-to-5y-unrealized-profit" | "market-price-to-whale-realized-price-ratio-99-9p" | "from-1d-to-1w-realized-price-99-9p" | "market-price-to-cointime-price-ratio-1m-sma" | "up-to-1y-utxo-count" | "humpback-net-unrealized-profit-and-loss-to-market-cap-ratio" | "up-to-6m-supply-in-loss-to-own-supply-ratio" | "from-1d-to-1w-realized-cap-1m-net-change" | "25p-price-paid" | "from-5y-to-7y-realized-price-1p" | "market-price-to-humpback-realized-price-ratio-1y-sma-momentum-oscillator" | "up-to-1w-adjusted-value-destroyed" | "market-price-to-from-7y-to-10y-realized-price-ratio-1p" | "up-to-15y-adjusted-value-created" | "whale-realized-price-99-5p" | "from-1w-to-1m-65p-price-paid" | "market-price-to-year-2015-realized-price-ratio-99-5p" | "up-to-5y-supply-in-profit-to-own-supply-ratio" | "up-to-2m-70p-price-paid" | "from-2y-to-3y-20p-price-paid" | "market-price-to-from-1y-realized-price-ratio-99-9p" | "market-price-to-year-2014-realized-price-ratio-0-1p" | "market-price-to-year-2015-realized-price-ratio-0-1p" | "market-price-to-year-2017-realized-price-ratio-0-5p" | "fish-sell-side-risk-ratio" | "year-2018-65p-price-paid" | "blocks-mined-1y-target" | "from-1m-to-3m-supply" | "year-2023-supply-in-loss" | "from-5y-to-7y-adjusted-value-created" | "shark-supply-in-loss-to-circulating-supply-ratio" | "from-10y-to-15y-supply-in-loss-to-circulating-supply-ratio" | "market-price-to-from-1w-to-1m-realized-price-ratio-99p" | "year-2016-median-price-paid" | "from-1y-to-2y-supply-in-loss" | "supply-in-loss-to-own-supply-ratio" | "year-2021-85p-price-paid" | "year-2019-45p-price-paid" | "year-2023-05p-price-paid" | "from-2y-to-3y-supply-in-loss-to-own-supply-ratio" | "from-6m-to-1y-65p-price-paid" | "year-2023-supply-in-loss-to-circulating-supply-ratio" | "year-2024-supply-in-profit" | "up-to-1m-adjusted-value-destroyed" | "vaulted-price-0-1p" | "market-price-to-year-2012-realized-price-ratio-0-5p" | "fish-realized-cap-1m-net-change" | "p2pk-sell-side-risk-ratio" | "p2pkh-negative-unrealized-loss" | "from-10y-to-15y-halved-supply-to-circulating-supply-ratio" | "shrimp-30p-price-paid" | "shark-realized-price-0-1p" | "year-2020-supply-to-circulating-supply-ratio" | "from-1m-to-3m-60p-price-paid" | "market-price-to-price-1m-sma-ratio-1y-sma" | "cointime-value-created" | "from-4y-utxo-count" | "market-price-to-price-1y-sma-ratio-0-1p" | "up-to-5m-negative-realized-loss" | "liquid-realized-cap-1m-net-change" | "up-to-1d-net-unrealized-profit-and-loss" | "up-to-7y-realized-cap" | "market-price-to-p2tr-realized-price-ratio-1y-sma-momentum-oscillator" | "year-2015-realized-price-0-5p" | "year-2023-utxo-count" | "from-1w-to-1m-55p-price-paid" | "p2wpkh-cumulative-realized-profit" | "realized-price-99p" | "up-to-2y-75p-price-paid" | "year-2015-25p-price-paid" | "from-5y-to-7y-net-unrealized-profit-and-loss" | "price-6y-total-return" | "p2pk-realized-cap-1m-net-change" | "up-to-1m-realized-price-1p" | "from-15y-sell-side-risk-ratio" | "up-to-5m-adjusted-spent-output-profit-ratio" | "year-2013-realized-cap" | "p2sh-85p-price-paid" | "highly-liquid-60p-price-paid" | "up-to-1d-supply-in-loss-to-circulating-supply-ratio" | "up-to-15y-supply-in-loss-to-own-supply-ratio" | "p2pkh-30p-price-paid" | "up-to-7y-unrealized-profit" | "p2sh-65p-price-paid" | "market-price-to-year-2013-realized-price-ratio-1p" | "cointime-price-1p" | "year-2022-realized-price-0-5p" | "year-2024-cumulative-net-realized-profit-and-loss" | "price-1m-sma-0-1p" | "up-to-2y-value-created" | "market-price-to-from-10y-realized-price-ratio-99-9p" | "up-to-3y-realized-price-0-1p" | "illiquid-unrealized-loss" | "year-2009-05p-price-paid" | "market-price-to-fish-realized-price-ratio-1m-sma" | "up-to-15y-halved-supply-to-circulating-supply-ratio" | "up-to-2y-unrealized-profit" | "value-destroyed" | "year-2013-net-unrealized-profit-and-loss-to-market-cap-ratio" | "market-price-to-year-2023-realized-price-ratio-0-5p" | "year-2022-cumulative-realized-profit" | "market-price-to-p2pkh-realized-price-ratio-99-5p" | "from-4y-realized-price" | "year-2010-75p-price-paid" | "from-1y-to-2y-unrealized-profit" | "up-to-5y-70p-price-paid" | "from-1w-to-1m-utxo-count" | "market-price-to-up-to-15y-realized-price-ratio-0-1p" | "realized-profit" | "crab-80p-price-paid" | "year-2017-value-destroyed" | "price-89d-sma-99-5p" | "fish-median-price-paid" | "up-to-1d-realized-price-0-1p" | "year-2011-net-realized-profit-and-loss-to-market-cap-ratio" | "year-2019-adjusted-value-created" | "from-7y-to-10y-15p-price-paid" | "up-to-3y-adjusted-value-destroyed" | "p2wsh-input-count" | "whale-cumulative-realized-loss" | "market-price-to-price-21d-sma-ratio-0-5p" | "market-price-to-year-2011-realized-price-ratio-0-1p" | "up-to-1y-supply-in-profit-to-own-supply-ratio" | "year-2018-negative-realized-loss" | "from-3m-to-6m-75p-price-paid" | "up-to-1m-realized-profit" | "year-2019-realized-price-1p" | "market-price-to-price-200w-sma-ratio-1y-sma" | "from-10y-65p-price-paid" | "p2sh-realized-price-1p" | "up-to-5m-supply-in-profit-to-circulating-supply-ratio" | "from-7y-to-10y-25p-price-paid" | "highly-liquid-90p-price-paid" | "p2wpkh-supply" | "illiquid-realized-cap" | "lth-70p-price-paid" | "up-to-5y-input-volume" | "up-to-5m-supply-in-profit-to-own-supply-ratio" | "year-2015-realized-loss" | "up-to-6m-net-realized-profit-and-loss" | "year-2016-net-unrealized-profit-and-loss" | "highly-liquid-45p-price-paid" | "year-2017-realized-price" | "market-price-to-from-5y-to-7y-realized-price-ratio-0-1p" | "from-3y-to-5y-cumulative-net-realized-profit-and-loss-1m-net-change" | "p2sh-realized-loss" | "from-15y-05p-price-paid" | "from-3m-to-6m-70p-price-paid" | "humpback-15p-price-paid" | "year-2017-supply-in-profit" | "year-2015-35p-price-paid" | "market-price-to-price-21d-sma-ratio-99-5p" | "from-10y-realized-loss" | "humpback-30p-price-paid" | "year-2012-60p-price-paid" | "from-2y-to-3y-realized-price-0-5p" | "from-1d-to-1w-net-realized-profit-and-loss-to-market-cap-ratio" | "lth-40p-price-paid" | "year-2014-75p-price-paid" | "year-2017-unrealized-loss" | "market-price-to-from-6m-to-1y-realized-price-ratio-1y-sma-momentum-oscillator" | "block-vbytes-1d-max" | "from-15y-value-created" | "year-2020-realized-price-1p" | "liquid-cumulative-realized-loss" | "up-to-15y-realized-value" | "p2tr-55p-price-paid" | "from-1y-25p-price-paid" | "from-1m-to-3m-input-volume" | "shrimp-85p-price-paid" | "active-price-99-5p" | "year-2018-cumulative-realized-profit" | "up-to-1d-realized-price-99-5p" | "year-2014-adjusted-spent-output-profit-ratio" | "up-to-1w-unrealized-loss" | "from-5y-to-7y-10p-price-paid" | "market-price-to-year-2009-realized-price-ratio-1m-sma" | "market-price-to-year-2018-realized-price-ratio-1w-sma" | "up-to-1w-65p-price-paid" | "market-price-to-price-4y-sma-ratio-99-5p" | "illiquid-realized-price" | "up-to-4m-net-realized-profit-and-loss-to-market-cap-ratio" | "up-to-15y-20p-price-paid" | "up-to-2y-cumulative-realized-loss" | "humpback-supply-in-loss" | "from-1y-value-created" | "up-to-2m-90p-price-paid" | "fish-realized-price-99-5p" | "p2wpkh-adjusted-value-destroyed" | "market-price-to-vaulted-price-ratio-1w-sma" | "market-price-to-year-2024-realized-price-ratio-1y-sma-momentum-oscillator" | "market-price-to-price-13d-sma-ratio-0-1p" | "up-to-7y-adjusted-value-created" | "sth-realized-value" | "from-1y-75p-price-paid" | "price-4y-total-return" | "year-2021-input-count" | "market-price-to-p2wsh-realized-price-ratio-99-9p" | "from-3m-to-6m-median-price-paid" | "year-2009-realized-price-0-1p" | "humpback-realized-loss" | "year-2019-sell-side-risk-ratio" | "year-2010-sell-side-risk-ratio" | "year-2022-adjusted-value-created" | "up-to-7y-net-realized-profit-and-loss" | "liquid-utxo-count" | "from-3y-to-5y-value-created" | "p2sh-45p-price-paid" | "p2sh-cumulative-net-realized-profit-and-loss-1m-net-change" | "year-2011-cumulative-net-realized-profit-and-loss" | "year-2023-cumulative-net-realized-profit-and-loss-1m-net-change" | "from-1m-to-3m-25p-price-paid" | "whale-sell-side-risk-ratio" | "crab-input-volume" | "from-5y-to-7y-35p-price-paid" | "year-2013-net-unrealized-profit-and-loss" | "year-2016-net-realized-profit-and-loss" | "shark-input-volume" | "up-to-1w-cumulative-realized-profit" | "market-price-to-price-200w-sma-ratio-0-1p" | "fish-45p-price-paid" | "from-1d-to-1w-halved-supply" | "p2pk-net-realized-profit-and-loss-to-market-cap-ratio" | "from-3y-to-5y-net-realized-profit-and-loss" | "up-to-2y-40p-price-paid" | "p2tr-80p-price-paid" | "market-price-to-up-to-5m-realized-price-ratio-99-5p" | "up-to-15y-realized-price" | "plankton-realized-price-99p" | "up-to-2m-realized-loss" | "liquid-net-realized-profit-and-loss" | "from-10y-value-created" | "market-price-to-up-to-1y-realized-price-ratio-0-1p" | "market-price-to-up-to-1w-realized-price-ratio-99-5p" | "plankton-realized-price-99-9p" | "year-2021-75p-price-paid" | "up-to-15y-negative-realized-loss" | "from-10y-input-volume" | "market-price-to-sth-realized-price-ratio-1m-sma" | "whale-realized-cap" | "market-price-to-crab-realized-price-ratio" | "crab-75p-price-paid" | "highly-liquid-realized-price-0-5p" | "illiquid-supply-in-profit-to-circulating-supply-ratio" | "from-5y-to-7y-supply-in-profit-to-own-supply-ratio" | "shrimp-cumulative-net-realized-profit-and-loss-1m-net-change" | "up-to-15y-cumulative-net-realized-profit-and-loss-1m-net-change" | "up-to-15y-supply-in-loss-to-circulating-supply-ratio" | "up-to-3m-75p-price-paid" | "up-to-6m-10p-price-paid" | "year-2021-realized-price" | "year-2024-80p-price-paid" | "market-price-to-all-time-high-ratio" | "supply-in-loss" | "market-price-to-up-to-1m-realized-price-ratio-0-5p" | "from-15y-65p-price-paid" | "plankton-60p-price-paid" | "market-price-to-from-3m-to-6m-realized-price-ratio-99p" | "p2wsh-cumulative-net-realized-profit-and-loss-1m-net-change" | "up-to-10y-supply-in-profit" | "up-to-2m-supply-in-loss-to-circulating-supply-ratio" | "year-2015-supply" | "year-2020-spent-output-profit-ratio" | "highly-liquid-halved-supply-to-circulating-supply-ratio" | "up-to-5y-realized-price-99-5p" | "whale-adjusted-value-destroyed" | "illiquid-net-realized-profit-and-loss-to-market-cap-ratio" | "market-price-to-up-to-1m-realized-price-ratio-99-5p" | "year-2015-supply-in-loss" | "p2wpkh-negative-realized-loss" | "market-price-to-from-1y-to-2y-realized-price-ratio-99p" | "up-to-3y-60p-price-paid" | "market-price-to-year-2011-realized-price-ratio" | "year-2023-net-unrealized-profit-and-loss" | "lth-unrealized-profit" | "market-price-to-from-2y-realized-price-ratio-0-1p" | "up-to-1w-sell-side-risk-ratio" | "up-to-5y-realized-value" | "from-2y-to-3y-negative-unrealized-loss" | "up-to-7y-45p-price-paid" | "market-price-to-shark-realized-price-ratio-1p" | "megalodon-net-unrealized-profit-and-loss-to-market-cap-ratio" | "p2wsh-15p-price-paid" | "year-2016-70p-price-paid" | "year-2021-supply-in-loss-to-own-supply-ratio" | "from-1y-to-2y-halved-supply" | "from-2y-realized-profit" | "up-to-3y-supply-in-profit" | "from-1m-to-3m-cumulative-realized-loss" | "year-2024-realized-price-99-5p" | "up-to-1d-supply-in-loss-to-own-supply-ratio" | "from-1m-to-3m-80p-price-paid" | "from-4y-05p-price-paid" | "market-price-to-p2sh-realized-price-ratio-1m-sma" | "up-to-7y-realized-value" | "year-2013-90p-price-paid" | "price-21d-sma-99-9p" | "sth-80p-price-paid" | "sth-60p-price-paid" | "up-to-5m-cumulative-net-realized-profit-and-loss-1m-net-change" | "year-2012-realized-price-1p" | "p2pk-65p-price-paid" | "year-2009-75p-price-paid" | "year-2011-realized-cap-1m-net-change" | "year-2016-realized-price-99-5p" | "from-1d-to-1w-realized-cap" | "lth-10p-price-paid" | "from-6m-to-1y-realized-price-1p" | "from-4y-15p-price-paid" | "year-2018-supply-in-profit-to-own-supply-ratio" | "up-to-1y-net-unrealized-profit-and-loss" | "year-2024-cumulative-net-realized-profit-and-loss-1m-net-change" | "market-price-to-price-34d-sma-ratio-1y-sma" | "from-10y-to-15y-spent-output-profit-ratio" | "year-2022-supply-in-profit-to-own-supply-ratio" | "year-2022-value-created" | "lth-supply-to-circulating-supply-ratio" | "p2wpkh-80p-price-paid" | "shark-supply-in-profit" | "megalodon-realized-price-0-1p" | "block-size-1d-10p" | "up-to-4m-realized-price" | "p2wpkh-65p-price-paid" | "from-1w-to-1m-45p-price-paid" | "humpback-input-count" | "from-1y-to-2y-75p-price-paid" | "last-coinbase-in-dollars" | "up-to-1d-adjusted-spent-output-profit-ratio" | "humpback-supply" | "from-1d-to-1w-net-unrealized-profit-and-loss-to-market-cap-ratio" | "illiquid-realized-price-1p" | "p2sh-realized-price-99-5p" | "up-to-1m-spent-output-profit-ratio" | "from-2y-to-3y-halved-supply-to-circulating-supply-ratio" | "from-6m-to-1y-realized-price-99-9p" | "up-to-1y-realized-price-1p" | "market-price-to-from-1y-realized-price-ratio" | "market-price-to-year-2022-realized-price-ratio-0-1p" | "fish-realized-price-99-9p" | "from-1m-to-3m-realized-value" | "up-to-10y-input-count" | "from-10y-to-15y-realized-price-99-5p" | "from-2y-to-3y-45p-price-paid" | "from-7y-to-10y-realized-profit" | "vaulted-price" | "from-3y-to-5y-input-count" | "market-price-to-from-1y-to-2y-realized-price-ratio-0-5p" | "up-to-5y-20p-price-paid" | "year-2012-15p-price-paid" | "year-2012-supply-in-profit" | "year-2021-70p-price-paid" | "market-price-to-price-13d-sma-ratio-99-9p" | "year-2023-sell-side-risk-ratio" | "year-2017-negative-realized-loss" | "market-price-to-year-2024-realized-price-ratio-99-9p" | "from-15y-cumulative-realized-loss" | "year-2018-utxo-count" | "lth-realized-price" | "up-to-3m-realized-value" | "15p-price-paid" | "market-price-to-illiquid-realized-price-ratio-1y-sma" | "p2pkh-value-destroyed" | "whale-85p-price-paid" | "from-1y-to-2y-45p-price-paid" | "market-price-to-year-2012-realized-price-ratio-99p" | "whale-negative-unrealized-loss" | "year-2012-spent-output-profit-ratio" | "from-1y-to-2y-85p-price-paid" | "from-4y-adjusted-value-destroyed" | "p2pk-negative-realized-loss" | "market-price-to-price-4y-sma-ratio-0-1p" | "up-to-1w-value-created" | "year-2022-supply-to-circulating-supply-ratio" | "year-2016-realized-profit" | "year-2011-45p-price-paid" | "from-2y-supply-to-circulating-supply-ratio" | "up-to-15y-value-destroyed" | "p2pkh-unrealized-loss" | "from-10y-to-15y-realized-price-99-9p" | "crab-30p-price-paid" | "market-price-to-up-to-10y-realized-price-ratio" | "year-2023-25p-price-paid" | "market-price-to-up-to-6m-realized-price-ratio-1y-sma" | "humpback-realized-value" | "p2pk-35p-price-paid" | "price-200w-sma-99p" | "up-to-10y-supply-in-loss-to-own-supply-ratio" | "up-to-1m-unrealized-loss" | "year-2017-65p-price-paid" | "from-1y-to-2y-realized-price-99-5p" | "plankton-halved-supply-to-circulating-supply-ratio" | "from-3m-to-6m-cumulative-net-realized-profit-and-loss" | "up-to-1y-85p-price-paid" | "market-price-to-p2pkh-realized-price-ratio-99p" | "up-to-2m-realized-price-1p" | "whale-realized-price-0-5p" | "from-5y-to-7y-supply" | "market-price-to-from-3m-to-6m-realized-price-ratio-0-5p" | "year-2009-70p-price-paid" | "year-2021-value-created" | "cointime-adjusted-velocity" | "lth-supply-in-profit" | "market-price-to-year-2009-realized-price-ratio-1y-sma-momentum-oscillator" | "price-13d-sma-0-5p" | "p2wpkh-30p-price-paid" | "from-1y-05p-price-paid" | "up-to-3m-15p-price-paid" | "liquid-85p-price-paid" | "year-2010-value-destroyed" | "year-2016-supply-in-loss-to-circulating-supply-ratio" | "from-7y-to-10y-adjusted-spent-output-profit-ratio" | "lth-negative-realized-loss" | "up-to-3y-net-realized-profit-and-loss" | "year-2021-supply-to-circulating-supply-ratio" | "highly-liquid-cumulative-net-realized-profit-and-loss" | "from-7y-to-10y-40p-price-paid" | "market-price-to-fish-realized-price-ratio" | "market-price-to-vaulted-price-ratio-1y-sma" | "p2pkh-95p-price-paid" | "shrimp-cumulative-realized-loss" | "fish-realized-price-99p" | "market-price-to-up-to-6m-realized-price-ratio-1p" | "illiquid-realized-price-99-9p" | "realized-price-0-5p" | "year-2024-realized-price-99-9p" | "from-10y-realized-price" | "sth-input-volume" | "cumulative-subsidy" | "liveliness-net-change-2w-median" | "market-price-to-price-89d-sma-ratio-99-9p" | "megalodon-realized-value" | "from-1w-to-1m-unrealized-profit" | "p2pkh-input-count" | "from-15y-supply-in-profit-to-circulating-supply-ratio" | "active-price-0-1p" | "liquid-spent-output-profit-ratio" | "market-price-to-price-2y-sma-ratio-1m-sma" | "price-55d-sma-99-5p" | "up-to-1w-55p-price-paid" | "up-to-15y-15p-price-paid" | "up-to-7y-halved-supply" | "market-price-to-highly-liquid-realized-price-ratio-1m-sma" | "up-to-6m-supply-in-loss" | "year-2014-halved-supply" | "year-2023-75p-price-paid" | "market-price-to-active-price-ratio-99-5p" | "market-price-to-price-21d-sma-ratio-1y-sma" | "sth-adjusted-spent-output-profit-ratio" | "market-price-to-up-to-1d-realized-price-ratio-99-5p" | "market-price-to-from-3m-to-6m-realized-price-ratio-1w-sma" | "market-price-to-from-1y-to-2y-realized-price-ratio-0-1p" | "up-to-5y-realized-loss" | "up-to-7y-cumulative-realized-profit" | "from-6m-to-1y-95p-price-paid" | "from-5y-to-7y-input-volume" | "year-2021-supply-in-profit" | "market-price-to-year-2019-realized-price-ratio-1w-sma" | "sth-realized-cap-1m-net-change" | "up-to-1w-15p-price-paid" | "year-2014-supply" | "shark-net-unrealized-profit-and-loss-to-market-cap-ratio" | "up-to-1m-halved-supply-to-circulating-supply-ratio" | "from-1d-to-1w-cumulative-net-realized-profit-and-loss-1m-net-change" | "market-price-to-year-2015-realized-price-ratio" | "from-3m-to-6m-supply-in-profit-to-circulating-supply-ratio" | "p2tr-35p-price-paid" | "up-to-1y-adjusted-value-destroyed" | "up-to-7y-value-created" | "market-price-to-true-market-mean-ratio" | "year-2009-spent-output-profit-ratio" | "year-2013-value-created" | "from-7y-to-10y-realized-price-0-1p" | "year-2024-unrealized-profit" | "from-2y-realized-price-99-5p" | "from-1y-realized-price" | "highly-liquid-supply-in-profit-to-circulating-supply-ratio" | "new-addresses" | "plankton-input-count" | "from-7y-to-10y-value-created" | "year-2013-45p-price-paid" | "plankton-utxo-count" | "p2sh-sell-side-risk-ratio" | "year-2011-input-count" | "year-2017-55p-price-paid" | "year-2018-35p-price-paid" | "megalodon-95p-price-paid" | "true-market-deviation" | "year-2023-20p-price-paid" | "p2wpkh-20p-price-paid" | "sats-per-dollar" | "highly-liquid-75p-price-paid" | "year-2019-cumulative-net-realized-profit-and-loss" | "up-to-3y-supply-to-circulating-supply-ratio" | "from-15y-unrealized-loss" | "from-2y-to-3y-value-destroyed" | "market-price-to-price-1w-sma-ratio-99p" | "year-2020-net-realized-profit-and-loss-to-market-cap-ratio" | "from-7y-to-10y-realized-cap" | "market-price-to-liquid-realized-price-ratio-99-9p" | "up-to-1d-80p-price-paid" | "year-2012-realized-loss" | "market-price-to-sth-realized-price-ratio-0-5p" | "price-1w-sma-99-9p" | "from-3m-to-6m-cumulative-realized-profit" | "up-to-1d-cumulative-net-realized-profit-and-loss" | "lth-cumulative-net-realized-profit-and-loss" | "year-2020-sell-side-risk-ratio" | "market-price-to-fish-realized-price-ratio-1y-sma-momentum-oscillator" | "price-55d-sma-0-1p" | "sth-supply-in-loss" | "from-1y-to-2y-10p-price-paid" | "from-1d-to-1w-realized-price-99-5p" | "unrealized-profit" | "market-price-to-year-2010-realized-price-ratio" | "price-144d-sma-0-1p" | "p2wpkh-halved-supply" | "from-6m-to-1y-05p-price-paid" | "from-6m-to-1y-net-realized-profit-and-loss-to-market-cap-ratio" | "year-2012-35p-price-paid" | "crab-cumulative-realized-loss" | "market-price-to-highly-liquid-realized-price-ratio-99p" | "highly-liquid-address-count" | "market-price-to-from-4y-realized-price-ratio" | "up-to-2m-halved-supply-to-circulating-supply-ratio" | "year-2019-65p-price-paid" | "market-price-to-from-1d-to-1w-realized-price-ratio-1p" | "shrimp-cumulative-net-realized-profit-and-loss" | "p2sh-supply-in-loss-to-own-supply-ratio" | "up-to-5m-net-realized-profit-and-loss" | "market-price-to-up-to-7y-realized-price-ratio-1y-sma-momentum-oscillator" | "market-price-to-up-to-5m-realized-price-ratio-1w-sma" | "from-3y-to-5y-cumulative-net-realized-profit-and-loss" | "market-price-to-year-2014-realized-price-ratio" | "year-2009-10p-price-paid" | "from-1w-to-1m-unrealized-loss" | "from-2y-supply" | "year-2012-75p-price-paid" | "year-2014-65p-price-paid" | "shrimp-utxo-count" | "highly-liquid-realized-price-99p" | "lth-sell-side-risk-ratio" | "up-to-4m-negative-realized-loss" | "market-price-to-from-10y-to-15y-realized-price-ratio" | "market-price-to-year-2020-realized-price-ratio-0-1p" | "up-to-1y-45p-price-paid" | "up-to-6m-realized-price-99p" | "year-2013-realized-price-0-1p" | "p2wsh-realized-price-1p" | "up-to-6m-60p-price-paid" | "year-2017-realized-price-0-5p" | "up-to-6m-realized-profit" | "market-price-to-year-2023-realized-price-ratio-99-5p" | "coinbase-in-dollars-1y-sma" | "year-2010-realized-price-99p" | "year-2012-negative-realized-loss" | "p2pk-realized-cap" | "year-2020-unrealized-profit" | "year-2020-75p-price-paid" | "market-price-to-p2pkh-realized-price-ratio-1w-sma" | "year-2014-realized-cap" | "from-1y-to-2y-median-price-paid" | "from-5y-to-7y-unrealized-profit" | "market-price-to-up-to-5y-realized-price-ratio-1y-sma-momentum-oscillator" | "year-2017-60p-price-paid" | "p2tr-cumulative-realized-loss" | "market-price-to-from-3y-to-5y-realized-price-ratio-1y-sma" | "illiquid-25p-price-paid" | "market-price-to-price-4y-sma-ratio-1m-sma" | "from-1w-to-1m-adjusted-value-destroyed" | "market-price-to-sth-realized-price-ratio-1w-sma" | "market-price-to-humpback-realized-price-ratio" | "from-6m-to-1y-negative-realized-loss" | "supply-in-loss-to-circulating-supply-ratio" | "from-1m-to-3m-realized-cap" | "market-price-to-shark-realized-price-ratio-1m-sma" | "market-price-to-fish-realized-price-ratio-1p" | "price-1w-sma-99p" | "up-to-1d-halved-supply-to-circulating-supply-ratio" | "year-2016-90p-price-paid" | "illiquid-adjusted-value-destroyed" | "up-to-10y-unrealized-loss" | "up-to-1w-30p-price-paid" | "from-6m-to-1y-supply" | "shark-90p-price-paid" | "up-to-4m-realized-profit" | "market-price-to-plankton-realized-price-ratio-99-9p" | "from-1d-to-1w-15p-price-paid" | "market-price-to-price-144d-sma-ratio-1m-sma" | "up-to-4m-65p-price-paid" | "year-2016-net-realized-profit-and-loss-to-market-cap-ratio" | "from-3y-to-5y-40p-price-paid" | "market-price-to-from-10y-realized-price-ratio-0-1p" | "lth-30p-price-paid" | "lth-value-created" | "up-to-1w-realized-cap" | "p2pk-cumulative-net-realized-profit-and-loss" | "from-4y-value-destroyed" | "from-6m-to-1y-utxo-count" | "market-price-to-from-1w-to-1m-realized-price-ratio-99-5p" | "up-to-1m-value-destroyed" | "up-to-2y-realized-price-99-5p" | "year-2009-15p-price-paid" | "year-2018-net-unrealized-profit-and-loss-to-market-cap-ratio" | "market-price-to-up-to-3y-realized-price-ratio-99-9p" | "market-price-to-year-2009-realized-price-ratio" | "year-2017-supply-in-profit-to-circulating-supply-ratio" | "liquid-net-realized-profit-and-loss-to-market-cap-ratio" | "up-to-15y-75p-price-paid" | "up-to-2y-halved-supply" | "year-2016-35p-price-paid" | "market-price-to-year-2021-realized-price-ratio-0-1p" | "from-10y-realized-value" | "shrimp-supply-in-profit-to-own-supply-ratio" | "sth-utxo-count" | "up-to-10y-85p-price-paid" | "market-price-to-from-1d-to-1w-realized-price-ratio-1y-sma" | "up-to-7y-supply-in-profit" | "up-to-5y-negative-realized-loss" | "market-price-to-year-2017-realized-price-ratio-0-1p" | "cointime-price-99-5p" | "market-price-to-liquid-realized-price-ratio-1y-sma" | "shrimp-40p-price-paid" | "whale-input-volume" | "year-2024-input-volume" | "year-2024-85p-price-paid" | "from-1m-to-3m-realized-price-99p" | "from-1m-to-3m-30p-price-paid" | "p2pk-address-count" | "year-2016-supply-in-profit-to-circulating-supply-ratio" | "from-1y-negative-unrealized-loss" | "shark-65p-price-paid" | "year-2016-negative-realized-loss" | "price-34d-sma-0-5p" | "active-supply-3m-net-change" | "price-55d-sma-0-5p" | "from-5y-to-7y-45p-price-paid" | "market-price-to-year-2012-realized-price-ratio-1m-sma" | "from-4y-cumulative-realized-profit" | "plankton-input-volume" | "up-to-4m-median-price-paid" | "year-2016-unrealized-loss" | "up-to-3m-realized-cap" | "year-2018-adjusted-value-created" | "market-price-to-price-2y-sma-ratio-1w-sma" | "price-13d-sma-99p" | "from-1w-to-1m-cumulative-net-realized-profit-and-loss-1m-net-change" | "whale-10p-price-paid" | "market-price-to-whale-realized-price-ratio-99p" | "crab-95p-price-paid" | "market-price-to-year-2010-realized-price-ratio-0-1p" | "humpback-40p-price-paid" | "megalodon-sell-side-risk-ratio" | "up-to-5m-cumulative-realized-loss" | "year-2017-80p-price-paid" | "market-price-to-year-2014-realized-price-ratio-1m-sma" | "price-13d-sma-1p" | "market-price-to-active-price-ratio-0-1p" | "market-price-to-from-2y-to-3y-realized-price-ratio-0-5p" | "from-1y-to-2y-net-realized-profit-and-loss-to-market-cap-ratio" | "up-to-10y-supply-in-profit-to-own-supply-ratio" | "year-2019-55p-price-paid" | "year-2009-unrealized-profit" | "year-2024-15p-price-paid" | "fees-to-coinbase-ratio" | "from-15y-75p-price-paid" | "from-10y-to-15y-negative-unrealized-loss" | "from-3y-to-5y-value-destroyed" | "from-4y-negative-unrealized-loss" | "market-price-to-up-to-4m-realized-price-ratio-1p" | "megalodon-cumulative-net-realized-profit-and-loss-1m-net-change" | "up-to-3y-85p-price-paid" | "liquid-value-created" | "up-to-15y-realized-loss" | "market-price-to-from-6m-to-1y-realized-price-ratio-1w-sma" | "year-2020-realized-price-0-1p" | "from-4y-20p-price-paid" | "year-2021-sell-side-risk-ratio" | "from-3m-to-6m-net-unrealized-profit-and-loss-to-market-cap-ratio" | "market-price-to-liquid-realized-price-ratio-1p" | "true-market-mean-0-1p" | "up-to-2y-cumulative-net-realized-profit-and-loss" | "from-3m-to-6m-realized-profit" | "up-to-1y-supply-in-profit" | "last-fees" | "up-to-2m-cumulative-net-realized-profit-and-loss-1m-net-change" | "year-2015-10p-price-paid" | "up-to-2m-85p-price-paid" | "market-price-to-price-1w-sma-ratio-1y-sma-momentum-oscillator" | "up-to-2y-85p-price-paid" | "market-price-to-up-to-1d-realized-price-ratio-1p" | "price-4y-sma-99p" | "price-8d-sma-99-9p" | "up-to-2m-realized-price-0-5p" | "fish-80p-price-paid" | "market-price-to-up-to-1m-realized-price-ratio-99p" | "crab-10p-price-paid" | "illiquid-input-volume" | "p2pk-unrealized-loss" | "from-6m-to-1y-30p-price-paid" | "market-price-to-highly-liquid-realized-price-ratio-1p" | "megalodon-55p-price-paid" | "from-1w-to-1m-net-unrealized-profit-and-loss-to-market-cap-ratio" | "shrimp-spent-output-profit-ratio" | "from-2y-supply-in-loss-to-own-supply-ratio" | "market-price-to-from-10y-realized-price-ratio-1w-sma" | "p2tr-60p-price-paid" | "year-2012-20p-price-paid" | "year-2009-realized-loss" | "year-2012-80p-price-paid" | "p2tr-70p-price-paid" | "market-price-to-realized-price-ratio-1p" | "up-to-1m-realized-price-99p" | "thermo-cap-to-investor-cap-ratio" | "market-price-to-up-to-3m-realized-price-ratio" | "p2wpkh-value-created" | "market-price-to-p2pkh-realized-price-ratio-1y-sma" | "up-to-1y-cumulative-realized-loss" | "from-1m-to-3m-05p-price-paid" | "up-to-10y-35p-price-paid" | "p2pkh-supply-in-profit-to-circulating-supply-ratio" | "illiquid-supply-in-profit-to-own-supply-ratio" | "block-vbytes-1d-75p" | "market-price-to-active-price-ratio-1w-sma" | "market-price-to-from-3y-to-5y-realized-price-ratio-1m-sma" | "up-to-1y-realized-loss" | "up-to-3m-supply-in-profit-to-circulating-supply-ratio" | "up-to-5m-realized-cap-1m-net-change" | "market-price-to-price-89d-sma-ratio-99-5p" | "market-price-to-price-1y-sma-ratio-1m-sma" | "from-3y-to-5y-supply-in-profit" | "from-15y-median-price-paid" | "year-2020-25p-price-paid" | "from-2y-net-realized-profit-and-loss-to-market-cap-ratio" | "up-to-2m-40p-price-paid" | "year-2015-unrealized-loss" | "market-price-to-price-2y-sma-ratio-1y-sma" | "market-price-to-up-to-1y-realized-price-ratio-1y-sma" | "year-2012-input-count" | "year-2015-realized-profit" | "year-2019-adjusted-spent-output-profit-ratio" | "market-price-to-year-2016-realized-price-ratio-0-5p" | "price-1m-sma-1p" | "up-to-6m-90p-price-paid" | "year-2010-supply" | "up-to-1m-realized-price-99-9p" | "blocks-mined" | "year-2015-supply-to-circulating-supply-ratio" | "up-to-6m-input-volume" | "up-to-6m-utxo-count" | "market-price-to-price-13d-sma-ratio" | "up-to-6m-95p-price-paid" | "block-size-1d-average" | "market-price-to-up-to-2y-realized-price-ratio-0-1p" | "from-2y-halved-supply-to-circulating-supply-ratio" | "year-2023-value-created" | "from-1m-to-3m-supply-in-loss" | "from-1y-realized-profit" | "market-price-to-shrimp-realized-price-ratio-1y-sma-momentum-oscillator" | "market-price-to-price-8d-sma-ratio-99p" | "up-to-2m-utxo-count" | "from-7y-to-10y-realized-price-0-5p" | "market-price-to-year-2023-realized-price-ratio" | "from-3m-to-6m-unrealized-profit" | "from-1w-to-1m-spent-output-profit-ratio" | "market-price-to-year-2009-realized-price-ratio-1y-sma" | "from-2y-adjusted-value-created" | "from-4y-supply-in-profit" | "up-to-1d-realized-loss" | "annualized-transaction-volume-in-dollars" | "market-price-to-price-13d-sma-ratio-1w-sma" | "year-2016-45p-price-paid" | "market-price-to-liquid-realized-price-ratio-99p" | "up-to-1w-realized-value" | "p2pkh-supply-in-loss-to-own-supply-ratio" | "market-price-to-crab-realized-price-ratio-99-5p" | "from-1d-to-1w-40p-price-paid" | "up-to-10y-10p-price-paid" | "p2sh-net-realized-profit-and-loss" | "p2tr-supply-in-loss-to-circulating-supply-ratio" | "up-to-4m-adjusted-value-created" | "up-to-1m-unrealized-profit" | "vaulted-cap" | "price-1w-sma-0-1p" | "p2tr-realized-price-99p" | "from-3m-to-6m-realized-value" | "up-to-5y-cumulative-realized-loss" | "market-price-to-vaulted-price-ratio-0-1p" | "block-weight-1d-10p" | "liquid-net-unrealized-profit-and-loss" | "market-price-to-up-to-1m-realized-price-ratio-1y-sma-momentum-oscillator" | "market-price-to-year-2013-realized-price-ratio-1w-sma" | "market-price-to-up-to-6m-realized-price-ratio-99-9p" | "market-price-to-from-1y-to-2y-realized-price-ratio-1y-sma-momentum-oscillator" | "year-2020-input-volume" | "from-3y-to-5y-20p-price-paid" | "highly-liquid-realized-value" | "p2wsh-05p-price-paid" | "subsidy-in-dollars" | "p2wpkh-realized-price-1p" | "market-price-to-humpback-realized-price-ratio-1p" | "market-price-to-year-2012-realized-price-ratio-1y-sma-momentum-oscillator" | "p2tr-value-destroyed" | "plankton-net-realized-profit-and-loss" | "year-2024-realized-price-0-5p" | "year-2015-median-price-paid" | "from-5y-to-7y-unrealized-loss" | "illiquid-realized-price-0-1p" | "vaulted-supply-net-change" | "p2sh-input-count" | "up-to-5y-median-price-paid" | "p2tr-realized-cap" | "year-2018-realized-value" | "year-2009-net-realized-profit-and-loss" | "year-2019-30p-price-paid" | "from-4y-cumulative-realized-loss" | "highly-liquid-realized-cap-1m-net-change" | "market-price-to-price-34d-sma-ratio-99p" | "crab-sell-side-risk-ratio" | "p2sh-70p-price-paid" | "35p-price-paid" | "realized-price-99-9p" | "year-2015-adjusted-value-destroyed" | "from-3m-to-6m-95p-price-paid" | "coinblocks-created" | "market-price-to-from-2y-realized-price-ratio-99-5p" | "plankton-spent-output-profit-ratio" | "crab-value-created" | "from-1m-to-3m-realized-price-0-1p" | "plankton-cumulative-realized-loss" | "from-3y-to-5y-spent-output-profit-ratio" | "market-price-to-from-15y-realized-price-ratio-1y-sma" | "market-price-to-year-2011-realized-price-ratio-1p" | "crab-adjusted-value-destroyed" | "market-price-to-year-2021-realized-price-ratio-99p" | "from-15y-net-unrealized-profit-and-loss-to-market-cap-ratio" | "from-1y-unrealized-loss" | "from-2y-to-3y-90p-price-paid" | "from-7y-to-10y-input-volume" | "liquid-45p-price-paid" | "lth-halved-supply" | "market-price-to-p2wsh-realized-price-ratio-1p" | "p2pkh-spent-output-profit-ratio" | "megalodon-net-realized-profit-and-loss-to-market-cap-ratio" | "from-10y-to-15y-halved-supply" | "p2pkh-realized-price-0-5p" | "true-market-mean-99-5p" | "market-price-to-year-2022-realized-price-ratio-99-5p" | "p2tr-90p-price-paid" | "from-1y-to-2y-15p-price-paid" | "shrimp-65p-price-paid" | "up-to-10y-supply-to-circulating-supply-ratio" | "market-price-to-illiquid-realized-price-ratio-0-5p" | "up-to-1m-90p-price-paid" | "price-200w-sma-99-5p" | "up-to-1d-supply-to-circulating-supply-ratio" | "from-5y-to-7y-65p-price-paid" | "from-10y-20p-price-paid" | "up-to-1d-unrealized-profit" | "up-to-4m-85p-price-paid" | "up-to-5y-realized-cap-1m-net-change" | "year-2009-median-price-paid" | "year-2014-input-volume" | "whale-supply-to-circulating-supply-ratio" | "from-1w-to-1m-90p-price-paid" | "year-2009-negative-realized-loss" | "year-2009-supply-in-loss-to-own-supply-ratio" | "p2tr-supply" | "market-price-to-year-2014-realized-price-ratio-1p" | "year-2016-realized-value" | "year-2016-utxo-count" | "year-2017-85p-price-paid" | "transaction-count-1m-sma" | "year-2017-net-realized-profit-and-loss" | "from-3m-to-6m-realized-price-99p" | "humpback-realized-price-99-5p" | "p2wpkh-realized-loss" | "from-3m-to-6m-90p-price-paid" | "from-1m-to-3m-value-created" | "highly-liquid-supply-in-loss" | "year-2010-supply-in-loss" | "up-to-1d-90p-price-paid" | "lth-cumulative-net-realized-profit-and-loss-1m-net-change" | "year-2020-negative-realized-loss" | "up-to-1m-35p-price-paid" | "megalodon-25p-price-paid" | "up-to-6m-adjusted-value-created" | "market-price-to-from-1d-to-1w-realized-price-ratio-0-5p" | "up-to-1m-input-volume" | "from-1y-to-2y-supply" | "up-to-6m-35p-price-paid" | "year-2011-realized-cap" | "p2pkh-15p-price-paid" | "p2wpkh-cumulative-realized-loss" | "up-to-1y-25p-price-paid" | "up-to-2y-median-price-paid" | "price-1y-sma" | "up-to-15y-30p-price-paid" | "up-to-2y-realized-profit" | "up-to-3m-20p-price-paid" | "from-6m-to-1y-40p-price-paid" | "up-to-3m-supply-in-loss-to-own-supply-ratio" | "up-to-5y-cumulative-net-realized-profit-and-loss" | "p2wsh-95p-price-paid" | "from-2y-to-3y-adjusted-value-created" | "shark-realized-profit" | "year-2018-30p-price-paid" | "last-subsidy" | "year-2009-85p-price-paid" | "from-6m-to-1y-cumulative-realized-profit" | "p2wpkh-halved-supply-to-circulating-supply-ratio" | "crab-25p-price-paid" | "from-2y-supply-in-profit-to-own-supply-ratio" | "market-price-to-liquid-realized-price-ratio-0-5p" | "year-2014-realized-cap-1m-net-change" | "market-price-to-price-200w-sma-ratio-99p" | "sth-value-created" | "fish-realized-price-0-1p" | "market-price-to-from-4y-realized-price-ratio-0-5p" | "up-to-2m-05p-price-paid" | "year-2020-unrealized-loss" | "year-2022-realized-price-99p" | "year-2022-supply-in-profit" | "liquid-realized-profit" | "market-price-to-price-8d-sma-ratio-0-1p" | "sth-halved-supply" | "input-volume" | "up-to-7y-sell-side-risk-ratio" | "humpback-cumulative-net-realized-profit-and-loss" | "up-to-1d-value-created" | "year-2019-40p-price-paid" | "up-to-2m-adjusted-value-destroyed" | "from-2y-90p-price-paid" | "market-price-to-year-2020-realized-price-ratio-99-9p" | "megalodon-negative-unrealized-loss" | "from-1m-to-3m-realized-loss" | "up-to-15y-90p-price-paid" | "up-to-2y-unrealized-loss" | "up-to-3m-realized-loss" | "difficulty" | "up-to-3m-unrealized-profit" | "up-to-4m-realized-value" | "up-to-5m-90p-price-paid" | "year-2018-adjusted-spent-output-profit-ratio" | "from-10y-to-15y-85p-price-paid" | "market-price-to-from-6m-to-1y-realized-price-ratio-1y-sma" | "from-15y-supply-in-loss-to-own-supply-ratio" | "from-1d-to-1w-realized-price-1p" | "market-price-to-p2pk-realized-price-ratio-1w-sma" | "megalodon-realized-cap" | "plankton-realized-price" | "up-to-10y-40p-price-paid" | "up-to-1y-supply" | "whale-60p-price-paid" | "market-price-to-up-to-15y-realized-price-ratio-1y-sma-momentum-oscillator" | "year-2014-supply-in-loss-to-own-supply-ratio" | "year-2020-cumulative-realized-loss" | "year-2022-cumulative-realized-loss" | "year-2023-value-destroyed" | "up-to-4m-cumulative-net-realized-profit-and-loss-1m-net-change" | "cumulative-coinblocks-created" | "market-price-to-vaulted-price-ratio" | "from-6m-to-1y-20p-price-paid" | "market-price-to-fish-realized-price-ratio-0-1p" | "market-price-to-price-200w-sma-ratio-1y-sma-momentum-oscillator" | "market-price-to-from-1m-to-3m-realized-price-ratio-1m-sma" | "market-price-to-whale-realized-price-ratio-0-1p" | "price-1y-total-return" | "from-4y-80p-price-paid" | "up-to-1d-95p-price-paid" | "year-2010-net-realized-profit-and-loss-to-market-cap-ratio" | "from-1m-to-3m-realized-price-99-9p" | "shark-halved-supply-to-circulating-supply-ratio" | "from-1w-to-1m-realized-value" | "from-1w-to-1m-supply-in-loss-to-own-supply-ratio" | "up-to-4m-35p-price-paid" | "up-to-1m-realized-value" | "year-2019-realized-price" | "lth-unrealized-loss" | "market-price-to-from-1d-to-1w-realized-price-ratio-0-1p" | "year-2014-85p-price-paid" | "from-5y-to-7y-supply-in-profit" | "whale-realized-price-0-1p" | "up-to-2y-realized-price-1p" | "market-price-to-price-2y-sma-ratio-0-1p" | "year-2024-30p-price-paid" | "from-6m-to-1y-halved-supply-to-circulating-supply-ratio" | "market-price-to-year-2023-realized-price-ratio-99-9p" | "p2wsh-adjusted-value-destroyed" | "from-3m-to-6m-supply-in-profit-to-own-supply-ratio" | "year-2011-supply" | "from-4y-net-realized-profit-and-loss-to-market-cap-ratio" | "market-price-to-price-144d-sma-ratio-1y-sma-momentum-oscillator" | "market-price-to-p2sh-realized-price-ratio-99p" | "up-to-5y-80p-price-paid" | "price-4y-sma-0-5p" | "price-89d-sma" | "up-to-1d-input-count" | "up-to-6m-net-unrealized-profit-and-loss" | "from-1y-to-2y-realized-cap" | "market-price-to-up-to-5m-realized-price-ratio-0-1p" | "up-to-2y-supply-in-loss-to-circulating-supply-ratio" | "liquid-70p-price-paid" | "from-15y-supply-in-loss" | "market-price-to-year-2019-realized-price-ratio-99p" | "sth-realized-price-0-5p" | "from-15y-10p-price-paid" | "from-3m-to-6m-40p-price-paid" | "up-to-1d-realized-price-0-5p" | "market-price-to-cointime-price-ratio-0-1p" | "highly-liquid-65p-price-paid" | "up-to-1d-40p-price-paid" | "from-5y-to-7y-sell-side-risk-ratio" | "sth-realized-price-1p" | "from-1d-to-1w-supply-in-profit-to-circulating-supply-ratio" | "from-3m-to-6m-realized-loss" | "year-2024-25p-price-paid" | "up-to-5m-supply-in-loss-to-own-supply-ratio" | "lth-85p-price-paid" | "from-10y-to-15y-05p-price-paid" | "year-2012-realized-price-99p" | "market-price-to-year-2015-realized-price-ratio-1m-sma" | "year-2010-85p-price-paid" | "coinbase-in-dollars-1y-sum" | "from-1y-to-2y-adjusted-spent-output-profit-ratio" | "market-price-to-price-89d-sma-ratio" | "from-15y-negative-realized-loss" | "p2wpkh-utxo-count" | "from-2y-to-3y-10p-price-paid" | "plankton-75p-price-paid" | "shark-spent-output-profit-ratio" | "up-to-6m-05p-price-paid" | "fish-value-destroyed" | "year-2013-realized-price" | "market-price-to-megalodon-realized-price-ratio-99p" | "market-price-to-up-to-10y-realized-price-ratio-0-5p" | "market-price-to-up-to-7y-realized-price-ratio-1p" | "shark-halved-supply" | "from-4y-supply" | "market-price-to-crab-realized-price-ratio-1p" | "market-price-to-year-2010-realized-price-ratio-0-5p" | "year-2009-realized-cap" | "year-2017-realized-cap" | "from-10y-supply-in-profit-to-own-supply-ratio" | "market-price-to-from-5y-to-7y-realized-price-ratio-0-5p" | "from-2y-realized-price-0-1p" | "illiquid-input-count" | "up-to-5y-35p-price-paid" | "market-price-to-price-55d-sma-ratio-1p" | "p2pk-75p-price-paid" | "up-to-1w-net-realized-profit-and-loss-to-market-cap-ratio" | "up-to-7y-55p-price-paid" | "year-2009-realized-price-99-9p" | "crab-adjusted-spent-output-profit-ratio" | "year-2014-supply-in-loss-to-circulating-supply-ratio" | "year-2016-cumulative-realized-profit" | "market-price-to-year-2024-realized-price-ratio-99p" | "year-2018-supply-to-circulating-supply-ratio" | "year-2024-realized-price-0-1p" | "year-2018-supply-in-loss" | "up-to-10y-cumulative-realized-loss" | "up-to-3y-realized-value" | "p2wpkh-95p-price-paid" | "market-price-to-price-55d-sma-ratio-99p" | "from-1y-spent-output-profit-ratio" | "market-price-to-up-to-1y-realized-price-ratio-1m-sma" | "up-to-3y-20p-price-paid" | "from-5y-to-7y-net-unrealized-profit-and-loss-to-market-cap-ratio" | "block-interval-1d-10p" | "crab-address-count" | "liquid-halved-supply" | "from-1m-to-3m-adjusted-value-destroyed" | "from-3m-to-6m-sell-side-risk-ratio" | "p2tr-realized-loss" | "from-2y-05p-price-paid" | "plankton-unrealized-loss" | "highly-liquid-input-count" | "plankton-realized-price-0-5p" | "plankton-unrealized-profit" | "up-to-10y-spent-output-profit-ratio" | "up-to-3m-halved-supply" | "up-to-6m-halved-supply-to-circulating-supply-ratio" | "year-2009-cumulative-realized-loss" | "year-2014-25p-price-paid" | "up-to-6m-supply-in-profit-to-circulating-supply-ratio" | "crab-net-realized-profit-and-loss-to-market-cap-ratio" | "crab-supply-in-loss-to-own-supply-ratio" | "from-6m-to-1y-value-destroyed" | "fish-realized-price-0-5p" | "from-15y-value-destroyed" | "from-1w-to-1m-supply-in-profit-to-circulating-supply-ratio" | "from-2y-spent-output-profit-ratio" | "market-price-to-up-to-2m-realized-price-ratio-99p" | "year-2024-spent-output-profit-ratio" | "p2pk-net-unrealized-profit-and-loss" | "market-price-to-crab-realized-price-ratio-99-9p" | "year-2019-cumulative-realized-loss" | "from-1y-to-2y-negative-realized-loss" | "year-2024-40p-price-paid" | "cointime-price" | "market-price-to-from-6m-to-1y-realized-price-ratio-99p" | "year-2024-55p-price-paid" | "market-price-to-price-34d-sma-ratio-1p" | "up-to-2y-90p-price-paid" | "highly-liquid-realized-price-0-1p" | "market-price-to-year-2016-realized-price-ratio-1p" | "from-5y-to-7y-realized-loss" | "p2wsh-negative-unrealized-loss" | "from-7y-to-10y-supply" | "from-7y-to-10y-net-unrealized-profit-and-loss" | "p2wsh-85p-price-paid" | "fish-realized-loss" | "up-to-1m-60p-price-paid" | "shrimp-realized-price" | "from-2y-to-3y-supply-in-profit-to-own-supply-ratio" | "market-price-to-up-to-2y-realized-price-ratio" | "from-4y-30p-price-paid" | "market-price-to-vaulted-price-ratio-99-9p" | "megalodon-supply-to-circulating-supply-ratio" | "sth-realized-price-99-5p" | "from-15y-85p-price-paid" | "market-price-to-from-7y-to-10y-realized-price-ratio-99p" | "market-price-to-year-2020-realized-price-ratio-0-5p" | "up-to-5m-40p-price-paid" | "shrimp-net-realized-profit-and-loss-to-market-cap-ratio" | "market-price-to-up-to-3y-realized-price-ratio-1y-sma-momentum-oscillator" | "from-1y-realized-price-1p" | "humpback-supply-to-circulating-supply-ratio" | "p2sh-net-unrealized-profit-and-loss-to-market-cap-ratio" | "p2wsh-supply-in-loss" | "p2sh-realized-price-0-5p" | "fish-supply-to-circulating-supply-ratio" | "humpback-unrealized-loss" | "p2pkh-net-realized-profit-and-loss" | "up-to-1d-value-destroyed" | "year-2012-45p-price-paid" | "up-to-2m-net-realized-profit-and-loss" | "year-2014-10p-price-paid" | "up-to-6m-70p-price-paid" | "from-3m-to-6m-utxo-count" | "lth-15p-price-paid" | "market-price-to-up-to-7y-realized-price-ratio-1y-sma" | "year-2014-net-realized-profit-and-loss-to-market-cap-ratio" | "market-price-to-up-to-3m-realized-price-ratio-1m-sma" | "up-to-1w-unrealized-profit" | "market-price-to-price-13d-sma-ratio-99-5p" | "up-to-4m-realized-price-1p" | "from-5y-to-7y-net-realized-profit-and-loss-to-market-cap-ratio" | "market-price-to-up-to-6m-realized-price-ratio" | "lth-cumulative-realized-loss" | "up-to-10y-adjusted-spent-output-profit-ratio" | "year-2016-20p-price-paid" | "from-3m-to-6m-supply-in-loss-to-own-supply-ratio" | "up-to-1d-55p-price-paid" | "market-price-to-crab-realized-price-ratio-1y-sma-momentum-oscillator" | "from-10y-to-15y-cumulative-realized-profit" | "highly-liquid-value-destroyed" | "p2sh-supply-to-circulating-supply-ratio" | "p2wsh-realized-price-99p" | "up-to-1y-05p-price-paid" | "from-3m-to-6m-65p-price-paid" | "up-to-3m-supply-in-loss" | "up-to-5m-sell-side-risk-ratio" | "sth-15p-price-paid" | "year-2009-25p-price-paid" | "year-2012-supply-in-loss-to-circulating-supply-ratio" | "realized-price" | "shrimp-supply-to-circulating-supply-ratio" | "sth-input-count" | "from-5y-to-7y-realized-price-99-5p" | "cumulative-block-size" | "subsidy" | "up-to-6m-20p-price-paid" | "shark-cumulative-realized-loss" | "market-price-to-from-3m-to-6m-realized-price-ratio-1y-sma" | "p2tr-unrealized-profit" | "highly-liquid-input-volume" | "market-price-to-price-89d-sma-ratio-0-5p" | "price-13d-sma-0-1p" | "market-price-to-shark-realized-price-ratio-1w-sma" | "year-2017-halved-supply" | "year-2020-cumulative-realized-profit" | "year-2010-supply-in-profit" | "up-to-15y-utxo-count" | "year-2022-realized-price-0-1p" | "year-2018-input-count" | "humpback-realized-cap" | "year-2021-65p-price-paid" | "market-price-to-from-3y-to-5y-realized-price-ratio-0-5p" | "from-15y-cumulative-net-realized-profit-and-loss" | "market-price-to-p2sh-realized-price-ratio-0-5p" | "p2pkh-halved-supply" | "market-price-to-up-to-7y-realized-price-ratio-1w-sma" | "market-price-to-from-10y-realized-price-ratio-1y-sma" | "from-1d-to-1w-realized-price-99p" | "year-2024-realized-loss" | "market-price-to-shrimp-realized-price-ratio-1w-sma" | "market-price-to-up-to-1y-realized-price-ratio" | "market-price-to-up-to-5m-realized-price-ratio-0-5p" | "market-price-to-humpback-realized-price-ratio-99-5p" | "up-to-10y-input-volume" | "cumulative-net-realized-profit-and-loss-1m-net-change" | "up-to-15y-value-created" | "market-price-to-from-15y-realized-price-ratio-99p" | "up-to-1y-value-created" | "illiquid-10p-price-paid" | "year-2011-realized-value" | "from-6m-to-1y-supply-in-profit-to-circulating-supply-ratio" | "year-2012-adjusted-value-created" | "market-price-to-up-to-1d-realized-price-ratio-0-5p" | "year-2012-supply" | "up-to-3y-utxo-count" | "market-price-to-price-2y-sma-ratio-99p" | "market-price-to-up-to-2y-realized-price-ratio-99-5p" | "up-to-5y-adjusted-spent-output-profit-ratio" | "block-size-1d-90p" | "up-to-6m-net-unrealized-profit-and-loss-to-market-cap-ratio" | "market-price-to-p2wpkh-realized-price-ratio-1w-sma" | "market-price-to-up-to-5y-realized-price-ratio-99-5p" | "up-to-7y-supply-to-circulating-supply-ratio" | "price-8d-sma-0-5p" | "year-2023-supply" | "market-price-to-from-3y-to-5y-realized-price-ratio-1p" | "p2tr-net-unrealized-profit-and-loss" | "p2wsh-adjusted-spent-output-profit-ratio" | "market-price-to-from-2y-realized-price-ratio-1p" | "year-2013-adjusted-value-destroyed" | "crab-realized-price" | "year-2009-net-realized-profit-and-loss-to-market-cap-ratio" | "year-2020-realized-cap-1m-net-change" | "from-1y-realized-loss" | "from-10y-45p-price-paid" | "from-2y-80p-price-paid" | "from-6m-to-1y-75p-price-paid" | "megalodon-85p-price-paid" | "up-to-1y-adjusted-spent-output-profit-ratio" | "year-2024-supply-in-profit-to-circulating-supply-ratio" | "year-2024-cumulative-realized-profit" | "market-price-to-from-7y-to-10y-realized-price-ratio-1y-sma-momentum-oscillator" | "up-to-4m-55p-price-paid" | "highly-liquid-55p-price-paid" | "up-to-4m-realized-price-0-5p" | "up-to-15y-negative-unrealized-loss" | "year-2009-input-count" | "fish-20p-price-paid" | "negative-realized-loss" | "liquid-unrealized-loss" | "from-10y-to-15y-35p-price-paid" | "market-price-to-p2wpkh-realized-price-ratio-99-9p" | "up-to-4m-70p-price-paid" | "all-time-high" | "transaction-count" | "year-2024-utxo-count" | "up-to-6m-supply" | "from-4y-cumulative-net-realized-profit-and-loss" | "up-to-1y-net-realized-profit-and-loss-to-market-cap-ratio" | "from-7y-to-10y-60p-price-paid" | "from-15y-adjusted-value-destroyed" | "year-2013-negative-realized-loss" | "year-2010-cumulative-realized-loss" | "market-price-to-price-21d-sma-ratio-1p" | "p2tr-halved-supply" | "price-1y-sma-0-1p" | "year-2013-realized-price-99p" | "block-interval-1d-average" | "up-to-2m-net-realized-profit-and-loss-to-market-cap-ratio" | "whale-supply-in-profit" | "p2wsh-realized-price-99-9p" | "up-to-3y-unrealized-loss" | "market-price-to-price-1m-sma-ratio" | "p2wpkh-realized-cap-1m-net-change" | "up-to-4m-realized-cap" | "vaulted-price-99-5p" | "up-to-15y-unrealized-profit" | "year-2023-input-count" | "price-34d-sma-0-1p" | "adjusted-value-destroyed" | "from-2y-cumulative-net-realized-profit-and-loss" | "from-1y-to-2y-unrealized-loss" | "year-2009-value-destroyed" | "market-price-to-up-to-10y-realized-price-ratio-99-5p" | "plankton-supply-in-loss-to-circulating-supply-ratio" | "price-144d-sma-0-5p" | "from-2y-to-3y-realized-price-0-1p" | "crab-supply-in-loss-to-circulating-supply-ratio" | "year-2015-input-count" | "year-2018-realized-price-1p" | "market-price-to-humpback-realized-price-ratio-99p" | "market-price-to-humpback-realized-price-ratio-99-9p" | "year-2013-adjusted-value-created" | "from-1m-to-3m-35p-price-paid" | "year-2023-10p-price-paid" | "market-price-to-p2wpkh-realized-price-ratio-1p" | "market-price-to-up-to-2m-realized-price-ratio-1p" | "up-to-7y-negative-unrealized-loss" | "up-to-5y-supply-to-circulating-supply-ratio" | "up-to-1w-negative-realized-loss" | "block-size-1d-min" | "market-price-to-from-7y-to-10y-realized-price-ratio-1m-sma" | "market-price-to-p2wsh-realized-price-ratio-1y-sma" | "year-2009-realized-price-99p" | "from-10y-to-15y-supply-in-loss" | "liveliness" | "shark-realized-loss" | "p2sh-supply" | "up-to-2y-value-destroyed" | "from-1w-to-1m-60p-price-paid" | "up-to-3y-cumulative-net-realized-profit-and-loss-1m-net-change" | "from-6m-to-1y-supply-in-profit" | "market-price-to-lth-realized-price-ratio-1p" | "from-10y-to-15y-realized-price" | "crab-05p-price-paid" | "p2pkh-address-count" | "plankton-value-created" | "from-2y-to-3y-supply-to-circulating-supply-ratio" | "from-7y-to-10y-70p-price-paid" | "up-to-5y-supply-in-loss" | "year-2019-supply-in-loss-to-circulating-supply-ratio" | "plankton-realized-value" | "year-2020-halved-supply-to-circulating-supply-ratio" | "up-to-10y-45p-price-paid" | "up-to-6m-65p-price-paid" | "shark-address-count" | "from-3m-to-6m-35p-price-paid" | "year-2016-25p-price-paid" | "plankton-supply-in-loss" | "up-to-6m-adjusted-value-destroyed" | "up-to-4m-45p-price-paid" | "year-2013-adjusted-spent-output-profit-ratio" | "up-to-7y-cumulative-realized-loss" | "year-2016-75p-price-paid" | "market-price-to-price-8d-sma-ratio-99-9p" | "market-price-to-up-to-15y-realized-price-ratio-1p" | "up-to-1d-75p-price-paid" | "p2wsh-realized-price-99-5p" | "year-2013-input-volume" | "from-3y-to-5y-cumulative-realized-profit" | "humpback-95p-price-paid" | "from-1y-negative-realized-loss" | "up-to-1m-25p-price-paid" | "up-to-5m-halved-supply-to-circulating-supply-ratio" | "p2sh-90p-price-paid" | "up-to-6m-median-price-paid" | "year-2011-supply-in-profit-to-own-supply-ratio" | "lth-realized-price-0-5p" | "market-price-to-year-2020-realized-price-ratio-1p" | "from-2y-to-3y-realized-cap-1m-net-change" | "close" | "lth-supply-in-profit-to-own-supply-ratio" | "from-4y-realized-profit" | "market-price-to-from-6m-to-1y-realized-price-ratio-1p" | "illiquid-median-price-paid" | "market-price-to-up-to-1d-realized-price-ratio" | "price-1d-total-return" | "from-15y-net-unrealized-profit-and-loss" | "up-to-1m-input-count" | "up-to-2m-20p-price-paid" | "up-to-5y-net-realized-profit-and-loss-to-market-cap-ratio" | "year-2013-negative-unrealized-loss" | "lth-supply-in-profit-to-circulating-supply-ratio" | "market-price-to-active-price-ratio-99p" | "megalodon-halved-supply-to-circulating-supply-ratio" | "from-2y-realized-price-99p" | "from-1y-60p-price-paid" | "p2wpkh-realized-price" | "market-price-to-price-1m-sma-ratio-99p" | "from-3m-to-6m-adjusted-spent-output-profit-ratio" | "up-to-1m-adjusted-spent-output-profit-ratio" | "up-to-3m-cumulative-net-realized-profit-and-loss" | "year-2011-05p-price-paid" | "year-2018-net-unrealized-profit-and-loss" | "market-price-to-year-2013-realized-price-ratio-0-5p" | "from-1y-to-2y-realized-price-0-1p" | "market-price-to-year-2023-realized-price-ratio-1m-sma" | "megalodon-utxo-count" | "year-2023-55p-price-paid" | "p2wsh-cumulative-net-realized-profit-and-loss" | "market-price-to-p2pkh-realized-price-ratio-1y-sma-momentum-oscillator" | "up-to-1y-sell-side-risk-ratio" | "from-5y-to-7y-realized-cap-1m-net-change" | "liquid-realized-price-0-1p" | "from-3m-to-6m-net-unrealized-profit-and-loss" | "year-2017-realized-profit" | "market-price-to-from-6m-to-1y-realized-price-ratio-1m-sma" | "year-2019-realized-price-0-5p" | "plankton-negative-realized-loss" | "p2pkh-supply-in-loss" | "illiquid-net-unrealized-profit-and-loss-to-market-cap-ratio" | "market-price-to-price-144d-sma-ratio-99-9p" | "from-6m-to-1y-adjusted-value-destroyed" | "liquid-75p-price-paid" | "p2tr-supply-in-profit-to-own-supply-ratio" | "market-price-to-year-2021-realized-price-ratio-1y-sma-momentum-oscillator" | "from-1y-to-2y-supply-in-loss-to-own-supply-ratio" | "shrimp-adjusted-value-created" | "up-to-3m-value-destroyed" | "shrimp-cumulative-realized-profit" | "market-price-to-from-1m-to-3m-realized-price-ratio-99-9p" | "up-to-1w-net-unrealized-profit-and-loss" | "p2wsh-halved-supply" | "shrimp-70p-price-paid" | "highly-liquid-supply-in-profit-to-own-supply-ratio" | "up-to-5y-05p-price-paid" | "market-price-to-year-2013-realized-price-ratio-99p" | "halved-supply-to-circulating-supply-ratio" | "year-2016-realized-cap-1m-net-change" | "liquid-realized-price" | "from-2y-supply-in-loss-to-circulating-supply-ratio" | "from-7y-to-10y-supply-in-loss-to-circulating-supply-ratio" | "illiquid-90p-price-paid" | "up-to-15y-realized-profit" | "from-1y-to-2y-realized-price-99-9p" | "plankton-realized-profit" | "market-price-to-from-3y-to-5y-realized-price-ratio-99-5p" | "up-to-5m-net-unrealized-profit-and-loss-to-market-cap-ratio" | "up-to-1d-realized-price-1p" | "year-2018-60p-price-paid" | "up-to-15y-cumulative-net-realized-profit-and-loss" | "market-price-to-price-89d-sma-ratio-1y-sma-momentum-oscillator" | "liquid-15p-price-paid" | "market-price-to-illiquid-realized-price-ratio-1p" | "sth-net-unrealized-profit-and-loss-to-market-cap-ratio" | "p2wpkh-input-count" | "liquid-cumulative-net-realized-profit-and-loss" | "p2sh-05p-price-paid" | "up-to-5m-05p-price-paid" | "market-price-to-from-10y-to-15y-realized-price-ratio-1y-sma-momentum-oscillator" | "p2tr-supply-in-loss-to-own-supply-ratio" | "shark-85p-price-paid" | "year-2022-median-price-paid" | "market-price-to-price-21d-sma-ratio-99-9p" | "fish-15p-price-paid" | "market-price-to-cointime-price-ratio" | "from-7y-to-10y-80p-price-paid" | "up-to-2m-spent-output-profit-ratio" | "transaction-volume-in-dollars-1w-sma" | "from-7y-to-10y-realized-cap-1m-net-change" | "market-price-to-year-2011-realized-price-ratio-1m-sma" | "year-2010-realized-profit" | "p2pk-realized-price" | "year-2020-35p-price-paid" | "from-15y-adjusted-value-created" | "from-1y-net-unrealized-profit-and-loss" | "market-price-to-true-market-mean-ratio-0-5p" | "up-to-5y-spent-output-profit-ratio" | "from-15y-realized-price-0-5p" | "market-price-to-from-4y-realized-price-ratio-1y-sma" | "up-to-1d-10p-price-paid" | "highly-liquid-net-unrealized-profit-and-loss-to-market-cap-ratio" | "from-1m-to-3m-unrealized-profit" | "year-2024-halved-supply-to-circulating-supply-ratio" | "market-price-to-price-13d-sma-ratio-1m-sma" | "year-2018-input-volume" | "shrimp-realized-price-0-5p" | "shrimp-supply-in-loss-to-circulating-supply-ratio" | "market-price-to-price-1y-sma-ratio-1p" | "up-to-1w-25p-price-paid" | "megalodon-realized-price-99-9p" | "market-price-to-from-2y-to-3y-realized-price-ratio-1y-sma-momentum-oscillator" | "p2wsh-supply-in-loss-to-own-supply-ratio" | "year-2021-95p-price-paid" | "block-weight-1d-min" | "illiquid-20p-price-paid" | "market-price-to-up-to-4m-realized-price-ratio-0-5p" | "up-to-7y-supply-in-loss" | "from-10y-to-15y-supply-in-profit-to-own-supply-ratio" | "up-to-3m-realized-price-0-5p" | "whale-20p-price-paid" | "plankton-median-price-paid" | "humpback-55p-price-paid" | "year-2018-realized-loss" | "year-2016-cumulative-realized-loss" | "from-6m-to-1y-realized-value" | "whale-realized-price-99-9p" | "transaction-velocity" | "from-2y-15p-price-paid" | "from-4y-unrealized-loss" | "p2pkh-net-unrealized-profit-and-loss-to-market-cap-ratio" | "up-to-10y-15p-price-paid" | "crab-value-destroyed" | "from-1m-to-3m-supply-in-profit" | "from-10y-net-realized-profit-and-loss-to-market-cap-ratio" | "from-1w-to-1m-40p-price-paid" | "from-7y-to-10y-input-count" | "year-2021-15p-price-paid" | "up-to-5m-35p-price-paid" | "from-7y-to-10y-65p-price-paid" | "year-2010-realized-price-0-5p" | "from-3m-to-6m-realized-price" | "market-price-to-up-to-3y-realized-price-ratio-1p" | "from-3m-to-6m-value-destroyed" | "highly-liquid-70p-price-paid" | "up-to-15y-25p-price-paid" | "up-to-2m-unrealized-profit" | "year-2023-realized-price-0-5p" | "from-2y-unrealized-profit" | "from-3m-to-6m-30p-price-paid" | "shark-80p-price-paid" | "from-4y-45p-price-paid" | "market-price-to-price-1y-sma-ratio-1y-sma" | "up-to-2m-median-price-paid" | "whale-spent-output-profit-ratio" | "market-price-to-price-8d-sma-ratio" | "from-1m-to-3m-halved-supply-to-circulating-supply-ratio" | "year-2009-input-volume" | "year-2009-cumulative-realized-profit" | "sth-30p-price-paid" | "from-10y-supply-in-loss-to-circulating-supply-ratio" | "market-price-to-megalodon-realized-price-ratio-1y-sma-momentum-oscillator" | "fish-negative-realized-loss" | "sth-cumulative-net-realized-profit-and-loss" | "p2sh-10p-price-paid" | "from-1d-to-1w-cumulative-realized-profit" | "up-to-1w-median-price-paid" | "up-to-1w-supply" | "year-2013-70p-price-paid" | "year-2021-negative-realized-loss" | "p2pk-realized-price-99-5p" | "from-6m-to-1y-60p-price-paid" | "sth-spent-output-profit-ratio" | "megalodon-value-destroyed" | "market-price-to-year-2013-realized-price-ratio-0-1p" | "up-to-5y-40p-price-paid" | "year-2012-55p-price-paid" | "up-to-2y-supply-to-circulating-supply-ratio" | "up-to-6m-cumulative-net-realized-profit-and-loss" | "from-1d-to-1w-95p-price-paid" | "up-to-5y-60p-price-paid" | "year-2013-median-price-paid" | "p2wpkh-75p-price-paid" | "year-2024-net-realized-profit-and-loss-to-market-cap-ratio" | "from-3y-to-5y-realized-cap-1m-net-change" | "from-7y-to-10y-unrealized-profit" | "market-price-to-up-to-2y-realized-price-ratio-99p" | "from-2y-to-3y-negative-realized-loss" | "market-price-to-p2sh-realized-price-ratio-0-1p" | "fish-65p-price-paid" | "up-to-3y-95p-price-paid" | "from-15y-supply" | "year-2015-halved-supply-to-circulating-supply-ratio" | "from-10y-to-15y-value-created" | "year-2016-supply-in-loss" | "fish-35p-price-paid" | "illiquid-negative-realized-loss" | "market-price-to-year-2011-realized-price-ratio-99-5p" | "year-2011-supply-in-loss" | "coinbase-in-dollars" | "market-price-to-cointime-price-ratio-0-5p" | "up-to-5m-realized-price" | "megalodon-input-count" | "up-to-5m-cumulative-realized-profit" | "p2wsh-supply-in-profit-to-own-supply-ratio" | "p2wsh-realized-price-0-1p" | "year-2019-net-unrealized-profit-and-loss-to-market-cap-ratio" | "from-4y-10p-price-paid" | "lth-utxo-count" | "market-price-to-price-34d-sma-ratio-0-1p" | "true-market-mean-1p" | "sth-net-unrealized-profit-and-loss" | "up-to-15y-70p-price-paid" | "up-to-2y-10p-price-paid" | "year-2019-cumulative-realized-profit" | "year-2022-supply-in-loss-to-circulating-supply-ratio" | "from-5y-to-7y-adjusted-value-destroyed" | "true-market-mean-0-5p" | "shrimp-realized-cap-1m-net-change" | "from-5y-to-7y-net-realized-profit-and-loss" | "year-2020-90p-price-paid" | "from-5y-to-7y-85p-price-paid" | "p2pk-net-realized-profit-and-loss" | "up-to-3m-70p-price-paid" | "year-2021-realized-price-99-5p" | "from-10y-realized-price-0-1p" | "market-price-to-from-1y-to-2y-realized-price-ratio-1p" | "median-price-paid" | "sth-unrealized-loss" | "market-price-to-p2wsh-realized-price-ratio" | "humpback-negative-realized-loss" | "from-10y-realized-profit" | "market-price-to-up-to-1m-realized-price-ratio-1w-sma" | "from-3y-to-5y-adjusted-value-destroyed" | "from-3m-to-6m-realized-price-0-1p" | "market-price-to-from-1y-realized-price-ratio-0-1p" | "whale-supply-in-loss-to-own-supply-ratio" | "year-2012-utxo-count" | "year-2023-supply-in-profit" | "from-2y-to-3y-75p-price-paid" | "from-2y-to-3y-25p-price-paid" | "year-2009-20p-price-paid" | "up-to-2m-input-volume" | "p2pk-supply" | "p2pkh-input-volume" | "block-weight" | "from-7y-to-10y-sell-side-risk-ratio" | "year-2010-supply-in-profit-to-own-supply-ratio" | "market-price-to-up-to-7y-realized-price-ratio-99p" | "crab-cumulative-realized-profit" | "lth-60p-price-paid" | "up-to-5y-halved-supply" | "from-4y-40p-price-paid" | "liquid-25p-price-paid" | "illiquid-70p-price-paid" | "up-to-1w-value-destroyed" | "market-price-to-from-6m-to-1y-realized-price-ratio-99-5p" | "year-2018-cumulative-realized-loss" | "from-1y-to-2y-40p-price-paid" | "from-6m-to-1y-adjusted-value-created" | "year-2012-70p-price-paid" | "from-1y-halved-supply" | "market-price-to-p2pkh-realized-price-ratio-0-5p" | "year-2021-55p-price-paid" | "up-to-5y-adjusted-value-destroyed" | "year-2011-supply-in-loss-to-own-supply-ratio" | "year-2019-realized-cap" | "from-10y-net-realized-profit-and-loss" | "up-to-3y-negative-realized-loss" | "up-to-4m-30p-price-paid" | "liquid-adjusted-spent-output-profit-ratio" | "from-7y-to-10y-unrealized-loss" | "from-15y-80p-price-paid" | "lth-net-realized-profit-and-loss-to-market-cap-ratio" | "from-10y-input-count" | "market-price-to-from-1w-to-1m-realized-price-ratio-1w-sma" | "sth-cumulative-realized-profit" | "market-price-to-from-15y-realized-price-ratio-1w-sma" | "megalodon-adjusted-value-destroyed" | "plankton-supply-in-profit" | "up-to-1d-input-volume" | "up-to-1w-supply-in-loss-to-own-supply-ratio" | "up-to-2m-realized-price-99-5p" | "year-2011-halved-supply" | "year-2013-value-destroyed" | "from-1w-to-1m-supply-to-circulating-supply-ratio" | "fish-net-unrealized-profit-and-loss-to-market-cap-ratio" | "up-to-6m-realized-price-99-5p" | "up-to-4m-75p-price-paid" | "from-1m-to-3m-net-realized-profit-and-loss" | "megalodon-cumulative-realized-loss" | "last" | "from-2y-to-3y-halved-supply" | "lth-value-destroyed" | "market-price-to-true-market-mean-ratio-99-5p" | "from-2y-negative-unrealized-loss" | "from-1m-to-3m-cumulative-net-realized-profit-and-loss" | "market-price-to-year-2012-realized-price-ratio-99-9p" | "from-10y-cumulative-net-realized-profit-and-loss" | "from-4y-supply-to-circulating-supply-ratio" | "market-price-to-from-3y-to-5y-realized-price-ratio-1w-sma" | "price-1m-sma-99-9p" | "year-2013-supply-in-profit" | "price-34d-sma-99p" | "humpback-45p-price-paid" | "up-to-2y-05p-price-paid" | "market-price-to-highly-liquid-realized-price-ratio-1y-sma" | "from-3y-to-5y-25p-price-paid" | "up-to-1y-realized-value" | "year-2018-supply-in-profit" | "shark-value-created" | "from-15y-55p-price-paid" | "year-2024-90p-price-paid" | "up-to-2m-45p-price-paid" | "up-to-1w-cumulative-realized-loss" | "from-1m-to-3m-85p-price-paid" | "from-3y-to-5y-supply-in-profit-to-own-supply-ratio" | "p2wsh-supply-in-profit-to-circulating-supply-ratio" | "market-price-to-from-4y-realized-price-ratio-99p" | "market-price-to-year-2024-realized-price-ratio-1m-sma" | "year-2010-median-price-paid" | "from-1y-90p-price-paid" | "year-2009-cumulative-net-realized-profit-and-loss-1m-net-change" | "year-2014-realized-price-99p" | "from-7y-to-10y-spent-output-profit-ratio" | "humpback-sell-side-risk-ratio" | "sth-realized-profit" | "up-to-5y-net-unrealized-profit-and-loss-to-market-cap-ratio" | "year-2009-sell-side-risk-ratio" | "up-to-7y-input-count" | "net-unrealized-profit-and-loss" | "up-to-3m-85p-price-paid" | "year-2021-supply-in-loss" | "year-2023-realized-cap" | "market-price-to-up-to-1w-realized-price-ratio-1y-sma" | "year-2012-unrealized-profit" | "year-2010-40p-price-paid" | "total-blocks-mined" | "market-price-to-from-10y-to-15y-realized-price-ratio-99-9p" | "crab-realized-price-99-9p" | "from-7y-to-10y-supply-in-profit" | "p2wpkh-address-count" | "year-2022-15p-price-paid" | "from-2y-to-3y-adjusted-value-destroyed" | "p2pkh-realized-price-0-1p" | "year-2019-adjusted-value-destroyed" | "crab-70p-price-paid" | "halved-supply" | "market-price-to-price-4y-sma-ratio-1w-sma" | "p2pkh-45p-price-paid" | "plankton-sell-side-risk-ratio" | "fish-halved-supply-to-circulating-supply-ratio" | "market-price-to-price-21d-sma-ratio-1y-sma-momentum-oscillator" | "up-to-6m-input-count" | "shrimp-input-volume" | "market-price-to-from-15y-realized-price-ratio-0-5p" | "up-to-4m-realized-cap-1m-net-change" | "whale-25p-price-paid" | "from-3y-to-5y-80p-price-paid" | "from-1y-to-2y-90p-price-paid" | "year-2010-unrealized-loss" | "year-2012-realized-price-99-9p" | "year-2015-realized-price-1p" | "from-3y-to-5y-halved-supply-to-circulating-supply-ratio" | "market-price-to-up-to-3y-realized-price-ratio" | "year-2009-30p-price-paid" | "market-price-to-year-2023-realized-price-ratio-1y-sma" | "crab-supply-to-circulating-supply-ratio" | "from-1y-realized-cap" | "year-2018-negative-unrealized-loss" | "whale-realized-profit" | "year-2017-adjusted-value-created" | "year-2009-supply-in-profit-to-circulating-supply-ratio" | "from-1y-to-2y-sell-side-risk-ratio" | "market-price-to-shark-realized-price-ratio-1y-sma-momentum-oscillator" | "up-to-6m-supply-in-loss-to-circulating-supply-ratio" | "year-2012-value-destroyed" | "lth-net-unrealized-profit-and-loss" | "price-8d-sma-0-1p" | "market-price-to-from-1d-to-1w-realized-price-ratio-99-9p" | "from-1m-to-3m-45p-price-paid" | "from-2y-to-3y-95p-price-paid" | "from-7y-to-10y-cumulative-net-realized-profit-and-loss-1m-net-change" | "producerness" | "from-7y-to-10y-net-realized-profit-and-loss" | "shrimp-supply-in-loss" | "transaction-volume" | "up-to-10y-realized-loss" | "up-to-15y-adjusted-spent-output-profit-ratio" | "year-2010-realized-loss" | "up-to-10y-value-destroyed" | "year-2019-20p-price-paid" | "year-2020-05p-price-paid" | "year-2020-utxo-count" | "from-1y-to-2y-spent-output-profit-ratio" | "market-price-to-from-10y-realized-price-ratio-99-5p" | "year-2024-halved-supply" | "from-3y-to-5y-supply-in-loss-to-own-supply-ratio" | "from-6m-to-1y-median-price-paid" | "up-to-5y-90p-price-paid" | "up-to-3m-utxo-count" | "market-price-to-price-1w-sma-ratio-1w-sma" | "megalodon-10p-price-paid" | "lth-realized-price-99-9p" | "p2wsh-realized-cap-1m-net-change" | "up-to-3y-net-realized-profit-and-loss-to-market-cap-ratio" | "p2sh-20p-price-paid" | "market-price-to-from-1y-to-2y-realized-price-ratio" | "market-price-to-year-2010-realized-price-ratio-99-9p" | "year-2011-realized-loss" | "year-2011-spent-output-profit-ratio" | "p2pkh-realized-price-99-5p" | "from-2y-to-3y-cumulative-net-realized-profit-and-loss" | "from-5y-to-7y-75p-price-paid" | "market-price-to-up-to-15y-realized-price-ratio-1y-sma" | "market-price-to-year-2021-realized-price-ratio-0-5p" | "p2pkh-utxo-count" | "p2wpkh-40p-price-paid" | "50" | "from-10y-90p-price-paid" | "year-2018-value-created" | "market-price-to-up-to-2y-realized-price-ratio-99-9p" | "year-2022-95p-price-paid" | "from-3m-to-6m-supply-to-circulating-supply-ratio" | "market-price-to-megalodon-realized-price-ratio-99-5p" | "p2tr-realized-price-0-1p" | "p2pk-70p-price-paid" | "plankton-net-unrealized-profit-and-loss-to-market-cap-ratio" | "up-to-3y-net-unrealized-profit-and-loss-to-market-cap-ratio" | "lth-realized-price-1p" | "year-2013-10p-price-paid" | "up-to-5m-input-count" | "year-2018-75p-price-paid" | "up-to-2m-sell-side-risk-ratio" | "from-2y-net-realized-profit-and-loss" | "market-price-to-from-7y-to-10y-realized-price-ratio" | "up-to-2y-supply-in-profit-to-circulating-supply-ratio" | "market-price-to-p2tr-realized-price-ratio" | "p2wsh-65p-price-paid" | "year-2022-realized-cap-1m-net-change" | "from-10y-halved-supply-to-circulating-supply-ratio" | "year-2013-25p-price-paid" | "year-2014-supply-to-circulating-supply-ratio" | "highly-liquid-adjusted-value-destroyed" | "whale-95p-price-paid" | "market-price-to-from-1d-to-1w-realized-price-ratio-99p" | "from-2y-to-3y-input-count" | "shrimp-unrealized-profit" | "from-10y-realized-price-99p" | "fish-address-count" | "p2pkh-65p-price-paid" | "p2wsh-address-count" | "from-1m-to-3m-spent-output-profit-ratio" | "price-144d-sma" | "up-to-2y-55p-price-paid" | "up-to-7y-85p-price-paid" | "from-3y-to-5y-net-unrealized-profit-and-loss-to-market-cap-ratio" | "year-2018-supply-in-loss-to-circulating-supply-ratio" | "up-to-7y-25p-price-paid" | "fish-supply-in-profit-to-circulating-supply-ratio" | "market-price-to-megalodon-realized-price-ratio-1y-sma" | "transaction-volume-in-dollars" | "from-6m-to-1y-realized-price-99-5p" | "year-2021-90p-price-paid" | "crab-45p-price-paid" | "market-price-to-up-to-4m-realized-price-ratio-1y-sma-momentum-oscillator" | "from-6m-to-1y-realized-cap-1m-net-change" | "year-2024-75p-price-paid" | "cumulative-realized-profit" | "up-to-10y-cumulative-net-realized-profit-and-loss-1m-net-change" | "up-to-1d-35p-price-paid" | "market-price-to-from-5y-to-7y-realized-price-ratio-1m-sma" | "from-1d-to-1w-unrealized-loss" | "p2tr-input-volume" | "from-10y-to-15y-70p-price-paid" | "p2pk-negative-unrealized-loss" | "up-to-7y-realized-price-0-5p" | "from-2y-to-3y-spent-output-profit-ratio" | "up-to-10y-unrealized-profit" | "whale-halved-supply-to-circulating-supply-ratio" | "year-2011-60p-price-paid" | "from-5y-to-7y-realized-price-0-5p" | "crab-realized-cap" | "crab-40p-price-paid" | "year-2018-sell-side-risk-ratio" | "from-1d-to-1w-input-volume" | "from-10y-to-15y-cumulative-net-realized-profit-and-loss-1m-net-change" | "from-1w-to-1m-halved-supply" | "market-price-to-price-1y-sma-ratio-99-9p" | "up-to-1m-realized-cap-1m-net-change" | "liquid-net-unrealized-profit-and-loss-to-market-cap-ratio" | "p2wpkh-60p-price-paid" | "from-1d-to-1w-input-count" | "year-2018-realized-price-99-9p" | "market-price-to-year-2010-realized-price-ratio-1w-sma" | "up-to-15y-supply-to-circulating-supply-ratio" | "net-realized-profit-and-loss-to-market-cap-ratio" | "price-13d-sma-99-5p" | "plankton-realized-cap" | "market-price-to-year-2009-realized-price-ratio-99p" | "85p-price-paid" | "price-34d-sma" | "crab-55p-price-paid" | "up-to-15y-55p-price-paid" | "from-3y-to-5y-net-realized-profit-and-loss-to-market-cap-ratio" | "year-2016-realized-loss" | "market-price-to-year-2015-realized-price-ratio-1w-sma" | "year-2014-35p-price-paid" | "up-to-15y-95p-price-paid" | "liquid-input-volume" | "lth-net-realized-profit-and-loss" | "up-to-1m-85p-price-paid" | "year-2009-value-created" | "market-price-to-lth-realized-price-ratio-99-9p" | "up-to-7y-95p-price-paid" | "market-price-to-price-13d-sma-ratio-1y-sma-momentum-oscillator" | "year-2014-realized-price-0-1p" | "year-2014-realized-profit" | "from-1w-to-1m-net-realized-profit-and-loss" | "market-price-to-from-5y-to-7y-realized-price-ratio-1y-sma-momentum-oscillator" | "from-2y-to-3y-realized-price-99-9p" | "shrimp-75p-price-paid" | "market-price-to-price-4y-sma-ratio-1p" | "p2pkh-supply-in-loss-to-circulating-supply-ratio" | "market-price-to-from-10y-to-15y-realized-price-ratio-99p" | "coindays-destroyed" | "adjusted-value-created" | "year-2010-negative-unrealized-loss" | "market-price-to-megalodon-realized-price-ratio-1m-sma" | "from-3m-to-6m-negative-realized-loss" | "year-2022-realized-cap" | "from-10y-realized-price-0-5p" | "lth-realized-cap" | "difficulty-adjustment" | "year-2014-05p-price-paid" | "year-2023-net-unrealized-profit-and-loss-to-market-cap-ratio" | "up-to-2y-realized-price-99p" | "up-to-4m-value-destroyed" | "p2wsh-input-volume" | "up-to-1m-65p-price-paid" | "market-price-to-price-55d-sma-ratio-1m-sma" | "market-price-to-up-to-4m-realized-price-ratio-99-9p" | "from-1m-to-3m-negative-realized-loss" | "up-to-3y-realized-profit" | "p2sh-realized-cap-1m-net-change" | "yearly-inflation-rate" | "megalodon-value-created" | "from-2y-realized-cap" | "year-2016-adjusted-value-destroyed" | "year-2009-supply-in-profit-to-own-supply-ratio" | "from-3m-to-6m-realized-price-99-5p" | "market-price-to-active-price-ratio" | "up-to-2m-supply" | "market-price-to-up-to-2m-realized-price-ratio" | "market-price-to-year-2024-realized-price-ratio-1w-sma" | "market-price-to-from-5y-to-7y-realized-price-ratio-1y-sma" | "market-price-to-price-2y-sma-ratio-99-5p" | "highly-liquid-realized-cap" | "p2pkh-90p-price-paid" | "up-to-10y-adjusted-value-destroyed" | "up-to-10y-realized-price" | "from-5y-to-7y-supply-in-loss" | "year-2014-negative-unrealized-loss" | "year-2018-cumulative-net-realized-profit-and-loss-1m-net-change" | "liquid-supply-in-profit-to-own-supply-ratio" | "market-price-to-lth-realized-price-ratio" | "cointime-price-99p" | "market-price-to-up-to-4m-realized-price-ratio-1y-sma" | "up-to-10y-sell-side-risk-ratio" | "year-2010-20p-price-paid" | "price-4y-sma-1p" | "up-to-2y-realized-loss" | "up-to-7y-negative-realized-loss" | "year-2010-adjusted-value-created" | "p2pkh-negative-realized-loss" | "market-price-to-p2wpkh-realized-price-ratio-99p" | "from-2y-cumulative-realized-profit" | "market-price-to-up-to-1w-realized-price-ratio" | "up-to-1y-realized-price-0-5p" | "up-to-10y-realized-price-1p" | "up-to-2y-net-unrealized-profit-and-loss" | "illiquid-realized-value" | "p2pk-supply-in-profit" | "up-to-10y-median-price-paid" | "utxo-count" | "market-price-to-price-1w-sma-ratio" | "year-2012-adjusted-spent-output-profit-ratio" | "from-3y-to-5y-10p-price-paid" | "year-2019-supply-in-profit-to-circulating-supply-ratio" | "year-2016-realized-price-99p" | "year-2019-75p-price-paid" | "up-to-6m-realized-cap" | "block-interval-1d-min" | "up-to-1d-25p-price-paid" | "market-price-to-price-200w-sma-ratio-0-5p" | "market-price-to-from-3y-to-5y-realized-price-ratio-99-9p" | "market-price-to-year-2011-realized-price-ratio-1y-sma" | "up-to-7y-15p-price-paid" | "market-price-to-sth-realized-price-ratio-1p" | "liquid-supply-to-circulating-supply-ratio" | "price-1y-sma-1p" | "up-to-1w-40p-price-paid" | "humpback-realized-price-1p" | "year-2009-supply-in-loss" | "year-2011-supply-in-profit-to-circulating-supply-ratio" | "year-2022-70p-price-paid" | "up-to-4m-spent-output-profit-ratio" | "up-to-6m-30p-price-paid" | "year-2010-unrealized-profit" | "lth-input-volume" | "from-1d-to-1w-supply-in-loss-to-own-supply-ratio" | "market-price-to-p2pk-realized-price-ratio-1p" | "year-2021-05p-price-paid" | "megalodon-adjusted-spent-output-profit-ratio" | "from-1w-to-1m-supply-in-profit" | "from-1w-to-1m-cumulative-net-realized-profit-and-loss" | "from-5y-to-7y-median-price-paid" | "market-price-to-up-to-6m-realized-price-ratio-1w-sma" | "megalodon-unrealized-profit" | "up-to-1y-spent-output-profit-ratio" | "year-2023-realized-profit" | "from-4y-input-count" | "from-1y-55p-price-paid" | "whale-70p-price-paid" | "sth-65p-price-paid" | "humpback-supply-in-profit" | "year-2011-cumulative-net-realized-profit-and-loss-1m-net-change" | "market-price-to-up-to-6m-realized-price-ratio-0-5p" | "year-2012-median-price-paid" | "year-2017-value-created" | "year-2024-net-unrealized-profit-and-loss-to-market-cap-ratio" | "20p-price-paid" | "year-2019-value-created" | "year-2021-realized-loss" | "90p-price-paid" | "from-1m-to-3m-unrealized-loss" | "from-10y-cumulative-realized-loss" | "illiquid-15p-price-paid" | "last-subsidy-in-dollars" | "market-price-to-year-2015-realized-price-ratio-99-9p" | "fish-75p-price-paid" | "market-price-to-p2pkh-realized-price-ratio" | "p2wsh-80p-price-paid" | "megalodon-realized-cap-1m-net-change" | "market-price-to-year-2022-realized-price-ratio-0-5p" | "plankton-realized-cap-1m-net-change" | "year-2009-40p-price-paid" | "whale-adjusted-value-created" | "year-2023-median-price-paid" | "from-4y-85p-price-paid" | "year-2013-85p-price-paid" | "up-to-5y-sell-side-risk-ratio" | "sth-cumulative-realized-loss" | "up-to-1d-realized-profit" | "year-2014-realized-price-99-5p" | "transaction-count-1w-sma" | "market-price-to-up-to-3y-realized-price-ratio-1y-sma" | "last-fees-in-dollars" | "year-2022-40p-price-paid" | "from-2y-to-3y-sell-side-risk-ratio" | "from-1d-to-1w-75p-price-paid" | "year-2011-adjusted-spent-output-profit-ratio" | "from-5y-to-7y-realized-price-99p" | "lth-spent-output-profit-ratio" | "up-to-2m-unrealized-loss" | "p2wsh-sell-side-risk-ratio" | "from-1y-85p-price-paid" | "lth-65p-price-paid" | "liquid-10p-price-paid" | "crab-unrealized-profit" | "up-to-2m-10p-price-paid" | "up-to-5m-15p-price-paid" | "up-to-6m-unrealized-profit" | "from-3y-to-5y-net-unrealized-profit-and-loss" | "up-to-2y-net-realized-profit-and-loss" | "p2sh-80p-price-paid" | "year-2009-supply-to-circulating-supply-ratio" | "year-2021-negative-unrealized-loss" | "up-to-3m-realized-price-99p" | "up-to-5m-70p-price-paid" | "up-to-5y-supply-in-profit" | "year-2016-value-created" | "up-to-1w-80p-price-paid" | "price-8d-sma" | "year-2021-45p-price-paid" | "year-2014-realized-value" | "year-2021-60p-price-paid" | "market-price-to-realized-price-ratio-99p" | "market-price-to-from-2y-to-3y-realized-price-ratio-1p" | "transaction-volume-in-dollars-1m-sma" | "year-2021-realized-price-0-1p";